-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoviedata.json
1665 lines (1665 loc) · 69.2 KB
/
moviedata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"year": 2013,
"title": "Rush",
"actors": ["Daniel Bruhl", "Chris Hemsworth", "Olivia Wilde"],
"info": {
"directors": ["Ron Howard"],
"release_date": "2013-09-02T00:00:00Z",
"rating": 8.3,
"genres": ["Action", "Biography", "Drama", "Sport"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTQyMDE0MTY0OV5BMl5BanBnXkFtZTcwMjI2OTI0OQ@@._V1_SX400_.jpg",
"plot": "A re-creation of the merciless 1970s rivalry between Formula One rivals James Hunt and Niki Lauda.",
"rank": 2,
"running_time_secs": 7380
}
},
{
"year": 2013,
"title": "Insidious: Chapter 2",
"actors": ["Patrick Wilson", "Rose Byrne", "Barbara Hershey"],
"info": {
"directors": ["James Wan"],
"release_date": "2013-09-13T00:00:00Z",
"rating": 7.1,
"genres": ["Horror", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTg0OTA5ODIxNF5BMl5BanBnXkFtZTcwNTUzNDg4OQ@@._V1_SX400_.jpg",
"plot": "The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.",
"rank": 7,
"running_time_secs": 6360
}
},
{
"year": 2013,
"title": "World War Z",
"actors": ["Brad Pitt", "Mireille Enos", "Daniella Kertesz"],
"info": {
"directors": ["Marc Forster"],
"release_date": "2013-06-02T00:00:00Z",
"rating": 7.1,
"genres": ["Action", "Adventure", "Horror", "Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTg0NTgxMjIxOF5BMl5BanBnXkFtZTcwMDM0MDY1OQ@@._V1_SX400_.jpg",
"plot": "United Nations employee Gerry Lane traverses the world in a race against time to stop the Zombie pandemic that is toppling armies and governments, and threatening to destroy humanity itself.",
"rank": 8,
"running_time_secs": 6960
}
},
{
"year": 2014,
"title": "X-Men: Days of Future Past",
"actors": ["Jennifer Lawrence", "Hugh Jackman", "Michael Fassbender"],
"info": {
"directors": ["Bryan Singer"],
"release_date": "2014-05-21T00:00:00Z",
"genres": ["Action", "Adventure", "Fantasy", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTQ0NzIwNTA1MV5BMl5BanBnXkFtZTgwNjY2OTcwMDE@._V1_SX400_.jpg",
"plot": "The X-Men send Wolverine to the past to change a major historical event that could globally impact man and mutant kind.",
"rank": 9
}
},
{
"year": 2014,
"title": "Transformers: Age of Extinction",
"actors": ["Mark Wahlberg", "Nicola Peltz", "Jack Reynor"],
"info": {
"directors": ["Michael Bay"],
"release_date": "2014-06-25T00:00:00Z",
"genres": ["Action", "Adventure", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTQyMDA5Nzg0Nl5BMl5BanBnXkFtZTgwNzA4NDcxMDE@._V1_SX400_.jpg",
"plot": "A mechanic and his daughter make a discovery that brings down Autobots and Decepticons - and a paranoid government official - on them.",
"rank": 10
}
},
{
"year": 2013,
"title": "Now You See Me",
"actors": ["Jesse Eisenberg", "Common", "Mark Ruffalo"],
"info": {
"directors": ["Louis Leterrier"],
"release_date": "2013-05-21T00:00:00Z",
"rating": 7.3,
"genres": ["Crime", "Mystery", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTY0NDY3MDMxN15BMl5BanBnXkFtZTcwOTM5NzMzOQ@@._V1_SX400_.jpg",
"plot": "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.",
"rank": 11,
"running_time_secs": 6900
}
},
{
"year": 2013,
"title": "Gravity",
"actors": ["Sandra Bullock", "George Clooney", "Ed Harris"],
"info": {
"directors": ["Alfonso Cuaron"],
"release_date": "2013-08-28T00:00:00Z",
"rating": 8.2,
"genres": ["Drama", "Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BNjE5MzYwMzYxMF5BMl5BanBnXkFtZTcwOTk4MTk0OQ@@._V1_SX400_.jpg",
"plot": "A medical engineer and an astronaut work together to survive after an accident leaves them adrift in space.",
"rank": 12,
"running_time_secs": 5400
}
},
{
"year": 2013,
"title": "We're the Millers",
"actors": ["Jason Sudeikis", "Jennifer Aniston", "Emma Roberts"],
"info": {
"directors": ["Rawson Marshall Thurber"],
"release_date": "2013-08-03T00:00:00Z",
"rating": 7.2,
"genres": ["Comedy", "Crime"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjA5Njc0NDUxNV5BMl5BanBnXkFtZTcwMjYzNzU1OQ@@._V1_SX400_.jpg",
"plot": "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.",
"rank": 13,
"running_time_secs": 6600
}
},
{
"year": 2013,
"title": "Riddick",
"actors": ["Vin Diesel", "Karl Urban", "Katee Sackhoff"],
"info": {
"directors": ["David Twohy"],
"release_date": "2013-09-04T00:00:00Z",
"rating": 6.8,
"genres": ["Action", "Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk5NzYwMzQ4MV5BMl5BanBnXkFtZTcwMjE5MTI1OQ@@._V1_SX400_.jpg",
"plot": "Left for dead on a sun-scorched planet, Riddick finds himself up against an alien race of predators. Activating an emergency beacon alerts two ships: one carrying a new breed of mercenary, the other captained by a man from Riddick's past.",
"rank": 14,
"running_time_secs": 7140
}
},
{
"year": 2013,
"title": "The Family",
"actors": ["Robert De Niro", "Michelle Pfeiffer", "Dianna Agron"],
"info": {
"directors": ["Luc Besson"],
"release_date": "2013-09-10T00:00:00Z",
"rating": 6.5,
"genres": ["Action", "Comedy", "Crime"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjE2MzI0MzkyNV5BMl5BanBnXkFtZTcwMjQ2MDM2OQ@@._V1_SX400_.jpg",
"plot": "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.",
"rank": 15,
"running_time_secs": 6660
}
},
{
"year": 2013,
"title": "Star Trek Into Darkness",
"actors": ["Chris Pine", "Zachary Quinto", "Zoe Saldana"],
"info": {
"directors": ["J.J. Abrams"],
"release_date": "2013-05-02T00:00:00Z",
"rating": 7.9,
"genres": ["Action", "Adventure", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk2NzczOTgxNF5BMl5BanBnXkFtZTcwODQ5ODczOQ@@._V1_SX400_.jpg",
"plot": "After the crew of the Enterprise find an unstoppable force of terror from within their own organization, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction.",
"rank": 16,
"running_time_secs": 7920
}
},
{
"year": 2013,
"title": "After Earth",
"actors": ["Jaden Smith", "David Denman", "Will Smith"],
"info": {
"directors": ["M. Night Shyamalan"],
"release_date": "2013-05-01T00:00:00Z",
"rating": 4.9,
"genres": ["Action", "Adventure", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTY3MzQyMjkwMl5BMl5BanBnXkFtZTcwMDk2OTE0OQ@@._V1_SX400_.jpg",
"plot": "A crash landing leaves Kitai Raige and his father Cypher stranded on Earth, a millennium after events forced humanity's escape. With Cypher injured, Kitai must embark on a perilous journey to signal for help.",
"rank": 17,
"running_time_secs": 6000
}
},
{
"year": 2013,
"title": "The Great Gatsby",
"actors": ["Leonardo DiCaprio", "Carey Mulligan", "Joel Edgerton"],
"info": {
"directors": ["Baz Luhrmann"],
"release_date": "2013-05-01T00:00:00Z",
"rating": 7.3,
"genres": ["Drama", "Romance"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTkxNTk1ODcxNl5BMl5BanBnXkFtZTcwMDI1OTMzOQ@@._V1_SX400_.jpg",
"plot": "A Midwestern war veteran finds himself drawn to the past and lifestyle of his millionaire neighbor.",
"rank": 18,
"running_time_secs": 8580
}
},
{
"year": 2014,
"title": "Divergent",
"actors": ["Shailene Woodley", "Kate Winslet", "Zoe Kravitz"],
"info": {
"directors": ["Neil Burger"],
"release_date": "2014-03-20T00:00:00Z",
"genres": ["Action", "Adventure", "Romance", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjIyOTEyODQ4OV5BMl5BanBnXkFtZTgwMDIwNzEzMDE@._V1_SX400_.jpg",
"plot": "Beatrice Prior, a teenager with a special mind, finds her life threatened when an authoritarian leader seeks to exterminate her kind in her effort to seize control of their divided society.",
"rank": 20
}
},
{
"year": 2013,
"title": "We Are What We Are",
"actors": ["Bill Sage", "Ambyr Childers", "Julia Garner"],
"info": {
"directors": ["Jim Mickle"],
"release_date": "2013-01-18T00:00:00Z",
"rating": 6.2,
"genres": ["Drama", "Horror", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjI3NjI3NjAyN15BMl5BanBnXkFtZTgwODE3NzMxMDE@._V1_SX400_.jpg",
"plot": "The Parkers, a reclusive family who follow ancient customs, find their secret existence threatened as a torrential downpour moves into their area, forcing daughters Iris and Rose to assume responsibilities beyond those of a typical family.",
"rank": 21,
"running_time_secs": 6300
}
},
{
"year": 2013,
"title": "Iron Man 3",
"actors": ["Robert Downey Jr.", "Guy Pearce", "Gwyneth Paltrow"],
"info": {
"directors": ["Shane Black"],
"release_date": "2013-04-18T00:00:00Z",
"rating": 7.4,
"genres": ["Action", "Adventure", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjIzMzAzMjQyM15BMl5BanBnXkFtZTcwNzM2NjcyOQ@@._V1_SX400_.jpg",
"plot": "When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.",
"rank": 22,
"running_time_secs": 7800
}
},
{
"year": 2014,
"title": "The Amazing Spider-Man 2",
"actors": ["Andrew Garfield", "Emma Stone", "Jamie Foxx"],
"info": {
"directors": ["Marc Webb"],
"release_date": "2014-04-17T00:00:00Z",
"genres": ["Action", "Adventure", "Fantasy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjE0MDAwNTUzNF5BMl5BanBnXkFtZTcwNDQ4NDYxOQ@@._V1_SX400_.jpg",
"plot": "Spider-Man squares off against the Rhino and the powerful Electro while struggling to keep his promise to leave Gwen Stacey out of his dangerous life.",
"rank": 23
}
},
{
"year": 2013,
"title": "Curse of Chucky",
"actors": ["Chantal Quesnelle", "Fiona Dourif", "Danielle Bisutti"],
"info": {
"directors": ["Don Mancini"],
"release_date": "2013-08-02T00:00:00Z",
"rating": 5.7,
"genres": ["Horror", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjkxMjM0MDE3OF5BMl5BanBnXkFtZTcwMDQ3NzI4OQ@@._V1_SX400_.jpg",
"plot": "After her mother's mysterious death, Nica begins to suspect that the talking, red-haired doll her visiting niece has been playing with may be the key to recent bloodshed and chaos.",
"rank": 24,
"running_time_secs": 5820
}
},
{
"year": 2013,
"title": "The Conjuring",
"actors": ["Patrick Wilson", "Vera Farmiga", "Ron Livingston"],
"info": {
"directors": ["James Wan"],
"release_date": "2013-06-08T00:00:00Z",
"rating": 7.7,
"genres": ["Horror", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTM3NjA1NDMyMV5BMl5BanBnXkFtZTcwMDQzNDMzOQ@@._V1_SX400_.jpg",
"plot": "Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse.",
"rank": 25,
"running_time_secs": 6720
}
},
{
"year": 2013,
"title": "Oldboy",
"actors": ["Josh Brolin", "Elizabeth Olsen", "Samuel L. Jackson"],
"info": {
"directors": ["Spike Lee"],
"release_date": "2013-10-10T00:00:00Z",
"genres": ["Action", "Drama", "Mystery", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk5NTEwMzI5OV5BMl5BanBnXkFtZTgwMDQ4ODUwMDE@._V1_SX400_.jpg",
"plot": "Obsessed with vengeance, a man sets out to find out why he was kidnapped and locked up into solitary confinement for 20 years without reason.",
"rank": 26
}
},
{
"year": 2013,
"title": "Escape Plan",
"actors": ["Sylvester Stallone", "Arnold Schwarzenegger", "50 Cent"],
"info": {
"directors": ["Mikael Hafstrom"],
"release_date": "2013-07-18T00:00:00Z",
"rating": 7.6,
"genres": ["Action", "Mystery", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk3OTcxMTEyNl5BMl5BanBnXkFtZTcwMDQ4MjQ2OQ@@._V1_SX400_.jpg",
"plot": "When a structural-security authority finds himself incarcerated in a prison he designed, he has to put his skills to escape and find out who framed him.",
"rank": 27,
"running_time_secs": 6960
}
},
{
"year": 2013,
"title": "Elysium",
"actors": ["Matt Damon", "Jodie Foster", "Sharlto Copley"],
"info": {
"directors": ["Neill Blomkamp"],
"release_date": "2013-08-07T00:00:00Z",
"rating": 7,
"genres": ["Action", "Drama", "Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BNDc2NjU0MTcwNV5BMl5BanBnXkFtZTcwMjg4MDg2OQ@@._V1_SX400_.jpg",
"plot": "Set in the year 2154, where the very wealthy live on a man-made space station while the rest of the population resides on a ruined Earth, a man takes on a mission that could bring equality to the polarized worlds.",
"rank": 28,
"running_time_secs": 6540
}
},
{
"year": 2013,
"title": "Cloudy with a Chance of Meatballs 2",
"actors": ["Bill Hader", "Anna Faris", "Will Forte"],
"info": {
"directors": ["Cody Cameron", "Kris Pearn"],
"release_date": "2013-09-26T00:00:00Z",
"rating": 6.7,
"genres": ["Animation", "Comedy", "Family", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTYzNDM0MDI1NF5BMl5BanBnXkFtZTcwNzQ5NzYxOQ@@._V1_SX400_.jpg",
"plot": "Flint Lockwood now works at The Live Corp Company for his idol Chester V. But he's forced to leave his post when he learns that his most infamous machine is still operational and is churning out menacing food-animal hybrids.",
"rank": 29,
"running_time_secs": 5700
}
},
{
"year": 2014,
"title": "RoboCop",
"actors": ["Joel Kinnaman", "Douglas Urbanski", "Abbie Cornish"],
"info": {
"directors": ["Jose Padilha"],
"release_date": "2014-01-30T00:00:00Z",
"genres": ["Action", "Crime", "Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjMwNzQ2MDkyOV5BMl5BanBnXkFtZTgwMjE5MjMyMDE@._V1_SX400_.jpg",
"plot": "In 2028 Detroit, when Alex Murphy (Joel Kinnaman) - a loving husband, father and good cop - is critically injured in the line of duty, the multinational conglomerate OmniCorp sees their chance for a part-man, part-robot police officer.",
"rank": 30
}
},
{
"year": 2013,
"title": "Carrie",
"actors": ["Chloe Grace Moretz", "Julianne Moore", "Judy Greer"],
"info": {
"directors": ["Kimberly Peirce"],
"release_date": "2013-10-07T00:00:00Z",
"genres": ["Drama", "Horror"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTc1MDIyOTkxN15BMl5BanBnXkFtZTgwMTU1NzEzMDE@._V1_SX400_.jpg",
"plot": "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.",
"rank": 31
}
},
{
"year": 2013,
"title": "The Mortal Instruments: City of Bones",
"actors": ["Lily Collins", "Jamie Campbell Bower", "Robert Sheehan"],
"info": {
"directors": ["Harald Zwart"],
"release_date": "2013-08-12T00:00:00Z",
"rating": 6.6,
"genres": [
"Action",
"Adventure",
"Drama",
"Fantasy",
"Mystery",
"Romance"
],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTc5NzAyOTQyNF5BMl5BanBnXkFtZTcwNzQ1MDc4OQ@@._V1_SX400_.jpg",
"plot": "When her mother disappears, Clary Fray learns that she descends from a line of warriors who protect our world from demons. She joins forces with others like her and heads into a dangerous alternate New York called Downworld.",
"rank": 32,
"running_time_secs": 7800
}
},
{
"year": 2014,
"title": "Captain America: The Winter Soldier",
"actors": ["Chris Evans", "Frank Grillo", "Sebastian Stan"],
"info": {
"directors": ["Anthony Russo", "Joe Russo"],
"release_date": "2014-04-02T00:00:00Z",
"genres": ["Action", "Adventure", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjAzMTg3MDcxM15BMl5BanBnXkFtZTcwNDQzNzI4OQ@@._V1_SX400_.jpg",
"plot": "Steve Rogers struggles to embrace his role in the modern world and teams up with Natasha Romanoff, aka Black Widow, to battle a powerful yet shadowy enemy in present-day Washington, D.C.",
"rank": 33
}
},
{
"year": 2014,
"title": "Need for Speed",
"actors": ["Aaron Paul", "Chillie Mo", "Dominic Cooper"],
"info": {
"directors": ["Scott Waugh"],
"release_date": "2014-03-13T00:00:00Z",
"genres": ["Action"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjU2MTM3OTA3N15BMl5BanBnXkFtZTgwMjQ5MDYyMDE@._V1_SX400_.jpg",
"plot": "Fresh from prison, a street racer who was framed by a wealthy business associate joins a cross country race with revenge in mind. His ex-partner, learning of the plan, places a massive bounty on his head as the race begins.",
"rank": 34
}
},
{
"year": 2013,
"title": "Runner Runner",
"actors": ["Ben Affleck", "Justin Timberlake", "Gemma Arterton"],
"info": {
"directors": ["Brad Furman"],
"release_date": "2013-09-25T00:00:00Z",
"rating": 5.4,
"genres": ["Crime", "Drama", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTU5OTA0MjI4Ml5BMl5BanBnXkFtZTgwMTgxOTQwMDE@._V1_SX400_.jpg",
"plot": "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.",
"rank": 35,
"running_time_secs": 5460
}
},
{
"year": 2013,
"title": "I Spit on Your Grave 2",
"actors": ["Jemma Dallender", "Yavor Baharov", "Joe Absolom"],
"info": {
"directors": ["Steven R. Monroe"],
"release_date": "2013-08-25T00:00:00Z",
"rating": 5.5,
"genres": ["Crime", "Horror", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTc1Nzk3NjM0M15BMl5BanBnXkFtZTgwMjM5MzYyMDE@._V1_SX400_.jpg",
"rank": 36,
"running_time_secs": 6360
}
},
{
"year": 2013,
"title": "Battle of the Year",
"actors": ["Josh Holloway", "Laz Alonso", "Josh Peck"],
"info": {
"directors": ["Benson Lee"],
"release_date": "2013-09-19T00:00:00Z",
"rating": 3.5,
"genres": ["Music"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BOTY2OTcyNzM3NF5BMl5BanBnXkFtZTgwNzgxMjkxMDE@._V1_SX400_.jpg",
"plot": "Battle of the Year attracts all the best teams from around the world, but the Americans haven't won in fifteen years. Dante enlists Blake to assemble a team of the best dancers and bring the Trophy back to America where it started.",
"rank": 37,
"running_time_secs": 6600
}
},
{
"year": 2013,
"title": "Behind the Candelabra",
"actors": ["Matt Damon", "Scott Bakula", "Eric Zuckerman"],
"info": {
"directors": ["Steven Soderbergh"],
"release_date": "2013-05-21T00:00:00Z",
"rating": 7,
"genres": ["Biography", "Drama", "Romance"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTg0OTY2OTM0OF5BMl5BanBnXkFtZTcwMTk4OTQ1OQ@@._V1_SX400_.jpg",
"plot": "Based on the autobiographical novel, the tempestuous 6-year relationship between Liberace and his (much younger) lover, Scott Thorson, is recounted.",
"rank": 38,
"running_time_secs": 7080
}
},
{
"year": 2013,
"title": "No se Aceptan Devoluciones",
"actors": ["Eugenio Derbez", "Karla Souza", "Jessica Lindsey"],
"info": {
"directors": ["Eugenio Derbez"],
"release_date": "2013-08-30T00:00:00Z",
"rating": 6.9,
"genres": ["Comedy", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTUyNjI3ODI0N15BMl5BanBnXkFtZTcwMTQ1NTY5OQ@@._V1_SX400_.jpg",
"plot": "A man who has made a new life for himself and the daughter left on his doorstep 6 years ago finds his family threatened when the birth mother resurfaces.",
"rank": 39,
"running_time_secs": 6900
}
},
{
"year": 2013,
"title": "The Bling Ring",
"actors": ["Katie Chang", "Israel Broussard", "Emma Watson"],
"info": {
"directors": ["Sofia Coppola"],
"release_date": "2013-05-16T00:00:00Z",
"rating": 5.8,
"genres": ["Crime", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTQzMTgwMzQxN15BMl5BanBnXkFtZTcwOTcwNTY0OQ@@._V1_SX400_.jpg",
"plot": "Inspired by actual events, a group of fame-obsessed teenagers use the internet to track celebrities' whereabouts in order to rob their homes.",
"rank": 41,
"running_time_secs": 5400
}
},
{
"year": 2013,
"title": "Furious 6",
"actors": ["Vin Diesel", "Paul Walker", "Dwayne Johnson"],
"info": {
"directors": ["Justin Lin"],
"release_date": "2013-05-07T00:00:00Z",
"rating": 7.2,
"genres": ["Action", "Crime", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTM3NTg2NDQzOF5BMl5BanBnXkFtZTcwNjc2NzQzOQ@@._V1_SX400_.jpg",
"plot": "Hobbs has Dom and Brian reassemble their crew in order to take down a mastermind who commands an organization of mercenary drivers across 12 countries. Payment? Full pardons for them all.",
"rank": 42,
"running_time_secs": 7800
}
},
{
"year": 2013,
"title": "Machete Kills",
"actors": ["Danny Trejo", "Alexa Vega", "Mel Gibson"],
"info": {
"directors": ["Robert Rodriguez"],
"release_date": "2013-09-19T00:00:00Z",
"rating": 6.3,
"genres": ["Action", "Crime", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjA2MzUxMTM3M15BMl5BanBnXkFtZTgwMzA2NzkxMDE@._V1_SX400_.jpg",
"plot": "The U.S. government recruits Machete to battle his way through Mexico in order to take down an arms dealer who looks to launch a weapon into space.",
"rank": 43,
"running_time_secs": 6420
}
},
{
"year": 2013,
"title": "12 Years a Slave",
"actors": ["Chiwetel Ejiofor", "Michael K. Williams", "Michael Fassbender"],
"info": {
"directors": ["Steve McQueen"],
"release_date": "2013-08-30T00:00:00Z",
"rating": 7.7,
"genres": ["Biography", "Drama", "History"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjExMTEzODkyN15BMl5BanBnXkFtZTcwNTU4NTc4OQ@@._V1_SX400_.jpg",
"plot": "In the antebellum United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery.",
"rank": 44,
"running_time_secs": 7980
}
},
{
"year": 2013,
"title": "The World's End",
"actors": ["Simon Pegg", "Nick Frost", "Martin Freeman"],
"info": {
"directors": ["Edgar Wright"],
"release_date": "2013-07-18T00:00:00Z",
"rating": 7.5,
"genres": ["Action", "Comedy", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BNzA1MTk1MzY0OV5BMl5BanBnXkFtZTgwNjkzNTUwMDE@._V1_SX400_.jpg",
"plot": "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.",
"rank": 45,
"running_time_secs": 6540
}
},
{
"year": 2012,
"title": "Pitch Perfect",
"actors": ["Anna Kendrick", "Brittany Snow", "Rebel Wilson"],
"info": {
"directors": ["Jason Moore"],
"release_date": "2012-09-28T00:00:00Z",
"rating": 7.1,
"genres": ["Comedy", "Music", "Romance"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTcyMTMzNzE5N15BMl5BanBnXkFtZTcwNzg5NjM5Nw@@._V1_SX400_.jpg",
"plot": "Beca, a freshman at Barden University, is cajoled into joining The Bellas, her school's all-girls singing group. Injecting some much needed energy into their repertoire, The Bellas take on their male rivals in a campus competition.",
"rank": 46,
"running_time_secs": 6720
}
},
{
"year": 2012,
"title": "Wreck-It Ralph",
"actors": ["John C. Reilly", "Jack McBrayer", "Jane Lynch"],
"info": {
"directors": ["Rich Moore"],
"release_date": "2012-11-01T00:00:00Z",
"rating": 7.8,
"genres": ["Animation", "Adventure", "Comedy", "Family"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BNzMxNTExOTkyMF5BMl5BanBnXkFtZTcwMzEyNDc0OA@@._V1_SX400_.jpg",
"plot": "A video game villain wants to be a hero and sets out to fulfill his dream, but his quest brings havoc to the whole arcade where he lives.",
"rank": 73,
"running_time_secs": 6480
}
},
{
"year": 2013,
"title": "The Hobbit: The Desolation of Smaug",
"actors": ["Martin Freeman", "Ian McKellen", "Richard Armitage"],
"info": {
"directors": ["Peter Jackson"],
"release_date": "2013-12-11T00:00:00Z",
"genres": ["Adventure", "Drama", "Fantasy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjAxMjMzMzAxOV5BMl5BanBnXkFtZTcwNTU3NzU2OQ@@._V1_SX400_.jpg",
"plot": "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.",
"rank": 74
}
},
{
"year": 2013,
"title": "Frozen",
"actors": ["Kristen Bell", "Josh Gad", "Idina Menzel"],
"info": {
"directors": ["Chris Buck", "Jennifer Lee"],
"release_date": "2013-11-20T00:00:00Z",
"genres": [
"Animation",
"Action",
"Adventure",
"Comedy",
"Family",
"Fantasy",
"Musical",
"Mystery",
"Romance",
"Thriller"
],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTQ1MjQwMTE5OF5BMl5BanBnXkFtZTgwNjk3MTcyMDE@._V1_SX400_.jpg",
"plot": "Fearless optimist Anna teams up with Kristoff in an epic journey, encountering Everest-like conditions, and a hilarious snowman named Olaf in a race to find Anna's sister Elsa, whose icy powers have trapped the kingdom in eternal winter.",
"rank": 75
}
},
{
"year": 2012,
"title": "Spring Breakers",
"actors": ["Vanessa Hudgens", "Selena Gomez", "Ashley Benson"],
"info": {
"directors": ["Harmony Korine"],
"release_date": "2012-09-05T00:00:00Z",
"rating": 5.5,
"genres": ["Crime", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BNDE3MDQzMDA5OF5BMl5BanBnXkFtZTcwMTUxNTgxOQ@@._V1_SX400_.jpg",
"plot": "Four college girls who land in jail after robbing a restaurant in order to fund their spring break vacation find themselves bailed out by a drug and arms dealer who wants them to do some dirty work.",
"rank": 76,
"running_time_secs": 5640
}
},
{
"year": 2014,
"title": "Fifty Shades of Grey",
"actors": ["Charlie Hunnam", "Dakota Johnson"],
"info": {
"directors": ["Sam Taylor-Johnson"],
"release_date": "2014-08-01T00:00:00Z",
"genres": ["Drama", "Romance"],
"plot": "A literature student Anastasia Steele meets a handsome, yet tormented, billionaire named Christian Grey.",
"rank": 77
}
},
{
"year": 2012,
"title": "Silver Linings Playbook",
"actors": ["Bradley Cooper", "Jennifer Lawrence", "Robert De Niro"],
"info": {
"directors": ["David O. Russell"],
"release_date": "2012-09-08T00:00:00Z",
"rating": 7.9,
"genres": ["Comedy", "Drama", "Romance"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTM2MTI5NzA3MF5BMl5BanBnXkFtZTcwODExNTc0OA@@._V1_SX400_.jpg",
"plot": "After a stint in a mental institution, former teacher Pat Solitano moves back in with his parents and tries to reconcile with his ex-wife. Things get more challenging when Pat meets Tiffany, a mysterious girl with problems of her own.",
"rank": 78,
"running_time_secs": 7320
}
},
{
"year": 2013,
"title": "R.I.P.D.",
"actors": ["Ryan Reynolds", "Jeff Bridges", "Mary-Louise Parker"],
"info": {
"directors": ["Robert Schwentke"],
"release_date": "2013-07-17T00:00:00Z",
"rating": 5.4,
"genres": ["Action", "Comedy", "Crime", "Fantasy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTM5OTYxNzE5N15BMl5BanBnXkFtZTcwMDU1MTQ4OQ@@._V1_SX400_.jpg",
"plot": "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.",
"rank": 79,
"running_time_secs": 5760
}
},
{
"year": 1994,
"title": "The Shawshank Redemption",
"actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton"],
"info": {
"directors": ["Frank Darabont"],
"release_date": "1994-09-10T00:00:00Z",
"rating": 9.3,
"genres": ["Crime", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BODU4MjU4NjIwNl5BMl5BanBnXkFtZTgwMDU2MjEyMDE@._V1_SX400_.jpg",
"plot": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.",
"rank": 80,
"running_time_secs": 8520
}
},
{
"year": 2013,
"title": "Pacific Rim",
"actors": ["Idris Elba", "Charlie Hunnam", "Rinko Kikuchi"],
"info": {
"directors": ["Guillermo del Toro"],
"release_date": "2013-07-02T00:00:00Z",
"rating": 7.5,
"genres": ["Action", "Adventure", "Fantasy", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTY3MTI5NjQ4Nl5BMl5BanBnXkFtZTcwOTU1OTU0OQ@@._V1_SX400_.jpg",
"plot": "As a war between humankind and monstrous sea creatures wages on, a former pilot and a trainee are paired up to drive a seemingly obsolete special weapon in a desperate effort to save the world from the apocalypse.",
"rank": 81,
"running_time_secs": 7860
}
},
{
"year": 2012,
"title": "The Hunger Games",
"actors": ["Jennifer Lawrence", "Josh Hutcherson", "Liam Hemsworth"],
"info": {
"directors": ["Gary Ross"],
"release_date": "2012-03-12T00:00:00Z",
"rating": 7.2,
"genres": ["Adventure", "Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjA4NDg3NzYxMF5BMl5BanBnXkFtZTcwNTgyNzkyNw@@._V1_SX400_.jpg",
"plot": "Katniss Everdeen voluntarily takes her younger sister's place in the Hunger Games, a televised fight to the death in which two teenagers from each of the twelve Districts of Panem are chosen at random to compete.",
"rank": 82,
"running_time_secs": 8520
}
},
{
"year": 2013,
"title": "The Last Days on Mars",
"actors": ["Liev Schreiber", "Romola Garai", "Elias Koteas"],
"info": {
"directors": ["Ruairi Robinson"],
"release_date": "2013-05-20T00:00:00Z",
"rating": 7.4,
"genres": ["Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk4ODgxMDU0M15BMl5BanBnXkFtZTgwOTg0NzcyMDE@._V1_SX400_.jpg",
"plot": "A group of astronaut explorers succumb one by one to a mysterious and terrifying force while collecting specimens on Mars.",
"rank": 83,
"running_time_secs": 5880
}
},
{
"year": 2013,
"title": "Baggage Claim",
"actors": ["Paula Patton", "Taye Diggs", "Jill Scott"],
"info": {
"directors": ["David E. Talbert"],
"release_date": "2013-09-27T00:00:00Z",
"rating": 4.1,
"genres": ["Comedy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjIyNDU4NTY3M15BMl5BanBnXkFtZTcwOTA3MDA1OQ@@._V1_SX400_.jpg",
"plot": "Pledging to keep herself from being the oldest and the only woman in her entire family never to wed, Montana embarks on a thirty-day, thirty-thousand-mile expedition to charm a potential suitor into becoming her fiance.",
"rank": 84,
"running_time_secs": 5760
}
},
{
"year": 2013,
"title": "Percy Jackson: Sea of Monsters",
"actors": ["Logan Lerman", "Alexandra Daddario", "Brandon T. Jackson"],
"info": {
"directors": ["Thor Freudenthal"],
"release_date": "2013-08-07T00:00:00Z",
"rating": 6.5,
"genres": ["Adventure", "Family", "Fantasy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTUwODUyODI0Nl5BMl5BanBnXkFtZTcwNzAxODY2OQ@@._V1_SX400_.jpg",
"plot": "In order to restore their dying safe haven, the son of Poseidon and his friends embark on a quest to the Sea of Monsters to find the mythical Golden Fleece while trying to stop an ancient evil from rising.",
"rank": 85,
"running_time_secs": 6360
}
},
{
"year": 2012,
"title": "Byzantium",
"actors": ["Saoirse Ronan", "Gemma Arterton", "Sam Riley"],
"info": {
"directors": ["Neil Jordan"],
"release_date": "2012-09-09T00:00:00Z",
"rating": 6.5,
"genres": ["Drama", "Fantasy", "Horror", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk2Nzc0NDQwMV5BMl5BanBnXkFtZTcwNjI2MjY3OQ@@._V1_SX400_.jpg",
"plot": "Residents of a coastal town learn, with deathly consequences, the secret shared by the two mysterious women who have sought shelter at a local resort.",
"rank": 86,
"running_time_secs": 7080
}
},
{
"year": 2011,
"title": "X-Men: First Class",
"actors": ["James McAvoy", "Michael Fassbender", "Jennifer Lawrence"],
"info": {
"directors": ["Matthew Vaughn"],
"release_date": "2011-05-25T00:00:00Z",
"rating": 7.8,
"genres": ["Action", "Adventure", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTg5OTMxNzk4Nl5BMl5BanBnXkFtZTcwOTk1MjAwNQ@@._V1_SX400_.jpg",
"plot": "In 1962, the United States government enlists the help of Mutants with superhuman abilities to stop a malicious dictator who is determined to start world war III.",
"rank": 87,
"running_time_secs": 7920
}
},
{
"year": 1993,
"title": "Hocus Pocus",
"actors": ["Bette Midler", "Sarah Jessica Parker", "Kathy Najimy"],
"info": {
"directors": ["Kenny Ortega"],
"release_date": "1993-07-16T00:00:00Z",
"rating": 6.2,
"genres": ["Comedy", "Family", "Fantasy", "Horror"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTI3MDI2NDc3Ml5BMl5BanBnXkFtZTcwNDQ2MzQyMQ@@._V1_SX400_.jpg",
"plot": "After 300 years, three sister witches are resurrected in Salem Massachusetts on Halloween night, and it us up to two teenagers, a young girl, and an immortal cat to put an end to the witches reign of terror once and for all.",
"rank": 88,
"running_time_secs": 5760
}
},
{
"year": 2013,
"title": "The East",
"actors": ["Brit Marling", "Alexander Skarsgard", "Ellen Page"],
"info": {
"directors": ["Zal Batmanglij"],
"release_date": "2013-01-20T00:00:00Z",
"rating": 6.9,
"genres": ["Crime", "Drama", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjEyNjQzMzg5Nl5BMl5BanBnXkFtZTcwMjExNzU1OQ@@._V1_SX400_.jpg",
"plot": "An operative for an elite private intelligence firm finds her priorities changing dramatically after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.",
"rank": 89,
"running_time_secs": 6960
}
},
{
"year": 2009,
"title": "Mr. Nobody",
"actors": ["Jared Leto", "Sarah Polley", "Diane Kruger"],
"info": {
"directors": ["Jaco Van Dormael"],
"release_date": "2009-09-12T00:00:00Z",
"rating": 7.8,
"genres": ["Drama", "Fantasy", "Romance", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTg4ODkzMDQ3Nl5BMl5BanBnXkFtZTgwNTEwMTkxMDE@._V1_SX400_.jpg",
"plot": "A boy stands on a station platform as a train is about to leave. Should he go with his mother or stay with his father? An infinity of possibilities rise from this decision. As long as he doesn't choose, anything is possible.",
"rank": 108,
"running_time_secs": 8460
}
},
{
"year": 2013,
"title": "The Fifth Estate",
"actors": ["Benedict Cumberbatch", "Daniel Bruhl", "Carice van Houten"],
"info": {
"directors": ["Bill Condon"],
"release_date": "2013-09-05T00:00:00Z",
"rating": 6.4,
"genres": ["Biography", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjY1MTY5NTg3M15BMl5BanBnXkFtZTgwMDQyMjgwMDE@._V1_SX400_.jpg",
"plot": "A dramatic thriller based on real events, THE FIFTH ESTATE reveals the quest to expose the deceptions and corruptions of power that turned an Internet upstart into the 21st century's most fiercely debated organization.",
"rank": 110,
"running_time_secs": 7680
}
},
{
"year": 1997,
"title": "Titanic",
"actors": ["Leonardo DiCaprio", "Kate Winslet", "Billy Zane"],
"info": {
"directors": ["James Cameron"],
"release_date": "1997-11-01T00:00:00Z",
"rating": 7.6,
"genres": ["Drama", "Romance"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjExNzM0NDM0N15BMl5BanBnXkFtZTcwMzkxOTUwNw@@._V1_SX400_.jpg",
"plot": "A seventeen-year-old aristocrat, expecting to be married to a rich claimant by her mother, falls in love with a kind but poor artist aboard the luxurious, ill-fated R.M.S. Titanic.",
"rank": 111,
"running_time_secs": 11640
}
},
{
"year": 2004,
"title": "The Incredibles",
"actors": ["Craig T. Nelson", "Samuel L. Jackson", "Holly Hunter"],
"info": {
"directors": ["Brad Bird"],
"release_date": "2004-10-27T00:00:00Z",
"rating": 8,
"genres": ["Animation", "Action", "Adventure", "Family"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTY5OTU0OTc2NV5BMl5BanBnXkFtZTcwMzU4MDcyMQ@@._V1_SX400_.jpg",
"plot": "A family of undercover superheroes, while trying to live the quiet suburban life, are forced into action to save the world.",
"rank": 112,
"running_time_secs": 6900
}
},
{
"year": 2014,
"title": "Into the Woods",
"actors": ["Anna Kendrick", "Johnny Depp", "Chris Pine"],
"info": {
"directors": ["Rob Marshall"],
"release_date": "2014-12-25T00:00:00Z",
"genres": ["Comedy", "Fantasy", "Musical"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTY4OTE5NDYzOV5BMl5BanBnXkFtZTgwODcwMzMzMDE@._V1_SX400_.jpg",
"plot": "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.",
"rank": 113
}
},
{
"year": 1994,
"title": "Pulp Fiction",
"actors": ["John Travolta", "Uma Thurman", "Samuel L. Jackson"],
"info": {
"directors": ["Quentin Tarantino"],
"release_date": "1994-05-12T00:00:00Z",
"rating": 9,
"genres": ["Crime", "Drama", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjE0ODk2NjczOV5BMl5BanBnXkFtZTYwNDQ0NDg4._V1_SX400_.jpg",
"plot": "The lives of two mob hit men, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption.",
"rank": 114,
"running_time_secs": 9240
}
},
{
"year": 2013,
"title": "The Call",
"actors": ["Halle Berry", "Evie Thompson", "Abigail Breslin"],
"info": {
"directors": ["Brad Anderson"],
"release_date": "2013-03-14T00:00:00Z",
"rating": 6.6,
"genres": ["Crime", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjExNDkzNjAwOV5BMl5BanBnXkFtZTcwMDMzMzQwOQ@@._V1_SX400_.jpg",
"plot": "When a veteran 911 operator takes a life-altering call from a teenage girl who has just been abducted, she realizes that she must confront a killer from her past in order to save the girl's life.",
"rank": 115,
"running_time_secs": 5640
}
},
{
"year": 2013,
"title": "Side Effects",
"actors": ["Rooney Mara", "Channing Tatum", "Jude Law"],
"info": {
"directors": ["Steven Soderbergh"],
"release_date": "2013-02-08T00:00:00Z",
"rating": 7.1,
"genres": ["Crime", "Drama", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTc2MzY0NDAwOF5BMl5BanBnXkFtZTcwMTE1Mzc4OA@@._V1_SX400_.jpg",
"plot": "A young woman's world unravels when a drug prescribed by her psychiatrist has unexpected side effects.",
"rank": 116,
"running_time_secs": 6360
}
},
{
"year": 2012,
"title": "The Iceman",
"actors": ["Michael Shannon", "Chris Evans", "James Franco"],
"info": {
"directors": ["Ariel Vromen"],
"release_date": "2012-08-30T00:00:00Z",
"rating": 6.9,
"genres": ["Biography", "Crime", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTc3NjY3NzUyOF5BMl5BanBnXkFtZTcwMTA5NzAyOA@@._V1_SX400_.jpg",
"plot": "The true story of Richard Kuklinski, the notorious contract killer and family man. When finally arrested in 1986, neither his wife nor daughters have any clue about his real profession.",
"rank": 117,
"running_time_secs": 6300
}
},
{
"year": 1939,
"title": "The Wizard of Oz",
"actors": ["Judy Garland", "Frank Morgan", "Ray Bolger"],
"info": {
"directors": ["Victor Fleming", "George Cukor", "Mervyn LeRoy"],
"release_date": "1939-08-12T00:00:00Z",
"rating": 8.2,
"genres": ["Adventure", "Family", "Fantasy", "Musical"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTU0MTA2OTIwNF5BMl5BanBnXkFtZTcwMzA0Njk3OA@@._V1_SX400_.jpg",
"plot": "Dorothy Gale is swept away to a magical land in a tornado and embarks on a quest to see the Wizard who can help her return home.",
"rank": 118,
"running_time_secs": 6060
}
},
{
"year": 2013,
"title": "Big Sur",
"actors": ["Stana Katic", "Radha Mitchell", "Kate Bosworth"],
"info": {
"directors": ["Michael Polish"],
"release_date": "2013-01-23T00:00:00Z",
"rating": 6.3,
"genres": ["Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjI3MDU0MDY2MF5BMl5BanBnXkFtZTgwNDY3NjUzMDE@._V1_SX400_.jpg",
"plot": "A recounting of Jack Kerouac's (here known by the name of his fictional alter-ego Jack Duluoz) three sojourns to the cabin in Big Sur, owned by poet Lawrence Ferlinghetti.",
"rank": 119,
"running_time_secs": 6000
}
},
{
"year": 1985,
"title": "The Breakfast Club",
"actors": ["Emilio Estevez", "Judd Nelson", "Molly Ringwald"],