forked from EloquentStudio/filter.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream_movies.json
More file actions
1091 lines (1091 loc) · 27.3 KB
/
Copy pathstream_movies.json
File metadata and controls
1091 lines (1091 loc) · 27.3 KB
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
[
{
"name": "Yojimbo",
"outline": "A crafty ronin comes to a town divided by two criminal gangs and decides to play them against each other to free the town.",
"rating": 8.4,
"director": "Akira Kurosawa",
"year": 1961,
"stars": [
"Toshirô Mifune",
"Eijirô Tôno",
"Tatsuya Nakadai"
],
"runtime": 110,
"genre": [
"Action",
"Adventure"
],
"certificate": "TV_MA",
"date": "1981-08-02T10:29:29+05:30",
"actor": "Toshirô Mifune",
"id": 250
},
{
"name": "2001: A Space Odyssey",
"outline": "Humanity finds a mysterious, obviously artificial, object buried beneath the Lunar surface and, with the intelligent computer H.A.L. 9000, sets off on a quest.",
"rating": 8.4,
"director": "Stanley Kubrick",
"year": 1968,
"stars": [
"Keir Dullea",
"Gary Lockwood",
"William Sylvester"
],
"runtime": 141,
"genre": [
"Adventure",
"Mystery",
"Sci-Fi"
],
"certificate": "TV_PG",
"date": "1970-07-02T10:29:29+05:30",
"actor": "Keir Dullea",
"id": 251
},
{
"name": "The Bridge on the River Kwai",
"outline": "After settling his differences with a Japanese PoW camp commander, a British colonel co-operates to oversee his men's construction of a railway bridge for their captors - while oblivious to a plan by the Allies to destroy it.",
"rating": 8.3,
"director": "David Lean",
"year": 1957,
"stars": [
"William Holden",
"Alec Guinness",
"Jack Hawkins"
],
"runtime": 161,
"genre": [
"Adventure",
"Drama",
"History",
"War"
],
"certificate": "APPROVED",
"date": "2001-09-25T10:29:29+05:30",
"actor": "William Holden",
"id": 252
},
{
"name": "Raging Bull",
"outline": "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.",
"rating": 8.3,
"director": "Martin Scorsese",
"year": 1980,
"stars": [
"Robert De Niro",
"Cathy Moriarty",
"Joe Pesci"
],
"runtime": 129,
"genre": [
"Biography",
"Drama",
"Sport"
],
"certificate": "R",
"date": "2000-04-30T10:29:29+05:30",
"actor": "Robert De Niro",
"id": 253
},
{
"name": "Unforgiven",
"outline": "Retired Old West gunslinger William Munny reluctantly takes on one last job, with the help of his old partner and a young man.",
"rating": 8.3,
"director": "Clint Eastwood",
"year": 1992,
"stars": [
"Clint Eastwood",
"Gene Hackman",
"Morgan Freeman"
],
"runtime": 131,
"genre": [
"Western"
],
"certificate": "R",
"date": "2005-11-24T10:29:29+05:30",
"actor": "Clint Eastwood",
"id": 254
},
{
"name": "Mr. Smith Goes to Washington",
"outline": "A naive man is appointed to fill a vacancy in the US Senate. His plans promptly collide with political corruption, but he doesn't back down.",
"rating": 8.3,
"director": "Frank Capra",
"year": 1939,
"stars": [
"James Stewart",
"Jean Arthur",
"Claude Rains"
],
"runtime": 129,
"genre": [
"Drama"
],
"certificate": "APPROVED",
"date": "1962-07-24T10:29:29+05:30",
"actor": "James Stewart",
"id": 255
},
{
"name": "The General",
"outline": "When Union spies steal an engineer's beloved locomotive, he pursues it single handedly and straight through enemy lines.",
"rating": 8.3,
"director": "Clyde Bruckman",
"year": 1926,
"stars": [
"Buster Keaton",
"Buster Keaton",
"Marion Mack",
"Glen Cavender"
],
"runtime": 107,
"genre": [
"Action",
"Adventure",
"Comedy",
"Romance",
"War"
],
"certificate": "UNRATED",
"date": "1983-06-04T10:29:29+05:30",
"actor": "Buster Keaton",
"id": 256
},
{
"name": "Indiana Jones and the Last Crusade",
"outline": "When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana Jones must follow in his father's footsteps and stop the Nazis.",
"rating": 8.3,
"director": "Steven Spielberg",
"year": 1989,
"stars": [
"Harrison Ford",
"Sean Connery",
"Alison Doody"
],
"runtime": 127,
"genre": [
"Action",
"Adventure"
],
"certificate": "United States-E",
"date": "2014-03-19T10:29:29+05:30",
"actor": "Harrison Ford",
"id": 257
},
{
"name": "Batman Begins",
"outline": "After training with his mentor, Batman begins his war on crime to free the crime-ridden Gotham City from corruption that the Scarecrow and the League of Shadows have cast upon it.",
"rating": 8.3,
"director": "Christopher Nolan",
"year": 2005,
"stars": [
"Christian Bale",
"Michael Caine",
"Ken Watanabe"
],
"runtime": 140,
"genre": [
"Action",
"Adventure",
"Crime",
"Drama"
],
"certificate": "PG_13",
"date": "2003-03-20T10:29:29+05:30",
"actor": "Christian Bale",
"id": 258
},
{
"name": "For a Few Dollars More",
"outline": "Two bounty hunters with the same intentions, team up to track down a Western outlaw.",
"rating": 8.3,
"director": "Sergio Leone",
"year": 1965,
"stars": [
"Clint Eastwood",
"Lee Van Cleef",
"Gian Maria Volonté"
],
"runtime": 132,
"genre": [
"Western"
],
"certificate": "APPROVED",
"date": "2006-07-25T10:29:29+05:30",
"actor": "Clint Eastwood",
"id": 259
},
{
"name": "The Great Escape",
"outline": "Allied POWs plan for several hundred of their number to escape from a German camp during World War II.",
"rating": 8.3,
"director": "John Sturges",
"year": 1963,
"stars": [
"Steve McQueen",
"James Garner",
"Richard Attenborough"
],
"runtime": 172,
"genre": [
"Adventure",
"Drama",
"History",
"Thriller",
"War"
],
"certificate": "UNRATED",
"date": "1999-04-14T10:29:29+05:30",
"actor": "Steve McQueen",
"id": 260
},
{
"name": "On the Waterfront",
"outline": "An ex-prize fighter turned longshoreman struggles to stand up to his corrupt union bosses.",
"rating": 8.3,
"director": "Elia Kazan",
"year": 1954,
"stars": [
"Marlon Brando",
"Karl Malden",
"Lee J. Cobb"
],
"runtime": 108,
"genre": [
"Crime",
"Drama"
],
"certificate": "APPROVED",
"date": "1997-02-11T10:29:29+05:30",
"actor": "Marlon Brando",
"id": 261
},
{
"name": "The Kid",
"outline": "The Tramp cares for an abandoned child, but events put that relationship in jeopardy.",
"rating": 8.3,
"director": "Charles Chaplin",
"year": 1921,
"stars": [
"Charles Chaplin",
"Edna Purviance",
"Jackie Coogan"
],
"runtime": 68,
"genre": [
"Comedy",
"Drama",
"Family"
],
"certificate": "NOT_RATED",
"date": "1964-12-04T10:29:29+05:30",
"actor": "Charles Chaplin",
"id": 262
},
{
"name": "Die Hard",
"outline": "John McClane, officer of the NYPD, tries to save wife Holly Gennaro and several others, taken hostage by German terrorist Hans Gruber during a Christmas party at the Nakatomi Plaza in Los Angeles.",
"rating": 8.3,
"director": "John McTiernan",
"year": 1988,
"stars": [
"Bruce Willis",
"Alan Rickman",
"Bonnie Bedelia"
],
"runtime": 131,
"genre": [
"Action",
"Thriller"
],
"certificate": "R",
"date": "1995-05-19T10:29:29+05:30",
"actor": "Bruce Willis",
"id": 263
},
{
"name": "Downfall",
"outline": "Traudl Junge, the final secretary for Adolf Hitler, tells of the Nazi dictator's final days in his Berlin bunker at the end of WWII.",
"rating": 8.3,
"director": "Oliver Hirschbiegel",
"year": 2004,
"stars": [
"Bruno Ganz",
"Alexandra Maria Lara",
"Ulrich Matthes"
],
"runtime": 156,
"genre": [
"Biography",
"Drama",
"History",
"War"
],
"certificate": "R",
"date": "2005-07-08T10:29:29+05:30",
"actor": "Bruno Ganz",
"id": 264
},
{
"name": "Snatch.",
"outline": "Unscrupulous boxing promoters, violent bookmakers, a Russian gangster, incompetent amateur robbers, and supposedly Jewish jewelers fight to track down a priceless stolen diamond.",
"rating": 8.3,
"director": "Guy Ritchie",
"year": 2000,
"stars": [
"Jason Statham",
"Brad Pitt",
"Benicio Del Toro"
],
"runtime": 104,
"genre": [
"Crime",
"Thriller"
],
"certificate": "R",
"date": "1989-12-16T10:29:29+05:30",
"actor": "Jason Statham",
"id": 265
},
{
"name": "The Seventh Seal",
"outline": "A man seeks answers about life, death, and the existence of God as he plays chess against the Grim Reaper during the Black Plague.",
"rating": 8.3,
"director": "Ingmar Bergman",
"year": 1957,
"stars": [
"Max von Sydow",
"Gunnar Björnstrand",
"Bengt Ekerot"
],
"runtime": 96,
"genre": [
"Drama",
"Fantasy"
],
"certificate": "TV_PG",
"date": "1971-09-29T10:29:29+05:30",
"actor": "Max von Sydow",
"id": 266
},
{
"name": "Pan's Labyrinth",
"outline": "In the fascist Spain of 1944, the bookish young stepdaughter of a sadistic army officer escapes into an eerie but captivating fantasy world.",
"rating": 8.3,
"director": "Guillermo del Toro",
"year": 2006,
"stars": [
"Ivana Baquero",
"Ariadna Gil",
"Sergi López"
],
"runtime": 118,
"genre": [
"Drama",
"Fantasy",
"War"
],
"certificate": "R",
"date": "1971-04-20T10:29:29+05:30",
"actor": "Ivana Baquero",
"id": 267
},
{
"name": "Wild Strawberries",
"outline": "After living a life marked by coldness, an aging professor is forced to confront the emptiness of his existence.",
"rating": 8.3,
"director": "Ingmar Bergman",
"year": 1957,
"stars": [
"Victor Sjöström",
"Bibi Andersson",
"Ingrid Thulin"
],
"runtime": 91,
"genre": [
"Drama"
],
"certificate": "UNRATED",
"date": "1959-12-14T10:29:29+05:30",
"actor": "Victor Sjöström",
"id": 268
},
{
"name": "Inglourious Basterds",
"outline": "In Nazi-occupied France during World War II, a plan to assassinate Nazi leaders by a group of Jewish U.S. soldiers coincides with a theatre owner's vengeful plans for the same.",
"rating": 8.3,
"director": "Quentin Tarantino",
"year": 2009,
"stars": [
"Brad Pitt",
"Diane Kruger",
"Eli Roth"
],
"runtime": 153,
"genre": [
"Adventure",
"Drama",
"War"
],
"certificate": "R",
"date": "1960-08-07T10:29:29+05:30",
"actor": "Brad Pitt",
"id": 269
},
{
"name": "Up",
"outline": "By tying thousands of balloons to his home, 78-year-old Carl sets out to fulfill his lifelong dream to see the wilds of South America. Russell, a wilderness explorer 70 years younger, inadvertently becomes a stowaway.",
"rating": 8.3,
"director": "Pete Docter",
"year": 2009,
"stars": [
"Bob Peterson",
"Edward Asner",
"Jordan Nagai",
"John Ratzenberger"
],
"runtime": 96,
"genre": [
"Animation",
"Adventure",
"Comedy",
"Drama",
"Family",
"Fantasy"
],
"certificate": "PG",
"date": "1977-01-18T10:29:29+05:30",
"actor": "Bob Peterson",
"id": 270
},
{
"name": "The Elephant Man",
"outline": "A Victorian surgeon rescues a heavily disfigured man who is mistreated while scraping a living as a side-show freak. Behind his monstrous facade, there is revealed a person of intelligence and sensitivity.",
"rating": 8.3,
"director": "David Lynch",
"year": 1980,
"stars": [
"Anthony Hopkins",
"John Hurt",
"Anne Bancroft"
],
"runtime": 124,
"genre": [
"Biography",
"Drama"
],
"certificate": "PG",
"date": "1964-11-29T10:29:29+05:30",
"actor": "Anthony Hopkins",
"id": 271
},
{
"name": "The Maltese Falcon",
"outline": "A private detective takes on a case that involves him with three eccentric criminals, a gorgeous liar, and their quest for a priceless statuette.",
"rating": 8.3,
"director": "John Huston",
"year": 1941,
"stars": [
"Humphrey Bogart",
"Mary Astor",
"Gladys George"
],
"runtime": 100,
"genre": [
"Crime",
"Drama",
"Film-Noir",
"Mystery"
],
"certificate": "APPROVED",
"date": "1985-12-06T10:29:29+05:30",
"actor": "Humphrey Bogart",
"id": 272
},
{
"name": "Rebecca",
"outline": "When a naive young woman marries a rich widower and settles in his gigantic mansion, she finds the memory of the first wife maintaining a grip on her husband and the servants.",
"rating": 8.3,
"director": "Alfred Hitchcock",
"year": 1940,
"stars": [
"Laurence Olivier",
"Joan Fontaine",
"George Sanders"
],
"runtime": 130,
"genre": [
"Drama",
"Mystery",
"Thriller"
],
"certificate": "APPROVED",
"date": "2007-01-08T10:29:29+05:30",
"actor": "Laurence Olivier",
"id": 273
},
{
"name": "The Avengers",
"outline": "Nick Fury of S.H.I.E.L.D. brings together a team of super humans to form The Avengers to help save the Earth from Loki and his army.",
"rating": 8.3,
"director": "Joss Whedon",
"year": 2012,
"stars": [
"Robert Downey Jr.",
"Chris Evans",
"Scarlett Johansson"
],
"runtime": 143,
"genre": [
"Action"
],
"certificate": "PG_13",
"date": "1994-03-18T10:29:29+05:30",
"actor": "Robert Downey Jr.",
"id": 274
},
{
"name": "3 Idiots",
"outline": "Two friends are searching for their long lost companion. They revisit their college days and recall the memories of their friend who inspired them to think differently, even as the rest of the world called them \"idiots\".",
"rating": 8.3,
"director": "Rajkumar Hirani",
"year": 2009,
"stars": [
"Aamir Khan",
"Madhavan",
"Mona Singh"
],
"runtime": 170,
"genre": [
"Comedy",
"Drama",
"Romance"
],
"certificate": "PG_13",
"date": "2009-04-24T10:29:29+05:30",
"actor": "Aamir Khan",
"id": 275
},
{
"name": "Heat",
"outline": "A group of professional bank robbers start to feel the heat from police when they unknowingly leave a clue at their latest heist.",
"rating": 8.3,
"director": "Michael Mann",
"year": 1995,
"stars": [
"Al Pacino",
"Robert De Niro",
"Val Kilmer"
],
"runtime": 170,
"genre": [
"Action",
"Crime",
"Drama",
"Thriller"
],
"certificate": "R",
"date": "1999-12-12T10:29:29+05:30",
"actor": "Al Pacino",
"id": 276
},
{
"name": "Toy Story",
"outline": "A cowboy doll is profoundly threatened and jealous when a new spaceman figure supplants him as top toy in a boy's room.",
"rating": 8.3,
"director": "John Lasseter",
"year": 1995,
"stars": [
"Tom Hanks",
"Tim Allen",
"Don Rickles"
],
"runtime": 81,
"genre": [
"Animation",
"Adventure",
"Comedy",
"Family",
"Fantasy"
],
"certificate": "G",
"date": "2008-09-07T10:29:29+05:30",
"actor": "Tom Hanks",
"id": 277
},
{
"name": "Blade Runner",
"outline": "Deckard, a blade runner, has to track down and terminate 4 replicants who hijacked a ship in space and have returned to Earth seeking their maker.",
"rating": 8.3,
"director": "Ridley Scott",
"year": 1982,
"stars": [
"Harrison Ford",
"Rutger Hauer",
"Sean Young"
],
"runtime": 117,
"genre": [
"Drama",
"Sci-Fi",
"Thriller"
],
"certificate": "R",
"date": "1981-02-09T10:29:29+05:30",
"actor": "Harrison Ford",
"id": 278
},
{
"name": "Ran",
"outline": "An elderly lord abdicates to his three sons, and the two corrupt ones turn against him.",
"rating": 8.3,
"director": "Akira Kurosawa",
"year": 1985,
"stars": [
"Tatsuya Nakadai",
"Akira Terao",
"Jinpachi Nezu"
],
"runtime": 162,
"genre": [
"Action",
"Drama",
"War"
],
"certificate": "R",
"date": "1985-07-11T10:29:29+05:30",
"actor": "Tatsuya Nakadai",
"id": 279
},
{
"name": "Scarface",
"outline": "In 1980 Miami, a determined Cuban immigrant takes over a drug cartel while succumbing to greed.",
"rating": 8.3,
"director": "Brian De Palma",
"year": 1983,
"stars": [
"Al Pacino",
"Michelle Pfeiffer",
"Steven Bauer"
],
"runtime": 170,
"genre": [
"Crime",
"Drama",
"Thriller"
],
"certificate": "R",
"date": "1986-01-27T10:29:29+05:30",
"actor": "Al Pacino",
"id": 280
},
{
"name": "Touch of Evil",
"outline": "Stark, perverse story of murder, kidnapping, and police corruption in Mexican border town.",
"rating": 8.3,
"director": "Orson Welles",
"year": 1958,
"stars": [
"Charlton Heston",
"Orson Welles",
"Janet Leigh"
],
"runtime": 95,
"genre": [
"Crime",
"Film-Noir",
"Thriller"
],
"certificate": "UNRATED",
"date": "2004-07-12T10:29:29+05:30",
"actor": "Charlton Heston",
"id": 281
},
{
"name": "The Gold Rush",
"outline": "The Tramp goes the Klondike in search of gold and finds it and more.",
"rating": 8.2,
"director": "Charles Chaplin",
"year": 1925,
"stars": [
"Charles Chaplin",
"Mack Swain",
"Tom Murray"
],
"runtime": 95,
"genre": [
"Adventure",
"Comedy",
"Family",
"Romance",
"Western"
],
"certificate": "NOT_RATED",
"date": "2010-05-05T10:29:29+05:30",
"actor": "Charles Chaplin",
"id": 282
},
{
"name": "Gran Torino",
"outline": "Disgruntled Korean War vet Walt Kowalski sets out to reform his neighbor, a young Hmong teenager, who tried to steal Kowalski's prized possession: his 1972 Gran Torino.",
"rating": 8.2,
"director": "Clint Eastwood",
"year": 2008,
"stars": [
"Clint Eastwood",
"Bee Vang",
"Christopher Carley"
],
"runtime": 116,
"genre": [
"Drama"
],
"certificate": "R",
"date": "1986-03-28T10:29:29+05:30",
"actor": "Clint Eastwood",
"id": 283
},
{
"name": "The Big Lebowski",
"outline": "\"Dude\" Lebowski, mistaken for a millionaire Lebowski, seeks restitution for his ruined rug and enlists his bowling buddies to help get it.",
"rating": 8.2,
"director": "Joel Coen",
"year": 1998,
"stars": [
"Jeff Bridges",
"John Goodman",
"Julianne Moore"
],
"runtime": 117,
"genre": [
"Comedy",
"Crime"
],
"certificate": "R",
"date": "1987-01-01T10:29:29+05:30",
"actor": "Jeff Bridges",
"id": 284
},
{
"name": "It Happened One Night",
"outline": "A spoiled heiress, running away from her family, is helped by a man who's actually a reporter looking for a story.",
"rating": 8.2,
"director": "Frank Capra",
"year": 1934,
"stars": [
"Clark Gable",
"Claudette Colbert",
"Walter Connolly"
],
"runtime": 105,
"genre": [
"Comedy",
"Romance"
],
"certificate": "UNRATED",
"date": "1968-02-03T10:29:29+05:30",
"actor": "Clark Gable",
"id": 285
},
{
"name": "Cool Hand Luke",
"outline": "A man refuses to conform to life in a rural prison.",
"rating": 8.2,
"director": "Stuart Rosenberg",
"year": 1967,
"stars": [
"Paul Newman",
"George Kennedy",
"Strother Martin"
],
"runtime": 126,
"genre": [
"Crime",
"Drama"
],
"certificate": "APPROVED",
"date": "2001-04-06T10:29:29+05:30",
"actor": "Paul Newman",
"id": 286
},
{
"name": "Fargo",
"outline": "Jerry Lundegaard's inept crime falls apart due to his and his henchmen's bungling and the persistent police work of the quite pregnant Marge Gunderson.",
"rating": 8.2,
"director": "Joel Coen",
"year": 1996,
"stars": [
"William H. Macy",
"Frances McDormand",
"Steve Buscemi"
],
"runtime": 98,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "1986-05-30T10:29:29+05:30",
"actor": "William H. Macy",
"id": 287
},
{
"name": "Warrior",
"outline": "The youngest son of an alcoholic former boxer returns home, where he's trained by his father for competition in a mixed martial arts tournament - a path that puts the fighter on a collision corner with his older brother.",
"rating": 8.2,
"director": "Gavin O'Connor",
"year": 2011,
"stars": [
"Tom Hardy",
"Nick Nolte",
"Joel Edgerton"
],
"runtime": 140,
"genre": [
"Drama",
"Sport"
],
"certificate": "PG_13",
"date": "1988-01-17T10:29:29+05:30",
"actor": "Tom Hardy",
"id": 288
},
{
"name": "The Deer Hunter",
"outline": "An in-depth examination of the way that the Vietnam war affects the lives of people in a small industrial town in the USA.",
"rating": 8.2,
"director": "Michael Cimino",
"year": 1978,
"stars": [
"Robert De Niro",
"Christopher Walken",
"John Cazale"
],
"runtime": 182,
"genre": [
"Drama",
"War"
],
"certificate": "R",
"date": "1967-06-11T10:29:29+05:30",
"actor": "Robert De Niro",
"id": 289
},
{
"name": "The Secret in Their Eyes",
"outline": "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.",
"rating": 8.2,
"director": "Juan José Campanella",
"year": 2009,
"stars": [
"Ricardo Darín",
"Soledad Villamil",
"Pablo Rago"
],
"runtime": 129,
"genre": [
"Drama",
"Mystery",
"Thriller"
],
"certificate": "R",
"date": "2013-04-11T10:29:29+05:30",
"actor": "Ricardo Darín",
"id": 290
},
{
"name": "Strangers on a Train",
"outline": "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.",
"rating": 8.2,
"director": "Alfred Hitchcock",
"year": 1951,
"stars": [
"Farley Granger",
"Robert Walker",
"Ruth Roman"
],
"runtime": 101,
"genre": [
"Crime",
"Thriller"
],
"certificate": "APPROVED",
"date": "1995-09-01T10:29:29+05:30",
"actor": "Farley Granger",
"id": 291
},
{
"name": "The Best Years of Our Lives",
"outline": "Three WWII veterans return home to small-town America to discover that they and their families have been irreparably changed.",
"rating": 8.2,
"director": "William Wyler",
"year": 1946,
"stars": [
"Fredric March",
"Dana Andrews",
"Myrna Loy"
],
"runtime": 172,
"genre": [
"Drama",
"Romance",
"War"
],
"certificate": "APPROVED",
"date": "2008-06-05T10:29:29+05:30",
"actor": "Fredric March",
"id": 292
},
{
"name": "Lock, Stock and Two Smoking Barrels",
"outline": "Four London working class stiffs pool their money to put one in a high stakes card game, but things go wrong and they end up owing half a million pounds and having one week to come up with the cash.",
"rating": 8.2,
"director": "Guy Ritchie",
"year": 1998,
"stars": [
"Jason Flemyng",
"Dexter Fletcher",
"Nick Moran"
],
"runtime": 107,
"genre": [
"Crime",
"Thriller"
],
"certificate": "R",
"date": "2007-01-07T10:29:29+05:30",
"actor": "Jason Flemyng",
"id": 293
},
{
"name": "High Noon",
"outline": "A marshall, personally compelled to face a returning deadly enemy, finds that his own town refuses to help him.",
"rating": 8.2,
"director": "Fred Zinnemann",
"year": 1952,
"stars": [
"Gary Cooper",
"Grace Kelly",
"Thomas Mitchell"
],
"runtime": 85,
"genre": [
"Drama",
"Western"
],
"certificate": "APPROVED",
"date": "1963-12-31T10:29:29+05:30",
"actor": "Gary Cooper",
"id": 294
},
{
"name": "My Neighbor Totoro",
"outline": "When two girls move to the country to be near their ailing mother, they have adventures with the wonderous forest spirits who live nearby.",
"rating": 8.2,
"director": "Hayao Miyazaki",
"year": 1988,
"stars": [
"Hitoshi Takagi",
"Noriko Hidaka",
"Toshiyuki Amagasa"
],
"runtime": 86,
"genre": [
"Animation",
"Family",
"Fantasy"
],
"certificate": "G",
"date": "1959-12-20T10:29:29+05:30",