-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmovies.json
More file actions
1944 lines (1944 loc) · 95.5 KB
/
Copy pathmovies.json
File metadata and controls
1944 lines (1944 loc) · 95.5 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
[
{
"title": "Fast X",
"genre": [
"Action",
"Crime",
"Thriller"
],
"overview": "Over many missions and against impossible odds, Dom Toretto and his family have outsmarted, out-nerved and outdriven every foe in their path. Now, they confront the most lethal opponent they've ever faced: A terrifying threat emerging from the shadows of the past who's fueled by blood revenge, and who is determined to shatter this family and destroy everything\u2014and everyone\u2014that Dom loves, forever.",
"vote_average": "7.3"
},
{
"title": "John Wick: Chapter 4",
"genre": [
"Action",
"Thriller",
"Crime"
],
"overview": "With the price on his head ever increasing, John Wick uncovers a path to defeating The High Table. But before he can earn his freedom, Wick must face off against a new enemy with powerful alliances across the globe and forces that turn old friends into foes.",
"vote_average": "7.9"
},
{
"title": "Extraction 2",
"genre": [
"Action",
"Thriller"
],
"overview": "Tasked with extracting a family who is at the mercy of a Georgian gangster, Tyler Rake infiltrates one of the world's deadliest prisons in order to save them. But when the extraction gets hot, and the gangster dies in the heat of battle, his equally ruthless brother tracks down Rake and his team to Sydney, in order to get revenge.",
"vote_average": "7.9"
},
{
"title": "The Super Mario Bros. Movie",
"genre": [
"Animation",
"Family",
"Adventure",
"Fantasy",
"Comedy"
],
"overview": "While working underground to fix a water main, Brooklyn plumbers\u2014and brothers\u2014Mario and Luigi are transported down a mysterious pipe and wander into a magical new world. But when the brothers are separated, Mario embarks on an epic quest to find Luigi.",
"vote_average": "7.8"
},
{
"title": "Spider-Man: Across the Spider-Verse",
"genre": [
"Action",
"Adventure",
"Animation",
"Science Fiction"
],
"overview": "After reuniting with Gwen Stacy, Brooklyn\u2019s full-time, friendly neighborhood Spider-Man is catapulted across the Multiverse, where he encounters the Spider Society, a team of Spider-People charged with protecting the Multiverse\u2019s very existence. But when the heroes clash on how to handle a new threat, Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.",
"vote_average": "8.7"
},
{
"title": "Transformers: Rise of the Beasts",
"genre": [
"Action",
"Adventure",
"Science Fiction"
],
"overview": "When a new threat capable of destroying the entire planet emerges, Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance, humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.",
"vote_average": "7.3"
},
{
"title": "Hypnotic",
"genre": [
"Mystery",
"Thriller",
"Science Fiction"
],
"overview": "A detective becomes entangled in a mystery involving his missing daughter and a secret government program while investigating a string of reality-bending crimes.",
"vote_average": "6.4"
},
{
"title": "The Flash",
"genre": [
"Science Fiction",
"Action",
"Adventure"
],
"overview": "When his attempt to save his family inadvertently alters the future, Barry Allen becomes trapped in a reality in which General Zod has returned and there are no Super Heroes to turn to. In order to save the world that he is in and return to the future that he knows, Barry's only hope is to race for his life. But will making the ultimate sacrifice be enough to reset the universe?",
"vote_average": "6.8"
},
{
"title": "Flamin' Hot",
"genre": [
"Comedy",
"Drama"
],
"overview": "The inspiring true story of Richard Monta\u00f1ez, the Frito Lay janitor who channeled his Mexican American heritage and upbringing to turn the iconic Flamin\u2019 Hot Cheetos into a snack that disrupted the food industry and became a global pop culture phenomenon.",
"vote_average": "8.2"
},
{
"title": "Ambush",
"genre": [
"Action",
"War",
"Thriller"
],
"overview": "When a small outpost is ambushed, a US Army squad must take the battle below ground on a high-stakes mission in a new type of warfare the likes of which they have never seen.",
"vote_average": "6.1"
},
{
"title": "Avatar: The Way of Water",
"genre": [
"Science Fiction",
"Adventure",
"Action"
],
"overview": "Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.",
"vote_average": "7.7"
},
{
"title": "Guardians of the Galaxy Vol. 3",
"genre": [
"Science Fiction",
"Adventure",
"Action"
],
"overview": "Peter Quill, still reeling from the loss of Gamora, must rally his team around him to defend the universe along with protecting one of their own. A mission that, if not completed successfully, could quite possibly lead to the end of the Guardians as we know them.",
"vote_average": "8.1"
},
{
"title": "The Black Demon",
"genre": [
"Horror",
"Thriller"
],
"overview": "Oilman Paul Sturges' idyllic family vacation turns into a nightmare when they encounter a ferocious megalodon shark that will stop at nothing to protect its territory. Stranded and under constant attack, Paul and his family must somehow find a way to get his family back to shore alive before it strikes again in this epic battle between humans and nature.",
"vote_average": "6.3"
},
{
"title": "The Little Mermaid",
"genre": [
"Adventure",
"Family",
"Fantasy",
"Romance"
],
"overview": "The youngest of King Triton\u2019s daughters, and the most defiant, Ariel longs to find out more about the world beyond the sea, and while visiting the surface, falls for the dashing Prince Eric. With mermaids forbidden to interact with humans, Ariel makes a deal with the evil sea witch, Ursula, which gives her a chance to experience life on land, but ultimately places her life \u2013 and her father\u2019s crown \u2013 in jeopardy.",
"vote_average": "6.2"
},
{
"title": "My Fault",
"genre": [
"Romance",
"Drama"
],
"overview": "Noah must leave her city, boyfriend, and friends to move into William Leister's mansion, the flashy and wealthy husband of her mother Rafaela. As a proud and independent 17 year old, Noah resists living in a mansion surrounded by luxury. However, it is there where she meets Nick, her new stepbrother, and the clash of their strong personalities becomes evident from the very beginning.",
"vote_average": "8.4"
},
{
"title": "Guy Ritchie's The Covenant",
"genre": [
"War",
"Action",
"Thriller"
],
"overview": "During the war in Afghanistan, a local interpreter risks his own life to carry an injured sergeant across miles of grueling terrain.",
"vote_average": "7.6"
},
{
"title": "Evil Dead Rise",
"genre": [
"Thriller",
"Horror"
],
"overview": "A reunion between two estranged sisters gets cut short by the rise of flesh-possessing demons, thrusting them into a primal battle for survival as they face the most nightmarish version of family imaginable.",
"vote_average": "7.1"
},
{
"title": "Black Clover: Sword of the Wizard King",
"genre": [
"Animation",
"Fantasy",
"Action",
"Adventure"
],
"overview": "As a lionhearted boy who can\u2019t wield magic strives for the title of Wizard King, four banished Wizard Kings of yore return to crush the Clover Kingdom.",
"vote_average": "8.8"
},
{
"title": "Ant-Man and the Wasp: Quantumania",
"genre": [
"Action",
"Adventure",
"Science Fiction"
],
"overview": "Super-Hero partners Scott Lang and Hope van Dyne, along with with Hope's parents Janet van Dyne and Hank Pym, and Scott's daughter Cassie Lang, find themselves exploring the Quantum Realm, interacting with strange new creatures and embarking on an adventure that will push them beyond the limits of what they thought possible.",
"vote_average": "6.5"
},
{
"title": "Sisu",
"genre": [
"Action",
"War"
],
"overview": "Deep in the wilderness of Lapland, Aatami Korpi is searching for gold but after he stumbles upon Nazi patrol, a breathtaking and gold-hungry chase through the destroyed and mined Lapland wilderness begins.",
"vote_average": "7.4"
},
{
"title": "Tayuan",
"genre": [
"Drama"
],
"overview": "Ella, an events project manager, usually takes a private transportation service. However, she is forced to take a bus, where bus conductor Rico becomes aroused when her body gets pressed into him due to the thick crowd. This encounter deeply affects Ella, and from that night on, she starts pursuing Rico. Even after discovering that Rico is already married with a daughter, Ella doesn\u2019t care at all and she\u2019ll do anything to make him want her just as much.",
"vote_average": "10.0"
},
{
"title": "Operation Seawolf",
"genre": [
"War",
"Thriller",
"Action",
"Adventure",
"Mystery",
"Science Fiction",
"Drama"
],
"overview": "During the last days of World War II, Germany, desperate for any last grasp to defeat the allied powers, looked to their last remaining weapons and soldiers. The German Navy and the last remaining U-Boats were formed together for one desperate last mission \u2013 a mission to attack the United States Homeland, known as Operation Seawolf. Captain Hans Kessler, a grizzled submarine commander from both World Wars, is called into service to make one mission a success and help turn the tide of the war.",
"vote_average": "6.1"
},
{
"title": "Accident Man: Hitman's Holiday",
"genre": [
"Action",
"Comedy",
"Crime"
],
"overview": "The Accident Man is back, and this time he must best the top assassins in the world to protect the ungrateful son of a mafia boss, save the life of his only friend and rekindle his relationship with his maniacal father figure.",
"vote_average": "6.5"
},
{
"title": "Puss in Boots: The Last Wish",
"genre": [
"Animation",
"Family",
"Fantasy",
"Adventure",
"Comedy"
],
"overview": "Puss in Boots discovers that his passion for adventure has taken its toll: He has burned through eight of his nine lives, leaving him with only one life left. Puss sets out on an epic journey to find the mythical Last Wish and restore his nine lives.",
"vote_average": "8.3"
},
{
"title": "Elemental",
"genre": [
"Animation",
"Comedy",
"Family",
"Fantasy",
"Romance"
],
"overview": "In a city where fire, water, land and air residents live together, a fiery young woman and a go-with-the-flow guy will discover something elemental: how much they have in common.",
"vote_average": "7.5"
},
{
"title": "Shazam! Fury of the Gods",
"genre": [
"Comedy",
"Action",
"Fantasy"
],
"overview": "Billy Batson and his foster siblings, who transform into superheroes by saying \"Shazam!\", are forced to get back into action and fight the Daughters of Atlas, who they must stop from using a weapon that could destroy the world.",
"vote_average": "6.7"
},
{
"title": "Mother's Day",
"genre": [
"Action",
"Thriller",
"Drama"
],
"overview": "Nina, a former NATO special operations agent living in hiding, has to use all her deadly skills to rescue her son who has been kidnapped by ruthless gangsters. Finding Max is a double opportunity for her. A chance to feel the adrenaline rush again, and an opportunity to get back into the life of the son she had to abandon years ago.",
"vote_average": "5.8"
},
{
"title": "The Pope's Exorcist",
"genre": [
"Horror",
"Thriller"
],
"overview": "Father Gabriele Amorth, Chief Exorcist of the Vatican, investigates a young boy's terrifying possession and ends up uncovering a centuries-old conspiracy the Vatican has desperately tried to keep hidden.",
"vote_average": "7.2"
},
{
"title": "Spider-Man: Into the Spider-Verse",
"genre": [
"Action",
"Adventure",
"Animation",
"Science Fiction"
],
"overview": "Miles Morales is juggling his life between being a high school student and being a spider-man. When Wilson \"Kingpin\" Fisk uses a super collider, others from across the Spider-Verse are transported to this dimension.",
"vote_average": "8.4"
},
{
"title": "Blood & Gold",
"genre": [
"Action",
"Drama",
"War"
],
"overview": "At the end of World War II, a German soldier is looking for his daughter while an SS troop is looking for a Jewish treasure.",
"vote_average": "6.6"
},
{
"title": "Creed III",
"genre": [
"Drama",
"Action"
],
"overview": "After dominating the boxing world, Adonis Creed has been thriving in both his career and family life. When a childhood friend and former boxing prodigy, Damian Anderson, resurfaces after serving a long sentence in prison, he is eager to prove that he deserves his shot in the ring. The face-off between former friends is more than just a fight. To settle the score, Adonis must put his future on the line to battle Damian \u2014 a fighter who has nothing to lose.",
"vote_average": "7.2"
},
{
"title": "The Three Musketeers",
"genre": [
"Action",
"Adventure"
],
"overview": "France is in turmoil and a new, naive King finds himself manipulated by the evil Cardinal Richelieu. With a corrupt commander of the royal guard by his side the Cardinal employs the expertise of the devious and wicked Milady de Winter in a plot to bring down the monarchy and drag the country into war. As France burns the Cardinal will take control. All that stands between them and victory are the remnants of an elite group who wore loyalty to crown and country. Above all else The Musketeers will stand against the odds to foil this deadly plot.",
"vote_average": "5.3"
},
{
"title": "Extraction",
"genre": [
"Action",
"Thriller"
],
"overview": "Tyler Rake, a fearless mercenary who offers his services on the black market, embarks on a dangerous mission when he is hired to rescue the kidnapped son of a Mumbai crime lord.",
"vote_average": "7.3"
},
{
"title": "Project Wolf Hunting",
"genre": [
"Action",
"Thriller",
"Horror"
],
"overview": "While under heavily armed guard, the dangerous convicts aboard a cargo ship unite in a coordinated escape attempt that soon escalates into a bloody, all-out riot. But as the fugitives continue their brutal campaign of terror, they soon discover that not even the most vicious among them is safe from the horror they unknowingly unleashed from the darkness below deck.",
"vote_average": "6.4"
},
{
"title": "The Tank",
"genre": [
"Horror",
"Thriller"
],
"overview": "In 1978 Oregon, Ben and Jules inherit an abandoned coastal property from Ben's late mother, who's never mentioned it. The untouched house has been kept a secret for 40 years and comes with a beautiful private cove and beach. Jules searches for answers while Ben unwittingly awakens a fiercely protective creature.",
"vote_average": "5.1"
},
{
"title": "The Mother",
"genre": [
"Action",
"Thriller"
],
"overview": "A deadly female assassin comes out of hiding to protect the daughter that she gave up years before, while on the run from dangerous men.",
"vote_average": "6.8"
},
{
"title": "The Mount 2",
"genre": [
"Horror"
],
"overview": "A year after the incident at the Mount, the police are still investigating the murders of Philomena and Caroline. The Mount has been cordoned off by the police. However, on Halloween night, a group of teenagers break in. They plan on holding a wedding between friends, conducted by a rather odd character, however, little did they know some unexpected guests would show up to crash the party.",
"vote_average": "4.5"
},
{
"title": "Los bastardos",
"genre": [
"Action",
"Thriller",
"Crime",
"Drama"
],
"overview": "",
"vote_average": "7.0"
},
{
"title": "Ghosted",
"genre": [
"Action",
"Comedy",
"Romance"
],
"overview": "Salt-of-the-earth Cole falls head over heels for enigmatic Sadie \u2014 but then makes the shocking discovery that she\u2019s a secret agent. Before they can decide on a second date, Cole and Sadie are swept away on an international adventure to save the world.",
"vote_average": "7.1"
},
{
"title": "Spider-Man: No Way Home",
"genre": [
"Action",
"Adventure",
"Science Fiction"
],
"overview": "Peter Parker is unmasked and no longer able to separate his normal life from the high-stakes of being a super-hero. When he asks for help from Doctor Strange the stakes become even more dangerous, forcing him to discover what it truly means to be Spider-Man.",
"vote_average": "8.0"
},
{
"title": "Crater",
"genre": [
"Science Fiction",
"Action",
"Adventure",
"Family"
],
"overview": "After the death of his father, a boy growing up on a lunar mining colony takes a trip to explore a legendary crater, along with his four best friends, prior to being permanently relocated to another planet.",
"vote_average": "6.6"
},
{
"title": "One Day as a Lion",
"genre": [
"Action",
"Thriller",
"Crime"
],
"overview": "Jackie Powers will stop at nothing to prevent his son from following him into a life of crime. With his mob employer in pursuit, a chance encounter at a roadside diner charts a new path.",
"vote_average": "5.8"
},
{
"title": "Infinity Pool",
"genre": [
"Horror",
"Science Fiction",
"Thriller"
],
"overview": "While staying at an isolated island resort, James and Em are enjoying a perfect vacation of pristine beaches, exceptional staff, and soaking up the sun. But guided by the seductive and mysterious Gabi, they venture outside the resort grounds and find themselves in a culture filled with violence, hedonism, and untold horror. A tragic accident leaves them facing a zero tolerance policy for crime: either you'll be executed, or, if you\u2019re rich enough to afford it, you can watch yourself die instead.",
"vote_average": "6.3"
},
{
"title": "Drunken Fist",
"genre": [
"Action"
],
"overview": "In the last years of the Qing Dynasty, Su Qier, the ten tigers of Guangdong, fought a decisive battle between the Ax Gang and the gangsters, and finally founded a school to spread martial arts.",
"vote_average": "4.8"
},
{
"title": "Extras For Chasing The Dragon",
"genre": [
"Action",
"Crime"
],
"overview": "Legendary heroes, lame-rich rises, dragons fight tigers, wealth and danger",
"vote_average": "3.0"
},
{
"title": "The Wandering Earth II",
"genre": [
"Science Fiction",
"Action",
"Drama"
],
"overview": "Humans built huge engines on the surface of the earth to find a new home. But the road to the universe is perilous. In order to save earth, young people once again have to step forward to start a race against time for life and death.",
"vote_average": "7.2"
},
{
"title": "Scream VI",
"genre": [
"Horror",
"Mystery",
"Thriller"
],
"overview": "Following the latest Ghostface killings, the four survivors leave Woodsboro behind and start a fresh chapter.",
"vote_average": "7.3"
},
{
"title": "Sword Art Online the Movie -Progressive- Scherzo of Deep Night",
"genre": [
"Animation",
"Action",
"Fantasy",
"Science Fiction"
],
"overview": "Over a month has passed since 10,000 users were trapped inside the \"Sword Art Online\" world. Asuna, who cleared the first floor of the floating iron castle of Aincrad, joined up with Kirito and continued her journey to reach the top floor. With the support of female Information Broker Argo, clearing the floors seemed to be progressing smoothly, but conflict erupts between two major guilds who should be working together \u2013 the top player groups ALS (the Aincrad Liberation Squad) and DKB (the Dragon Knights Brigade). And meanwhile, behind the scenes exists a mysterious figure pulling the strings\u2026",
"vote_average": "7.7"
},
{
"title": "Fist of the Condor",
"genre": [
"Action"
],
"overview": "Upon the empire\u2019s fall to invading conquistadors, the 16th-century Incas quickly concealed a sacred manual containing the secrets behind their deadly fighting technique. But after centuries of careful safeguarding, the manual is again at risk of falling into the wrong hands, leaving its rightful guardian to battle the world\u2019s greatest assassins to protect the ancient secrets within.",
"vote_average": "7.4"
},
{
"title": "The Best Man",
"genre": [
"Action",
"Thriller"
],
"overview": "Mercenaries seize control of a remote resort hotel during a wedding and it's up to the best man, the groom and their drunken best friend to stop the terrorists and save the hostages.",
"vote_average": "6.0"
},
{
"title": "Black Panther: Wakanda Forever",
"genre": [
"Action",
"Adventure",
"Science Fiction"
],
"overview": "Queen Ramonda, Shuri, M\u2019Baku, Okoye and the Dora Milaje fight to protect their nation from intervening world powers in the wake of King T\u2019Challa\u2019s death. As the Wakandans strive to embrace their next chapter, the heroes must band together with the help of War Dog Nakia and Everett Ross and forge a new path for the kingdom of Wakanda.",
"vote_average": "7.2"
},
{
"title": "A Deadly Mistake",
"genre": [
"TV Movie",
"Thriller"
],
"overview": "After a car accident leaves her boyfriend in a coma, April\u2019s panic attacks return and make her life a living hell. However, once she accepts the kindness of a stranger trying to help her, she realizes that he might not be the stranger she thought he is.",
"vote_average": "6.4"
},
{
"title": "Jagged Mind",
"genre": [
"Horror"
],
"overview": "When Billie finds herself reliving different versions of the same first date, she must break out of a series of loops created by her manipulative ex-girlfriend.",
"vote_average": "5.7"
},
{
"title": "Black Adam",
"genre": [
"Action",
"Adventure",
"Science Fiction",
"Fantasy"
],
"overview": "Nearly 5,000 years after he was bestowed with the almighty powers of the Egyptian gods\u2014and imprisoned just as quickly\u2014Black Adam is freed from his earthly tomb, ready to unleash his unique form of justice on the modern world.",
"vote_average": "7.1"
},
{
"title": "Peter Pan & Wendy",
"genre": [
"Family",
"Fantasy",
"Action",
"Adventure"
],
"overview": "Wendy Darling, a young girl afraid to leave her childhood home behind, meets Peter Pan, a boy who refuses to grow up. Alongside her brothers and a tiny fairy, Tinker Bell, she travels with Peter to the magical world of Neverland. There, she encounters an evil pirate captain, Captain Hook, and embarks on a thrilling adventure that will change her life forever.",
"vote_average": "5.7"
},
{
"title": "Dungeons & Dragons: Honor Among Thieves",
"genre": [
"Adventure",
"Fantasy",
"Comedy"
],
"overview": "A charming thief and a band of unlikely adventurers undertake an epic heist to retrieve a lost relic, but things go dangerously awry when they run afoul of the wrong people.",
"vote_average": "7.5"
},
{
"title": "Snag",
"genre": [
"Action",
"Crime",
"Thriller"
],
"overview": "An Australian lone wolf's quiet existence is shattered when he learns that the woman he once loved and thought was dead is alive and held captive by ruthless gangsters. Now, to take on this dangerous criminal organization, he must seek out allies and storm into a world of violence to rescue the love of his life in this gritty, modern day violent fairytale.",
"vote_average": "5.8"
},
{
"title": "The Last Kingdom: Seven Kings Must Die",
"genre": [
"Action",
"Adventure",
"War"
],
"overview": "In the wake of King Edward's death, Uhtred of Bebbanburg and his comrades adventure across a fractured kingdom in the hopes of uniting England at last.",
"vote_average": "7.3"
},
{
"title": "Suzume",
"genre": [
"Animation",
"Drama",
"Adventure",
"Fantasy"
],
"overview": "Suzume, 17, lost her mother as a little girl. On her way to school, she meets a mysterious young man. But her curiosity unleashes a calamity that endangers the entire population of Japan, and so Suzume embarks on a journey to set things right.",
"vote_average": "7.9"
},
{
"title": "Tin & Tina",
"genre": [
"Horror",
"Thriller",
"Mystery"
],
"overview": "After a traumatic miscarriage, Lola and her husband Adolfo adopt Tin and Tina, a lovely albino brother and sister with an ultra-catholic education that makes them interpret Holy Bible verbatim.",
"vote_average": "6.1"
},
{
"title": "Ancient Chinese Whorehouse",
"genre": [
"History",
"Comedy"
],
"overview": "Madam Five and carpenter Kong work together managing a famous whorehouse. Kong's apprentice Yat fails to get along with Ching due to a misunderstanding between them. Luckily, the appearance of a murderous rapist helps to resolve the misunderstanding between them. It also unites the group to defend against the sex maniac and to rebuild Madam Five's business at a new location.",
"vote_average": "5.5"
},
{
"title": "Cocaine Bear",
"genre": [
"Thriller",
"Comedy",
"Crime"
],
"overview": "Inspired by a true story, an oddball group of cops, criminals, tourists and teens converge in a Georgia forest where a 500-pound black bear goes on a murderous rampage after unintentionally ingesting cocaine.",
"vote_average": "6.3"
},
{
"title": "Beau Is Afraid",
"genre": [
"Comedy",
"Adventure",
"Fantasy"
],
"overview": "A paranoid man embarks on an epic odyssey to get home to his mother.",
"vote_average": "7.0"
},
{
"title": "Transformers: Age of Extinction",
"genre": [
"Science Fiction",
"Action",
"Adventure"
],
"overview": "As humanity picks up the pieces, following the conclusion of \"Transformers: Dark of the Moon,\" Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.",
"vote_average": "5.9"
},
{
"title": "Fear the Invisible Man",
"genre": [
"Thriller",
"Horror",
"Science Fiction"
],
"overview": "A young British widow shelters an old medical school colleague, a man who has somehow turned himself invisible. As his isolation grows and his sanity frays, he schemes to create a reign of wanton murder and terror across the city.",
"vote_average": "7.8"
},
{
"title": "Murder Mystery 2",
"genre": [
"Comedy",
"Crime"
],
"overview": "After starting their own detective agency, Nick and Audrey Spitz land a career-making case when their billionaire pal is kidnapped from his wedding.",
"vote_average": "6.6"
},
{
"title": "AKA",
"genre": [
"Thriller",
"Action",
"Crime"
],
"overview": "A steely special ops agent finds his morality put to the test when he infiltrates a crime syndicate and unexpectedly bonds with the boss' young son.",
"vote_average": "7.1"
},
{
"title": "Kandahar",
"genre": [
"Action",
"Thriller"
],
"overview": "After his mission is exposed, an undercover CIA operative stuck deep in hostile territory in Afghanistan must fight his way out, alongside his Afghan translator, to an extraction point in Kandahar, all whilst avoiding elite enemy forces and foreign spies tasked with hunting them down.",
"vote_average": "5.0"
},
{
"title": "Island of the Dolls",
"genre": [
"Horror"
],
"overview": "A group of people go to the legendary Island of the Dolls to learn the deadly truth.",
"vote_average": "5.2"
},
{
"title": "Mummies",
"genre": [
"Animation",
"Comedy",
"Family",
"Adventure",
"Fantasy"
],
"overview": "Through a series of unfortunate events, three mummies end up in present-day London and embark on a wacky and hilarious journey in search of an old ring belonging to the Royal Family, stolen by ambitious archaeologist Lord Carnaby.",
"vote_average": "7.2"
},
{
"title": "Eternal 831",
"genre": [
"Animation",
"Drama",
"Adventure",
"Science Fiction"
],
"overview": "In the present day, the world is in turmoil due to an \"unprecedented disaster.\" A young man living in Tokyo, Suzushir\u014d, has a secret he cannot tell anyone. That secret is that he can stop the time around him despite his thoughts. One day, he meets a girl named Nazuna who has the same \"power\". When he learns that she is being used in a crime, he impulsively reaches out to help her.",
"vote_average": "3.3"
},
{
"title": "Bad Luck Banging or Loony Porn",
"genre": [
"Comedy"
],
"overview": "Emi, a school teacher, finds her career and reputation under threat after a personal sex tape is leaked on the Internet. Forced to meet the parents demanding her dismissal, Emi refuses to surrender to their pressure.",
"vote_average": "6.6"
},
{
"title": "M3GAN",
"genre": [
"Science Fiction",
"Horror"
],
"overview": "A brilliant toy company roboticist uses artificial intelligence to develop M3GAN, a life-like doll programmed to emotionally bond with her newly orphaned niece. But when the doll's programming works too well, she becomes overprotective of her new friend with terrifying results.",
"vote_average": "7.3"
},
{
"title": "No Hard Feelings",
"genre": [
"Comedy",
"Romance",
"Drama"
],
"overview": "On the brink of losing her childhood home, Maddie discovers an intriguing job listing: wealthy helicopter parents looking for someone to \u201cdate\u201d their introverted 19-year-old son, Percy, before he leaves for college. To her surprise, Maddie soon discovers the awkward Percy is no sure thing.",
"vote_average": "4.9"
},
{
"title": "Graphic Desires",
"genre": [
"Thriller"
],
"overview": "When reclusive Franklin cheats on his partner with a mysterious girl he meets on a dating app, it becomes the start of a deadly obsession.",
"vote_average": "5.1"
},
{
"title": "Plane",
"genre": [
"Action",
"Adventure",
"Thriller"
],
"overview": "After a heroic job of successfully landing his storm-damaged aircraft in a war zone, a fearless pilot finds himself between the agendas of multiple militias planning to take the plane and its passengers hostage.",
"vote_average": "6.9"
},
{
"title": "Beautiful Disaster",
"genre": [
"Romance",
"Drama",
"Comedy"
],
"overview": "Bad-boy Travis is exactly what college freshman Abby needs and wants to avoid. He spends his nights fighting in underground boxing matches, and his days as the ultimate college campus charmer. But Abby wants nothing to do with Travis. Intrigued by Abby\u2019s resistance, Travis offers her a simple bet: if he loses his next fight, he must remain sex-free for a month. If he wins, Abby must live in his apartment for the same amount of time. Either way, Travis has no idea that Abby\u2019s dark past is about to emerge, and he may have finally met his match.",
"vote_average": "6.4"
},
{
"title": "About My Father",
"genre": [
"Comedy"
],
"overview": "Encouraged by his fiancee, a man and his father spend the weekend with her wealthy and exceedingly eccentric family. The gathering soon develops into a culture clash, allowing father and son to discover the true meaning of family.",
"vote_average": "6.0"
},
{
"title": "Avengers: Infinity War",
"genre": [
"Adventure",
"Action",
"Science Fiction"
],
"overview": "As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.",
"vote_average": "8.3"
},
{
"title": "The Sensuous Nurse",
"genre": [
"Comedy"
],
"overview": "Greedy relatives hire a sensual caregiver to hasten the demise of a wealthy count suffering from a heart condition.",
"vote_average": "5.5"
},
{
"title": "Through My Window: Across the Sea",
"genre": [
"Romance",
"Drama"
],
"overview": "After a year of long-distance, Raquel and Ares reunite on a steamy beach trip. Faced with fresh flirtations and insecurities, will their love prevail?",
"vote_average": "10.0"
},
{
"title": "Renfield",
"genre": [
"Comedy",
"Horror",
"Fantasy"
],
"overview": "Having grown sick and tired of his centuries as Dracula's lackey, Renfield finds a new lease on life \u2014 and maybe even redemption \u2014 when he falls for feisty, perennially angry traffic cop Rebecca Quincy.",
"vote_average": "6.8"
},
{
"title": "65",
"genre": [
"Science Fiction",
"Action",
"Adventure",
"Thriller"
],
"overview": "65 million years ago, the only 2 survivors of a spaceship from Somaris that crash-landed on Earth, must fend off dinosaurs to reach the escape vessel in time before an imminent asteroid strike threatens to destroy the planet.",
"vote_average": "6.2"
},
{
"title": "Avatar",
"genre": [
"Action",
"Adventure",
"Fantasy",
"Science Fiction"
],
"overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.",
"vote_average": "7.6"
},
{
"title": "The Whale",
"genre": [
"Drama"
],
"overview": "A reclusive English teacher suffering from severe obesity attempts to reconnect with his estranged teenage daughter for one last chance at redemption.",
"vote_average": "8.0"
},
{
"title": "Thor: Love and Thunder",
"genre": [
"Fantasy",
"Action",
"Comedy"
],
"overview": "After his retirement is interrupted by Gorr the God Butcher, a galactic killer who seeks the extinction of the gods, Thor Odinson enlists the help of King Valkyrie, Korg, and ex-girlfriend Jane Foster, who now wields Mjolnir as the Mighty Thor. Together they embark upon a harrowing cosmic adventure to uncover the mystery of the God Butcher\u2019s vengeance and stop him before it\u2019s too late.",
"vote_average": "6.6"
},
{
"title": "Top Gun: Maverick",
"genre": [
"Action",
"Drama"
],
"overview": "After more than thirty years of service as one of the Navy\u2019s top aviators, and dodging the advancement in rank that would ground him, Pete \u201cMaverick\u201d Mitchell finds himself training a detachment of TOP GUN graduates for a specialized mission the likes of which no living pilot has ever seen.",
"vote_average": "8.3"
},
{
"title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe",
"genre": [
"Adventure",
"Family",
"Fantasy"
],
"overview": "Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion, Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever.",
"vote_average": "7.1"
},
{
"title": "Fall",
"genre": [
"Thriller"
],
"overview": "For best friends Becky and Hunter, life is all about conquering fears and pushing limits. But after they climb 2,000 feet to the top of a remote, abandoned radio tower, they find themselves stranded with no way down. Now Becky and Hunter\u2019s expert climbing skills will be put to the ultimate test as they desperately fight to survive the elements, a lack of supplies, and vertigo-inducing heights",
"vote_average": "7.3"
},
{
"title": "Attack on Titan",
"genre": [
"Action",
"Science Fiction"
],
"overview": "As viable water is depleted on Earth, a mission is sent to Saturn's moon Titan to retrieve sustainable H2O reserves from its alien inhabitants. But just as the humans acquire the precious resource, they are attacked by Titan rebels, who don't trust that the Earthlings will leave in peace.",
"vote_average": "6.0"
},
{
"title": "Sonic the Hedgehog 2",
"genre": [
"Action",
"Adventure",
"Family",
"Comedy"
],
"overview": "After settling in Green Hills, Sonic is eager to prove he has what it takes to be a true hero. His test comes when Dr. Robotnik returns, this time with a new partner, Knuckles, in search for an emerald that has the power to destroy civilizations. Sonic teams up with his own sidekick, Tails, and together they embark on a globe-trotting journey to find the emerald before it falls into the wrong hands.",
"vote_average": "7.6"
},
{
"title": "You Do You",
"genre": [
"Comedy",
"Romance"
],
"overview": "Merve chose the bohemian life, but it didn't choose her back. Faced with eviction, she starts a new job and stumbles into a spicy setup with her boss.",
"vote_average": "6.5"
},
{
"title": "Jurassic World Dominion",
"genre": [
"Adventure",
"Action",
"Science Fiction"
],
"overview": "Four years after Isla Nublar was destroyed, dinosaurs now live\u2014and hunt\u2014alongside humans all over the world. This fragile balance will reshape the future and determine, once and for all, whether human beings are to remain the apex predators ona planet they now share with history's most fearsome creatures.",
"vote_average": "6.8"
},
{
"title": "The Ghosts of Monday",
"genre": [
"Horror",
"Thriller"
],
"overview": "A group of US filmmakers travel to Cyprus to film a documentary in the tragically famous Hotel Gula - a once popular resort where more than 100 people died in mysterious circumstances. What begins as just another day at the office will eventually turn into a terrifying journey into the unknown.",
"vote_average": "4.9"
},
{
"title": "The Batman",
"genre": [
"Crime",
"Mystery",
"Thriller"
],
"overview": "In his second year of fighting crime, Batman uncovers corruption in Gotham City that connects to his own family while facing a serial killer known as the Riddler.",
"vote_average": "7.7"
},
{
"title": "Barbie",
"genre": [
"Comedy"
],
"overview": "Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.",
"vote_average": "0.0"
},
{
"title": "Battle for Saipan",
"genre": [
"War",
"History",
"Action"
],
"overview": "On July 7, 1944, a U.S. Army hospital on the remote island of Saipan is overrun by Japanese forces during a relentless attack. Outgunned and surrounded by the enemy, a lone medic puts it all on the line to lead a band of wounded soldiers to safety.",
"vote_average": "5.8"
},
{
"title": "The Swan Princess: A Fairytale Is Born",
"genre": [
"Family",
"Animation",
"Fantasy"
],
"overview": "Before becoming queen, Uberta lived a humble life with her husband Maximillian when she is suddenly thrust into royalty. Through triumph and tragedy, she learns the lessons needed to become a beloved Queen, all while raising the next generation of rulers. When it's time for Uberta to pass the royal scepter to Odette and Derek, rival Queen Wixom has plans of her own to ruin the kingdom's greatest coronation.",
"vote_average": "7.2"
},
{
"title": "Winnie the Pooh: Blood and Honey",
"genre": [
"Horror",
"Thriller"
],
"overview": "Christopher Robin is headed off to college and he has abandoned his old friends, Pooh and Piglet, which then leads to the duo embracing their inner monsters.",
"vote_average": "5.7"
},
{
"title": "Lullaby",
"genre": [
"Horror"
],
"overview": "A new mother discovers a lullaby in an ancient book and soon regards the song as a blessing. But her world transforms into a nightmare when the lullaby brings forth the ancient demon Lilith.",
"vote_average": "5.7"
},
{
"title": "Chupa",
"genre": [
"Adventure",
"Fantasy",
"Family"
],
"overview": "While visiting family in Mexico, a lonely boy befriends a mythical creature hiding on his grandfather's ranch and embarks on the adventure of a lifetime.",
"vote_average": "6.5"
},
{
"title": "The Little Mermaid",
"genre": [
"Animation",
"Family",
"Fantasy"
],
"overview": "This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.",
"vote_average": "7.4"
},
{
"title": "Prey",
"genre": [
"Thriller",
"Action",
"Science Fiction"