-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovies.json
3399 lines (3399 loc) · 144 KB
/
movies.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": "This Is the End",
"info": {
"directors": ["Evan Goldberg", "Seth Rogen"],
"release_date": "2013-06-03T00:00:00Z",
"rating": 7.2,
"genres": ["Comedy", "Fantasy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTQxODE3NjM1Ml5BMl5BanBnXkFtZTcwMzkzNjc4OA@@._V1_SX400_.jpg",
"plot": "While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.",
"rank": 6,
"running_time_secs": 6420,
"actors": ["James Franco", "Jonah Hill", "Seth Rogen"]
}
},
{
"year": 2013,
"title": "Insidious: Chapter 2",
"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,
"actors": ["Patrick Wilson", "Rose Byrne", "Barbara Hershey"]
}
},
{
"year": 2013,
"title": "World War Z",
"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,
"actors": ["Brad Pitt", "Mireille Enos", "Daniella Kertesz"]
}
},
{
"year": 2014,
"title": "X-Men: Days of Future Past",
"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,
"actors": ["Jennifer Lawrence", "Hugh Jackman", "Michael Fassbender"]
}
},
{
"year": 2014,
"title": "Transformers: Age of Extinction",
"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,
"actors": ["Mark Wahlberg", "Nicola Peltz", "Jack Reynor"]
}
},
{
"year": 2013,
"title": "Now You See Me",
"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,
"actors": ["Jesse Eisenberg", "Common", "Mark Ruffalo"]
}
},
{
"year": 2013,
"title": "Gravity",
"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,
"actors": ["Sandra Bullock", "George Clooney", "Ed Harris"]
}
},
{
"year": 2013,
"title": "We're the Millers",
"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,
"actors": ["Jason Sudeikis", "Jennifer Aniston", "Emma Roberts"]
}
},
{
"year": 2013,
"title": "Riddick",
"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,
"actors": ["Vin Diesel", "Karl Urban", "Katee Sackhoff"]
}
},
{
"year": 2013,
"title": "The Family",
"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,
"actors": ["Robert De Niro", "Michelle Pfeiffer", "Dianna Agron"]
}
},
{
"year": 2013,
"title": "Star Trek Into Darkness",
"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,
"actors": ["Chris Pine", "Zachary Quinto", "Zoe Saldana"]
}
},
{
"year": 2013,
"title": "After Earth",
"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,
"actors": ["Jaden Smith", "David Denman", "Will Smith"]
}
},
{
"year": 2013,
"title": "The Great Gatsby",
"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,
"actors": ["Leonardo DiCaprio", "Carey Mulligan", "Joel Edgerton"]
}
},
{
"year": 2014,
"title": "Divergent",
"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,
"actors": ["Shailene Woodley", "Kate Winslet", "Zoe Kravitz"]
}
},
{
"year": 2013,
"title": "We Are What We Are",
"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,
"actors": ["Bill Sage", "Ambyr Childers", "Julia Garner"]
}
},
{
"year": 2014,
"title": "The Amazing Spider-Man 2",
"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,
"actors": ["Andrew Garfield", "Emma Stone", "Jamie Foxx"]
}
},
{
"year": 2013,
"title": "Curse of Chucky",
"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,
"actors": ["Chantal Quesnelle", "Fiona Dourif", "Danielle Bisutti"]
}
},
{
"year": 2013,
"title": "The Conjuring",
"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,
"actors": ["Patrick Wilson", "Vera Farmiga", "Ron Livingston"]
}
},
{
"year": 2013,
"title": "Oldboy",
"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,
"actors": ["Josh Brolin", "Elizabeth Olsen", "Samuel L. Jackson"]
}
},
{
"year": 2013,
"title": "Escape Plan",
"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,
"actors": ["Sylvester Stallone", "Arnold Schwarzenegger", "50 Cent"]
}
},
{
"year": 2013,
"title": "Elysium",
"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,
"actors": ["Matt Damon", "Jodie Foster", "Sharlto Copley"]
}
},
{
"year": 2013,
"title": "Cloudy with a Chance of Meatballs 2",
"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,
"actors": ["Bill Hader", "Anna Faris", "Will Forte"]
}
},
{
"year": 2014,
"title": "RoboCop",
"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,
"actors": ["Joel Kinnaman", "Douglas Urbanski", "Abbie Cornish"]
}
},
{
"year": 2013,
"title": "Carrie",
"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,
"actors": ["Chloe Grace Moretz", "Julianne Moore", "Judy Greer"]
}
},
{
"year": 2013,
"title": "The Mortal Instruments: City of Bones",
"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,
"actors": ["Lily Collins", "Jamie Campbell Bower", "Robert Sheehan"]
}
},
{
"year": 2014,
"title": "Captain America: The Winter Soldier",
"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,
"actors": ["Chris Evans", "Frank Grillo", "Sebastian Stan"]
}
},
{
"year": 2014,
"title": "Need for Speed",
"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,
"actors": ["Aaron Paul", "Chillie Mo", "Dominic Cooper"]
}
},
{
"year": 2013,
"title": "Runner Runner",
"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,
"actors": ["Ben Affleck", "Justin Timberlake", "Gemma Arterton"]
}
},
{
"year": 2013,
"title": "I Spit on Your Grave 2",
"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,
"actors": ["Jemma Dallender", "Yavor Baharov", "Joe Absolom"]
}
},
{
"year": 2013,
"title": "Battle of the Year",
"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,
"actors": ["Josh Holloway", "Laz Alonso", "Josh Peck"]
}
},
{
"year": 2013,
"title": "Behind the Candelabra",
"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,
"actors": ["Matt Damon", "Scott Bakula", "Eric Zuckerman"]
}
},
{
"year": 2013,
"title": "No se Aceptan Devoluciones",
"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,
"actors": ["Eugenio Derbez", "Karla Souza", "Jessica Lindsey"]
}
},
{
"year": 2013,
"title": "The Bling Ring",
"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,
"actors": ["Katie Chang", "Israel Broussard", "Emma Watson"]
}
},
{
"year": 2013,
"title": "Furious 6",
"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,
"actors": ["Vin Diesel", "Paul Walker", "Dwayne Johnson"]
}
},
{
"year": 2013,
"title": "Machete Kills",
"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,
"actors": ["Danny Trejo", "Alexa Vega", "Mel Gibson"]
}
},
{
"year": 2013,
"title": "12 Years a Slave",
"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,
"actors": [
"Chiwetel Ejiofor",
"Michael K. Williams",
"Michael Fassbender"
]
}
},
{
"year": 2013,
"title": "The World's End",
"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,
"actors": ["Simon Pegg", "Nick Frost", "Martin Freeman"]
}
},
{
"year": 2012,
"title": "Pitch Perfect",
"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,
"actors": ["Anna Kendrick", "Brittany Snow", "Rebel Wilson"]
}
},
{
"year": 2013,
"title": "Epic",
"info": {
"directors": ["Chris Wedge"],
"release_date": "2013-05-15T00:00:00Z",
"rating": 6.6,
"genres": ["Animation", "Adventure", "Family", "Fantasy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTgyNDYwNzE5NV5BMl5BanBnXkFtZTcwMzUyODM5OA@@._V1_SX400_.jpg",
"plot": "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.",
"rank": 47,
"running_time_secs": 6120,
"actors": ["Amanda Seyfried", "Josh Hutcherson", "Beyonce Knowles"]
}
},
{
"year": 2012,
"title": "The Avengers",
"info": {
"directors": ["Joss Whedon"],
"release_date": "2012-04-11T00:00:00Z",
"rating": 8.2,
"genres": ["Action", "Fantasy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk2NTI1MTU4N15BMl5BanBnXkFtZTcwODg0OTY0Nw@@._V1_SX400_.jpg",
"plot": "Nick Fury of S.H.I.E.L.D. assembles a team of superhumans to save the planet from Loki and his army.",
"rank": 48,
"running_time_secs": 8580,
"actors": ["Robert Downey Jr.", "Chris Evans", "Scarlett Johansson"]
}
},
{
"year": 2013,
"title": "Metallica Through the Never",
"info": {
"directors": ["Nimrod Antal"],
"release_date": "2013-09-09T00:00:00Z",
"rating": 7.8,
"genres": ["Action", "Music"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjQwNjk5MTk4Ml5BMl5BanBnXkFtZTcwNTgwNDA5OQ@@._V1_SX400_.jpg",
"plot": "Trip, a young roadie for Metallica, is sent on an urgent mission during the band's show. But what seems like a simple assignment turns into a surreal adventure.",
"rank": 49,
"running_time_secs": 5640,
"actors": ["Dane DeHaan", "James Hetfield", "Lars Ulrich"]
}
},
{
"year": 2013,
"title": "Oblivion",
"info": {
"directors": ["Joseph Kosinski"],
"release_date": "2013-04-10T00:00:00Z",
"rating": 7,
"genres": ["Action", "Adventure", "Mystery", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTQwMDY0MTA4MF5BMl5BanBnXkFtZTcwNzI3MDgxOQ@@._V1_SX400_.jpg",
"plot": "A veteran assigned to extract Earth's remaining resources begins to question what he knows about his mission and himself.",
"rank": 50,
"running_time_secs": 7440,
"actors": ["Tom Cruise", "Morgan Freeman", "Andrea Riseborough"]
}
},
{
"year": 2013,
"title": "Dom Hemingway",
"info": {
"directors": ["Richard Shepard"],
"release_date": "2013-09-08T00:00:00Z",
"rating": 6.9,
"genres": ["Comedy", "Crime", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTczMDYzOTAwM15BMl5BanBnXkFtZTgwMDg5OTgwMDE@._V1_SX400_.jpg",
"plot": "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.",
"rank": 51,
"running_time_secs": 5580,
"actors": ["Jude Law", "Richard E. Grant", "Demian Bichir"]
}
},
{
"year": 2013,
"title": "The Hangover Part III",
"info": {
"directors": ["Todd Phillips"],
"release_date": "2013-05-20T00:00:00Z",
"rating": 5.9,
"genres": ["Comedy"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTA0NjE1MzMzODheQTJeQWpwZ15BbWU3MDY4MTQ3Mzk@._V1_SX400_.jpg",
"plot": "When one of their own is kidnapped by an angry gangster, the Wolf Pack must track down Mr. Chow, who has escaped from prison and is on the lam.",
"rank": 52,
"running_time_secs": 6000,
"actors": ["Bradley Cooper", "Zach Galifianakis", "Ed Helms"]
}
},
{
"year": 2013,
"title": "Despicable Me 2",
"info": {
"directors": ["Pierre Coffin", "Chris Renaud"],
"release_date": "2013-06-16T00:00:00Z",
"rating": 7.7,
"genres": [
"Animation",
"Adventure",
"Comedy",
"Crime",
"Family",
"Sci-Fi"
],
"image_url": "http://ia.media-imdb.com/images/M/MV5BOTg4NTk2OTg5N15BMl5BanBnXkFtZTcwMDk1MzI2OQ@@._V1_SX400_.jpg",
"plot": "Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.",
"rank": 55,
"running_time_secs": 5880,
"actors": ["Steve Carell", "Kristen Wiig", "Benjamin Bratt"]
}
},
{
"year": 2013,
"title": "The Butler",
"info": {
"directors": ["Lee Daniels"],
"release_date": "2013-08-05T00:00:00Z",
"rating": 6.6,
"genres": ["Biography", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjM2NDY3MjkyMF5BMl5BanBnXkFtZTcwMDM5Nzg5OQ@@._V1_SX400_.jpg",
"plot": "As Cecil Gaines serves eight presidents during his tenure as a butler at the White House, the civil rights movement, Vietnam, and other major events affect this man's life, family, and American society.",
"rank": 56,
"running_time_secs": 7920,
"actors": ["Forest Whitaker", "Oprah Winfrey", "John Cusack"]
}
},
{
"year": 2014,
"title": "Dumb and Dumber To",
"info": {
"directors": ["Bobby Farrelly", "Peter Farrelly"],
"release_date": "2014-01-01T00:00:00Z",
"genres": ["Comedy"],
"plot": "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.",
"rank": 57,
"actors": ["Jennifer Lawrence", "Jim Carrey", "Jeff Daniels"]
}
},
{
"year": 2013,
"title": "Blue Jasmine",
"info": {
"directors": ["Woody Allen"],
"release_date": "2013-07-26T00:00:00Z",
"rating": 7.8,
"genres": ["Comedy", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTc0ODk5MzEyMV5BMl5BanBnXkFtZTcwMzI0MDY1OQ@@._V1_SX400_.jpg",
"plot": "A New York socialite, deeply troubled and in denial, arrives in San Francisco to impose upon her sister. She looks a million, but isn't bringing money, peace, or love...",
"rank": 58,
"running_time_secs": 5880,
"actors": ["Cate Blanchett", "Alec Baldwin", "Peter Sarsgaard"]
}
},
{
"year": 2013,
"title": "Ender's Game",
"info": {
"directors": ["Gavin Hood"],
"release_date": "2013-10-24T00:00:00Z",
"genres": ["Action", "Adventure", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjAzMzI5OTgzMl5BMl5BanBnXkFtZTgwMTU5MTAwMDE@._V1_SX400_.jpg",
"plot": "70 years after a horrific alien war, an unusually gifted child is sent to an advanced military school in space to prepare for a future invasion.",
"rank": 59,
"running_time_secs": 6840,
"actors": ["Harrison Ford", "Asa Butterfield", "Hailee Steinfeld"]
}
},
{
"year": 2013,
"title": "White House Down",
"info": {
"directors": ["Roland Emmerich"],
"release_date": "2013-06-26T00:00:00Z",
"rating": 6.4,
"genres": ["Action", "Drama", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTAyNzQyNTcwNjVeQTJeQWpwZ15BbWU3MDAwOTQ4Nzk@._V1_SX400_.jpg",
"plot": "While on a tour of the White House with his young daughter, a Capitol policeman springs into action to save his child and protect the president from a heavily armed group of paramilitary invaders.",
"rank": 60,
"running_time_secs": 7860,
"actors": ["Channing Tatum", "Jamie Foxx", "Maggie Gyllenhaal"]
}
},
{
"year": 2013,
"title": "Pain & Gain",
"info": {
"directors": ["Michael Bay"],
"release_date": "2013-04-11T00:00:00Z",
"rating": 6.5,
"genres": ["Comedy", "Crime", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTU0NDE5NTU0OV5BMl5BanBnXkFtZTcwMzI1OTMzOQ@@._V1_SX400_.jpg",
"plot": "A trio of bodybuilders in Florida get caught up in an extortion ring and a kidnapping scheme that goes terribly wrong.",
"rank": 61,
"running_time_secs": 7740,
"actors": ["Mark Wahlberg", "Dwayne Johnson", "Anthony Mackie"]
}
},
{
"year": 2013,
"title": "2 Guns",
"info": {
"directors": ["Baltasar Kormakur"],
"release_date": "2013-07-30T00:00:00Z",
"rating": 7,
"genres": ["Action", "Comedy", "Crime", "Drama", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BNTQ5MTgzNDg4OF5BMl5BanBnXkFtZTcwMjAyODEzOQ@@._V1_SX400_.jpg",
"plot": "A DEA agent and a naval intelligence officer find themselves on the run after a botched attempt to infiltrate a drug cartel. While fleeing, they learn the secret of their shaky alliance: Neither knew that the other was an undercover agent.",
"rank": 62,
"running_time_secs": 6540,
"actors": ["Denzel Washington", "Mark Wahlberg", "Paula Patton"]
}
},
{
"year": 2012,
"title": "The Dark Knight Rises",
"info": {
"directors": ["Christopher Nolan"],
"release_date": "2012-07-16T00:00:00Z",
"rating": 8.6,
"genres": ["Action", "Crime", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_SX400_.jpg",
"plot": "Eight years on, a new evil rises from where the Batman and Commissioner Gordon tried to bury it, causing the Batman to resurface and fight to protect Gotham City... the very city which brands him an enemy.",
"rank": 63,
"running_time_secs": 9900,
"actors": ["Christian Bale", "Tom Hardy", "Anne Hathaway"]
}
},
{
"year": 2012,
"title": "The Place Beyond the Pines",
"info": {
"directors": ["Derek Cianfrance"],
"release_date": "2012-09-07T00:00:00Z",
"rating": 7.4,
"genres": ["Crime", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjc1OTEwNjU4N15BMl5BanBnXkFtZTcwNzUzNDIwOQ@@._V1_SX400_.jpg",
"plot": "A motorcycle stunt rider turns to robbing banks as a way to provide for his lover and their newborn child, a decision that puts him on a collision course with an ambitious rookie cop navigating a department ruled by a corrupt detective.",
"rank": 64,
"running_time_secs": 8400,
"actors": ["Ryan Gosling", "Bradley Cooper", "Eva Mendes"]
}
},
{
"year": 2014,
"title": "Fast & Furious 7",
"info": {
"directors": ["James Wan"],
"release_date": "2014-07-10T00:00:00Z",
"genres": ["Action", "Crime", "Thriller"],
"plot": "After Dominic Toretto and his crew helped take down Owen Shaw, his brother Ian Shaw now wants revenge.",
"rank": 65,
"actors": ["Vin Diesel", "Paul Walker", "Dwayne Johnson"]
}
},
{
"year": 2013,
"title": "jOBS",
"info": {
"directors": ["Joshua Michael Stern"],
"release_date": "2013-01-25T00:00:00Z",
"rating": 5.6,
"genres": ["Biography", "Drama"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTM5NTQ3MTYxN15BMl5BanBnXkFtZTcwODE2Nzk3OQ@@._V1_SX400_.jpg",
"plot": "The story of Steve Jobs' ascension from college dropout into one of the most revered creative entrepreneurs of the 20th century.",
"rank": 66,
"running_time_secs": 7680,
"actors": ["Ashton Kutcher", "Dermot Mulroney", "Josh Gad"]
}
},
{
"year": 2012,
"title": "Disconnect",
"info": {
"directors": ["Henry Alex Rubin"],
"release_date": "2012-09-11T00:00:00Z",
"rating": 7.5,
"genres": ["Drama", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjA2MTEzMDkyOF5BMl5BanBnXkFtZTcwNzc4NTgxOQ@@._V1_SX400_.jpg",
"plot": "A drama centered on a group of people searching for human connections in today's wired world.",
"rank": 67,
"running_time_secs": 6900,
"actors": ["Jason Bateman", "Jonah Bobo", "Haley Ramm"]
}
},
{
"year": 2011,
"title": "Bridesmaids",
"info": {
"directors": ["Paul Feig"],
"release_date": "2011-04-28T00:00:00Z",
"rating": 6.8,
"genres": ["Comedy", "Romance"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjAyOTMyMzUxNl5BMl5BanBnXkFtZTcwODI4MzE0NA@@._V1_SX400_.jpg",
"plot": "Competition between the maid of honor and a bridesmaid, over who is the bride's best friend, threatens to upend the life of an out-of-work pastry chef.",
"rank": 68,
"running_time_secs": 7500,
"actors": ["Kristen Wiig", "Maya Rudolph", "Rose Byrne"]
}
},
{
"year": 2013,
"title": "Man of Steel",
"info": {
"directors": ["Zack Snyder"],
"release_date": "2013-06-10T00:00:00Z",
"rating": 7.6,
"genres": ["Action", "Adventure", "Fantasy", "Sci-Fi"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMjI5OTYzNjI0Ml5BMl5BanBnXkFtZTcwMzM1NDA1OQ@@._V1_SX400_.jpg",
"plot": "A young itinerant worker is forced to confront his secret extraterrestrial heritage when Earth is invaded by members of his race.",
"rank": 69,
"running_time_secs": 8580,
"actors": ["Henry Cavill", "Amy Adams", "Michael Shannon"]
}
},
{
"year": 2013,
"title": "Ghost Team One",
"info": {
"directors": ["Ben Peyser", "Scott Rutherford"],
"release_date": "2013-01-20T00:00:00Z",
"rating": 4.3,
"genres": ["Comedy", "Horror"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BOTYwODQ3NzUyOV5BMl5BanBnXkFtZTgwNjAxNDcyMDE@._V1_SX400_.jpg",
"plot": "Two roommates deathly afraid of ghosts both fall in love with a girl who believes their home is haunted.",
"rank": 70,
"running_time_secs": 6420,
"actors": ["Carlos Santos", "J.R. Villarreal", "Tony Cavalero"]
}
},
{
"year": 2010,
"title": "Insidious",
"info": {
"directors": ["James Wan"],
"release_date": "2010-09-14T00:00:00Z",
"rating": 6.7,
"genres": ["Horror", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTYyOTAxMDA0OF5BMl5BanBnXkFtZTcwNzgwNTc1NA@@._V1_SX400_.jpg",
"plot": "A family looks to prevent evil spirits from trapping their comatose child in a realm called The Further.",
"rank": 71,
"running_time_secs": 6180,
"actors": ["Patrick Wilson", "Rose Byrne", "Ty Simpkins"]
}
},
{
"year": 2014,
"title": "Godzilla",
"info": {
"directors": ["Gareth Edwards"],
"release_date": "2014-05-14T00:00:00Z",
"genres": ["Action", "Adventure", "Fantasy", "Sci-Fi", "Thriller"],
"image_url": "http://ia.media-imdb.com/images/M/MV5BMTk5MTUwNTY2Nl5BMl5BanBnXkFtZTcwMDk0MTk4OQ@@._V1_SX400_.jpg",
"plot": "A giant radioactive monster called Godzilla awakens from its slumber to wreak destruction on its creators.",
"rank": 72,
"actors": ["Aaron Taylor-Johnson", "Elizabeth Olsen", "Bryan Cranston"]
}
},
{
"year": 2012,
"title": "Wreck-It Ralph",
"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,
"actors": ["John C. Reilly", "Jack McBrayer", "Jane Lynch"]
}
},
{
"year": 2013,
"title": "The Hobbit: The Desolation of Smaug",
"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,
"actors": ["Martin Freeman", "Ian McKellen", "Richard Armitage"]
}
},
{
"year": 2013,
"title": "Frozen",
"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,
"actors": ["Kristen Bell", "Josh Gad", "Idina Menzel"]
}
},
{
"year": 2012,
"title": "Spring Breakers",
"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,
"actors": ["Vanessa Hudgens", "Selena Gomez", "Ashley Benson"]
}
},
{
"year": 2014,
"title": "Fifty Shades of Grey",
"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,
"actors": ["Charlie Hunnam", "Dakota Johnson"]
}
},