-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
1926 lines (1926 loc) · 68.6 KB
/
db.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
{
"movies": [
{
"vote_count": 2,
"id": 490641,
"video": false,
"vote_average": 10,
"title": "Monsters and Mysteries in Alaska",
"popularity": 0.6,
"poster_path": null,
"original_language": "en",
"original_title": "Monsters and Mysteries in Alaska",
"genre_ids": [
99
],
"backdrop_path": null,
"adult": false,
"overview": "Alaska – 90,000 square miles of wilderness. Could its uninhabited frontier be hiding monsters and mysteries?",
"year": "2010"
},
{
"vote_count": 2,
"id": 369100,
"video": false,
"vote_average": 10,
"title": "Sekirei Pure Engagement Special",
"popularity": 0.654,
"poster_path": "/kc1MNlhXKdlpxOFROQx5Jj7jGrW.jpg",
"original_language": "en",
"original_title": "Sekirei Pure Engagement Special",
"genre_ids": [],
"backdrop_path": "/hYGvdBTIfz7u2QEqIePd81nABgK.jpg",
"adult": false,
"overview": "Episode 0 \"Kanwanidai (two subepisodes: Sekirei Shindan & Sekirei Yoka)\" of Sekirei ~Pure Engagement~ released on the first DVD and BD volume.",
"year": "2010"
},
{
"vote_count": 2,
"id": 341658,
"video": false,
"vote_average": 10,
"title": "Il rumore della notte ( The noise of the night )",
"popularity": 0.6,
"poster_path": null,
"original_language": "en",
"original_title": "Il rumore della notte ( The noise of the night )",
"genre_ids": [],
"backdrop_path": null,
"adult": false,
"overview": "When the sound of silence hurts ..",
"year": "2010"
},
{
"vote_count": 2,
"id": 313809,
"video": false,
"vote_average": 10,
"title": "Five",
"popularity": 0.6,
"poster_path": "/mx04b5KgrfzR9rQr0SG1ziZMKaG.jpg",
"original_language": "es",
"original_title": "Cinco",
"genre_ids": [
10749,
18
],
"backdrop_path": null,
"adult": false,
"overview": "Set on a hot summer day, when clothes are few in number and sex is seemingly on the mind of almost everyone present, this short film tells the story of Walter; a young man infatuated with his sister's boyfriend and a teenager crush that is set to take a new direction when he overhears his sister remark that object of desire Platero would \"bang anything.\" But will he?",
"year": "2010"
},
{
"vote_count": 2,
"id": 153331,
"video": false,
"vote_average": 10,
"title": "Primary!",
"popularity": 0.6,
"poster_path": "/9mcHXavUM2gksVZRHCe1Y0p8cUV.jpg",
"original_language": "es",
"original_title": "¡Primaria!",
"genre_ids": [
35
],
"backdrop_path": "/64aUtNvWZWbaNvx0Y2aq2SwNeLt.jpg",
"adult": false,
"overview": "This explosive celebration of children's creativity follows the lives of students and their teachers in a peculiar yet somewhat recognizable primary school. When Jose Maria, more apt at lecturing Fine Arts at University than controlling a primary classroom, fills in his new post as art teacher, chaos seems on the verge of unleashing itself. However, the path that his young and infinitely imaginative little students take him through shows him there more than little he can learn form them, and a new life to discover...",
"year": "2010"
},
{
"vote_count": 2,
"id": 138481,
"video": false,
"vote_average": 10,
"title": "Displaced",
"popularity": 1.17,
"poster_path": "/oGfgUHyD20y39MevPD8FVKhkHZQ.jpg",
"original_language": "en",
"original_title": "Displaced",
"genre_ids": [],
"backdrop_path": "/oCVAa2ypaJOl2gCnkNzOGcQfiWm.jpg",
"adult": false,
"overview": "The story of Daniel, an 11 year-old victim of the foster system, and his last chance at finding a family.",
"year": "2010"
},
{
"vote_count": 2,
"id": 132973,
"video": false,
"vote_average": 10,
"title": "Hope for Haiti",
"popularity": 0.676,
"poster_path": "/xXCGeNgOsX35pWO19npIkcE1pBQ.jpg",
"original_language": "en",
"original_title": "Hope for Haiti",
"genre_ids": [],
"backdrop_path": "/2evMbgeqlcGSiU6eQ34DdgFbT4e.jpg",
"adult": false,
"overview": "Telethon concert in support of relief organizations dedicated to assisting victims of the earthquake that struck Haiti on 12 January 2010.",
"year": "2010"
},
{
"vote_count": 2,
"id": 132677,
"video": false,
"vote_average": 10,
"title": "The Specials: 30th Anniversary Tour",
"popularity": 0.6,
"poster_path": "/stalger9eKAB3U2k2h2i8p0EM6a.jpg",
"original_language": "en",
"original_title": "The Specials: 30th Anniversary Tour",
"genre_ids": [],
"backdrop_path": "/200gj2S73xzShicgc3VaY7ltYXQ.jpg",
"adult": false,
"overview": "Filmed at the Wolverhampton Civic Hall in front of an adoring home crowd, the show was the biggest revival story of 2009 and the first time the band had been captured in concert for 28 years. With a 30th Anniversary set packed full of energy and hits, and a set of musicians on top of their game, it's a memorable record of a band who defined an era. The DVD has recently been shortlisted in the best live coverage category in the 2010 UK Music Video Awards.",
"year": "2010"
},
{
"vote_count": 2,
"id": 62665,
"video": false,
"vote_average": 10,
"title": "Cancer: The forbidden cures",
"popularity": 0.6,
"poster_path": "/fdB7s9jvcI0M8YZJY3JgUoOSlqq.jpg",
"original_language": "en",
"original_title": "Cancer: The forbidden cures",
"genre_ids": [
99
],
"backdrop_path": "/yRsVtj6Oa7PucW8VcJZOFx5vYQe.jpg",
"adult": false,
"overview": "Cancer is the only disease that has been defeated dozens of times without anyone knowing it. In the last 100 years, doctors, scientists, and researchers have developed diverse and effective solutions against cancer only to be thwarted by the political and propaganda power of the drug-dominated medical profession. This is the story of Essiac, Hoxsey, Laetrile, Shark Cartilage, Mistletoe, and Bicarbonate of Soda all put together in a stunning overview that leaves no doubt that inexpensive cures for cancer do exist but are systematically blocked by Big Pharma because they come from nature and cannot be patented. Highly informative.",
"year": "2010"
},
{
"vote_count": 2,
"id": 62503,
"video": false,
"vote_average": 10,
"title": "Almost Kings",
"popularity": 0.6,
"poster_path": "/8xHGBaWKTfDZpuiVDMZ3ZfHY9hd.jpg",
"original_language": "en",
"original_title": "Almost Kings",
"genre_ids": [
18
],
"backdrop_path": "/40vbdrQunWgUrgEoXCMNajlUT9I.jpg",
"adult": false,
"overview": "Wanting a closer connection with his older brother, freshman Ted Wheeler seeks initiation into a group called \"The Kings\". But, as the corruption of The Kings is revealed, Ted must expose the ugly truth about the brother he once idolized.",
"year": "2010"
},
{
"vote_count": 2,
"id": 55434,
"video": false,
"vote_average": 10,
"title": "Disney WOW: World Of Wonder",
"popularity": 0.6,
"poster_path": "/mX3XhCqANoI5Sqm5Q8R70r7DXHh.jpg",
"original_language": "en",
"original_title": "Disney WOW: World Of Wonder",
"genre_ids": [],
"backdrop_path": "/m5oFOdpAQGHXGPla1IZ8YXv7q5K.jpg",
"adult": false,
"overview": "The Definitive Home Theater Experience: High Definition Entertainment, Calibration and Demonstration Disc Discover: -Home Theater Basics with Goofy -The Power of Blu-ray...Simple as 1, 2, 3... -Blu-ray Features & Benefits -Split-Screen Showdown: DVD vs. Blu-ray -Tech Talk Made Easy Optimize: -Quickly Optimize Your Home Theater for Maximum Performance -Easy-to-Use Tools for Beginners & Experts -Simple Step-by-Step Instructions -Powerful Advanced Evaluation Tools for Professionals -Hi-Def Shootout and BD-Live Setup Guide Experience: -Your Optimized System Will Blow You Away with Breathtaking Scenes from Your Favorite Disney Films...and More! -Access the Disney BD-Live Network for a Sneak Peek at Upcoming Disney Movies!",
"year": "2010"
},
{
"vote_count": 2,
"id": 50403,
"video": false,
"vote_average": 10,
"title": "2010南非世界杯进球集锦",
"popularity": 0.6,
"poster_path": "/4LXTIpnewGSNl6paZRAjoCQwjHp.jpg",
"original_language": "zh",
"original_title": "2010南非世界杯进球集锦",
"genre_ids": [],
"backdrop_path": "/eSZHsIpKVkaTWxEeuksDcZAG4ZY.jpg",
"adult": false,
"overview": "",
"year": "2010"
},
{
"vote_count": 2,
"id": 50353,
"video": false,
"vote_average": 10,
"title": "Derren Brown: Hero at 30,000 Feet",
"popularity": 0.6,
"poster_path": "/9e2wUq9kO6tuoutCL4zvbTgYmLt.jpg",
"original_language": "en",
"original_title": "Derren Brown: Hero at 30,000 Feet",
"genre_ids": [
99
],
"backdrop_path": "/d9ND0hsFeDpogoQMBppeTiyo4Ih.jpg",
"adult": false,
"overview": "Derren Brown once again creates edge-of-the-seat television as he takes 'average Joes' on an extraordinary psychological journey. In a powerful transformation, which will include an amazing, must-watch finale, Derren releases his subjects from the restraints that they have placed on themselves and allows them the opportunity to fulfil their true potential, opening the door to a new and exciting future.",
"year": "2010"
},
{
"vote_count": 2,
"id": 49744,
"video": false,
"vote_average": 10,
"title": "Stationspiraten",
"popularity": 0.6,
"poster_path": "/xz1D9XqfkHqK39CTmKYaA1dt7jo.jpg",
"original_language": "de",
"original_title": "Stationspiraten",
"genre_ids": [],
"backdrop_path": "/k3qMLsfrW6SmcXimhRLm984ExDM.jpg",
"adult": false,
"overview": "",
"year": "2010"
},
{
"vote_count": 1,
"id": 607701,
"video": false,
"vote_average": 10,
"title": "Shadi Aur Tum Say?",
"popularity": 0.6,
"poster_path": null,
"original_language": "ur",
"original_title": "Shadi Aur Tum Say?",
"genre_ids": [
35,
10770
],
"backdrop_path": null,
"adult": false,
"overview": "Sami and Laila are cousins who unwillingly get tangled in an arranged marriage - on their families persistence. Laila knows about Sami being in love with another girl called Samawi, but she is totally cool with it. The only thing she worries about is her financier running away if she lets go of the chance to make a movie this time. She - along with Sami - devises a plan to do everything possible to somehow make Sami's parents hate her.",
"year": "2010"
},
{
"vote_count": 1,
"id": 604844,
"video": false,
"vote_average": 10,
"title": "Doctor Who: The End of Time - Part Two",
"popularity": 0.6,
"poster_path": "/pbA5PSffP3CNvraBrgTM3Fvq4ak.jpg",
"original_language": "en",
"original_title": "Doctor Who: The End of Time - Part Two",
"genre_ids": [
878,
10770
],
"backdrop_path": "/gisdgMMAJzDBXMfybplOfRjG1dy.jpg",
"adult": false,
"overview": "The Doctor faces the end of his life as The Master rules over Earth. But a far greater threat is reaching through the darkness...",
"year": "2010"
},
{
"vote_count": 1,
"id": 602968,
"video": false,
"vote_average": 10,
"title": "Fairview St.",
"popularity": 0.6,
"poster_path": "/tM1C1onYEdVXH2EHQ7hUvFfJdIT.jpg",
"original_language": "en",
"original_title": "Fairview St.",
"genre_ids": [
18,
80,
18
],
"backdrop_path": null,
"adult": false,
"overview": "Paroled after serving four years in prison for armed robbery, James Winton returns home to his wife and father to make amends. However, when James is implicated in the recent murders of old acquaintances, the police detective who put him away last time is determined to make him pay at any cost.",
"year": "2010"
},
{
"vote_count": 1,
"id": 602751,
"video": false,
"vote_average": 10,
"title": "The Spirit of Isabel",
"popularity": 0.6,
"poster_path": "/ypD2toga5JBmmObZw6p3GyIcNrC.jpg",
"original_language": "en",
"original_title": "The Spirit of Isabel",
"genre_ids": [
18
],
"backdrop_path": null,
"adult": false,
"overview": "Isabel is a tragic story of a of a struggling prostitute searching for hope in the wake of a crashed economy in the seediest sections of Detroit.",
"year": "2010"
},
{
"vote_count": 1,
"id": 597717,
"video": false,
"vote_average": 10,
"title": "The Making of 'Scott Pilgrim vs. the World'",
"popularity": 0.6,
"poster_path": "/eWBFQPSrTlA4Xrv1iF4TdTQniOf.jpg",
"original_language": "en",
"original_title": "The Making of 'Scott Pilgrim vs. the World'",
"genre_ids": [
99
],
"backdrop_path": null,
"adult": false,
"overview": "A hyperkinetic behind the scenes look at the film.",
"year": "2010"
},
{
"vote_count": 1,
"id": 593299,
"video": false,
"vote_average": 10,
"title": "The Mystery of the Nevada Triangle",
"popularity": 0.624,
"poster_path": null,
"original_language": "en",
"original_title": "The Mystery of the Nevada Triangle",
"genre_ids": [
99
],
"backdrop_path": "/ySXomIdVwIO35rYCYMr1fpnh0n3.jpg",
"adult": false,
"overview": "A look at disapearing planes",
"year": "2010"
},
{
"vote_count": 3,
"id": 569571,
"video": false,
"vote_average": 10,
"title": "One Red Nose Day and a Wedding",
"popularity": 1.097,
"poster_path": "/grplMPQkepQEfkBQ2Oa5bZQ2mqa.jpg",
"original_language": "en",
"original_title": "One Red Nose Day and a Wedding",
"genre_ids": [
35,
18,
10770,
10749
],
"backdrop_path": "/6OYPV1L1WagJlAAknbUMs2IHBsO.jpg",
"adult": false,
"overview": "You’re invited to the wedding of the year, as the original cast of Four Weddings and a Funeral reunite in this one-off sequel. Twenty-five years after the events of Four Weddings and a Funeral (1994), Charles, Carrie, Fiona, Tom, David, Matthew, Bernard, Lydia and Father Gerald are back in church. But whose wedding is it - and will there be any more familiar faces?",
"year": "2019"
},
{
"vote_count": 3,
"id": 552095,
"video": false,
"vote_average": 10,
"title": "PAW PATROL: Mighty Pups",
"popularity": 2.372,
"poster_path": "/5swIfDjpN8SiHCnaCzDLQ8R4Ze7.jpg",
"original_language": "en",
"original_title": "PAW PATROL: Mighty Pups",
"genre_ids": [
12,
16,
10751
],
"backdrop_path": "/uhD119fzUuAMValqZMXibCNu2kh.jpg",
"adult": false,
"overview": "In this new short feature from the all-powerful Paw Patrol franchise, our search and rescue dogs are given super-powers after a mysterious meteor lands in Adventure Bay.",
"year": "2019"
},
{
"vote_count": 3,
"id": 541576,
"video": false,
"vote_average": 10,
"title": "Meeting Gorbachev",
"popularity": 4.388,
"poster_path": "/c26Fxzsj39wXVqxeKEUhWuAIlrT.jpg",
"original_language": "en",
"original_title": "Meeting Gorbachev",
"genre_ids": [
99
],
"backdrop_path": "/rza0gAHK8KvsuqVyoSGj3duwP9V.jpg",
"adult": false,
"overview": "Mikhail Gorbachev, former president of the Soviet Union, sits down with filmmaker Werner Herzog to discuss his many achievements. Topics include the talks to reduce nuclear weapons, the reunification of Germany and the dissolution of his country.",
"year": "2019"
},
{
"vote_count": 3,
"id": 505423,
"video": false,
"vote_average": 10,
"title": "Wounds",
"popularity": 5.503,
"poster_path": "/yCzLBCdnRW5Kikyup9jEM910LS.jpg",
"original_language": "en",
"original_title": "Wounds",
"genre_ids": [
27,
18,
9648
],
"backdrop_path": "/mKRwRSO9VhMDamkrwCTmOPo10DP.jpg",
"adult": false,
"overview": "Disturbing and mysterious things begin to happen to a bartender in New Orleans after he picks up a phone left behind at his bar.",
"year": "2019"
},
{
"vote_count": 3,
"id": 423778,
"video": false,
"vote_average": 10,
"title": "The Flower",
"popularity": 0.642,
"poster_path": "/so2QCAjQWkrA336kI18UiuWuXpL.jpg",
"original_language": "es",
"original_title": "La flor",
"genre_ids": [
14,
18
],
"backdrop_path": "/7Wa0HPujezr9YN0Rd4ns2t6G7Cb.jpg",
"adult": false,
"overview": "Almost 10 years in production, 14 hours of film. In six stories, Llinas uses the same four actresses in various ways.",
"year": "2019"
},
{
"vote_count": 2,
"id": 609609,
"video": false,
"vote_average": 10,
"title": "Happy Together",
"popularity": 1.4,
"poster_path": "/k7Mt0fqU61S6xJrGaMJI3u87eG4.jpg",
"original_language": "en",
"original_title": "Happy Together",
"genre_ids": [
28,
35
],
"backdrop_path": null,
"adult": false,
"overview": "An unnamed vigilante breaks into a house where a hostage is being held.",
"year": "2019"
},
{
"vote_count": 2,
"id": 596179,
"video": false,
"vote_average": 10,
"title": "Climate Change: The Facts",
"popularity": 1.96,
"poster_path": "/vsW4Tq4Md1U7CScWi9hivVbKP0s.jpg",
"original_language": "en",
"original_title": "Climate Change: The Facts",
"genre_ids": [
99
],
"backdrop_path": "/7yHrW1ZdAkWIJjaWpb5FyDFsOqz.jpg",
"adult": false,
"overview": "After one of the hottest years on record, Sir David Attenborough looks at the science of climate change and potential solutions to this global threat. Interviews with some of the world’s leading climate scientists explore recent extreme weather conditions such as unprecedented storms and catastrophic wildfires. They also reveal what dangerous levels of climate change could mean for both human populations and the natural world in the future.",
"year": "2019"
},
{
"vote_count": 2,
"id": 595770,
"video": false,
"vote_average": 10,
"title": "BLACKPINK: Coachella",
"popularity": 1.164,
"poster_path": "/4K2yHa8n0hByhBqYpFP5rQaYW2B.jpg",
"original_language": "en",
"original_title": "BLACKPINK: Coachella",
"genre_ids": [
10402
],
"backdrop_path": "/dCwPYay2g52KDoJgdjxaE86pxfv.jpg",
"adult": false,
"overview": "(2019) WEEKEND 1\r Friday, April 12\r 8:00 pm - 9:00 pm",
"year": "2019"
},
{
"vote_count": 2,
"id": 593952,
"video": false,
"vote_average": 10,
"title": "Mr. Pregnant",
"popularity": 0.6,
"poster_path": "/aAvw8nXzBptqiLD43zdeNU85RSV.jpg",
"original_language": "en",
"original_title": "Mr. Pregnant",
"genre_ids": [
35,
18
],
"backdrop_path": "/8i3g02FdkbhjgkZA8attsmRdv9P.jpg",
"adult": false,
"overview": "A short about going CowboyMode.",
"year": "2019"
},
{
"vote_count": 2,
"id": 552400,
"video": false,
"vote_average": 10,
"title": "Who Will Write Our History?",
"popularity": 1.712,
"poster_path": "/u6U35acdDPPgoKEVWUYDdpaYMaH.jpg",
"original_language": "en",
"original_title": "Who Will Write Our History?",
"genre_ids": [
99
],
"backdrop_path": "/sgTuEEGjOWiR2y6o5lnGD6mcEy7.jpg",
"adult": false,
"overview": "Documentary about a group of Jews, who collected and hid a lot of stories and documents about everyday jewish life in the Warsaw Getto.",
"year": "2019"
},
{
"vote_count": 2,
"id": 521154,
"video": false,
"vote_average": 10,
"title": "Confessional",
"popularity": 0.601,
"poster_path": "/gsSGQWk0k60EaKQVl6ao5AsDN9X.jpg",
"original_language": "en",
"original_title": "Confessional",
"genre_ids": [
53
],
"backdrop_path": null,
"adult": false,
"overview": "After two mysterious deaths at a college on the same night, seven students somehow connected receive invitations to a confessional booth hidden on the campus.",
"year": "2019"
},
{
"vote_count": 2,
"id": 408371,
"video": false,
"vote_average": 10,
"title": "Broken",
"popularity": 0.89,
"poster_path": "/a0JJcO8pWjy7q9TyXmuhz99o6nJ.jpg",
"original_language": "en",
"original_title": "Broken",
"genre_ids": [
18,
53
],
"backdrop_path": null,
"adult": false,
"overview": "A young female escapes her past and absconds to England in search of a new life. She takes a job caring for a tetraplegic, but burden of the job stirs up her past. It seems the limits of caring are not always as clear as they should be.",
"year": "2019"
},
{
"vote_count": 1,
"id": 609727,
"video": false,
"vote_average": 10,
"title": "The Fall of 76",
"popularity": 1.4,
"poster_path": "/fQey1Ycc6MJ2YPhgDKPNYUgK8eY.jpg",
"original_language": "en",
"original_title": "The Fall of 76",
"genre_ids": [
99,
35,
36
],
"backdrop_path": null,
"adult": false,
"overview": "A 27 minute documentary of the unbelievable controversies surrounding the game Fallout 76.",
"year": "2019"
},
{
"vote_count": 1,
"id": 609259,
"video": false,
"vote_average": 10,
"title": "Tashkent tram-shark attack",
"popularity": 2.459,
"poster_path": "/3fNevlK2DqGuLKQK5cjRL50HV8S.jpg",
"original_language": "ru",
"original_title": "Нападение трамвая-акулы на Ташкент",
"genre_ids": [
12,
35,
28,
27,
878,
53
],
"backdrop_path": "/f2WkQU5WftszTbPNOTZR6dQLxg5.jpg",
"adult": false,
"overview": "Once a tram was removed from Tashkent. Tram offended. Now he has a chance to get revenge like the evil tram-shark.",
"year": "2019"
},
{
"vote_count": 1,
"id": 608715,
"video": false,
"vote_average": 10,
"title": "Reimagining A Buffalo Landmark",
"popularity": 0.885,
"poster_path": "/lrzvimkeL72qxHN1FaSmjIoztvj.jpg",
"original_language": "en",
"original_title": "Reimagining A Buffalo Landmark",
"genre_ids": [
99,
36,
10770
],
"backdrop_path": "/wF3QVfeZ03wf2BfOG47rKSOMCOt.jpg",
"adult": false,
"overview": "The Richardson Olmsted Campus, a former psychiatric center and National Historic Landmark, is seeing new life as it undergoes restoration and adaptation to a modern use.",
"year": "2019"
},
{
"vote_count": 1,
"id": 608658,
"video": false,
"vote_average": 10,
"title": "Oprah Winfrey Presents: When They See Us Now",
"popularity": 6.58,
"poster_path": "/bz7mqBcxzWBGW12AYKOwwqD2o8W.jpg",
"original_language": "en",
"original_title": "Oprah Winfrey Presents: When They See Us Now",
"genre_ids": [],
"backdrop_path": "/9hJu19KoefXwtjSXuaJe3dnjqzJ.jpg",
"adult": false,
"overview": "Oprah Winfrey talks with the exonerated men once known as the Central Park Five, plus the cast and producers who tell their story in \"When They See Us\".",
"year": "2019"
},
{
"vote_count": 1,
"id": 608124,
"video": false,
"vote_average": 10,
"title": "Chhalawa",
"popularity": 2.5,
"poster_path": "/tdvKqBnxJfXppzlzUxvWiIHSRHu.jpg",
"original_language": "ur",
"original_title": "Chhalawa",
"genre_ids": [
35,
18,
10751
],
"backdrop_path": "/lk3uzVjECwBBMdQZlCFBlKW8QRh.jpg",
"adult": false,
"overview": "Chhalawa revolves around love, relationships and family.",
"year": "2019"
},
{
"vote_count": 1,
"id": 607882,
"video": false,
"vote_average": 10,
"title": "Shaadi Impossible",
"popularity": 1.57,
"poster_path": "/dr1V6X42PzkEr95sOQeWx3bVOQX.jpg",
"original_language": "ur",
"original_title": "Shaadi Impossible",
"genre_ids": [
10749,
35,
10770
],
"backdrop_path": "/9zCfljUPM5F2wdKWEoqA00orMf1.jpg",
"adult": false,
"overview": "It is the story of girl Raina. Her mother is died when she was young and she is raised by her single father and grand-mother. Raina after the completion of studies, doesn't want to get married. As a result of pressure from her family, she keeps some not so easy conditions for the marriage. The family arranged her appointment with Zaid, a well settled guy, whose mother is divorced. Both liked each other. The family settled the relation. After a series of consequences, it appears that marriage is fixed among their single parents Kabir and Mehar and not their childrens.",
"year": "2019"
},
{
"vote_count": 1,
"id": 607782,
"video": false,
"vote_average": 10,
"title": "Limbus",
"popularity": 1.386,
"poster_path": "/kB5DIzRNW6KNTo1deUwFuDq4Kwo.jpg",
"original_language": "en",
"original_title": "Limbus",
"genre_ids": [
18,
10749,
27
],
"backdrop_path": "/uCz6w0JxciwFmqGJ5XW6mPphjVf.jpg",
"adult": false,
"overview": "As Alex struggles with disturbing hallucinations, his wife Vera tries to help, until they both experience their own profound revelations.",
"year": "2019"
},
{
"vote_count": 1,
"id": 607586,
"video": false,
"vote_average": 10,
"title": "Wrong No. 2",
"popularity": 1.576,
"poster_path": "/zrwIpuui3QKnexUdSrrJqaZvOLx.jpg",
"original_language": "ur",
"original_title": "Wrong No. 2",
"genre_ids": [
10749,
35
],
"backdrop_path": "/cG9eAjieIEJuXFGHLaEz1OJz5xk.jpg",
"adult": false,
"overview": "A rich heiress who falls in love with a man who is not as financially stable as herself. When former love interests make an appearance, the new lovers face challenges.",
"year": "2019"
},
{
"vote_count": 5,
"id": 413881,
"video": false,
"vote_average": 10,
"title": "According to Matthew",
"popularity": 4.295,
"poster_path": "/yw1qLqwXQORZqNO5aRLZywYSPBr.jpg",
"original_language": "en",
"original_title": "According to Matthew",
"genre_ids": [
80,
53
],
"backdrop_path": "/5sTXzeEmRbZ66HJ3lj9uO5USgr7.jpg",
"adult": false,
"overview": "A highly respected priest conspires with his mistress to poison both her husband and his own wife.",
"year": "2018"
},
{
"vote_count": 3,
"id": 571679,
"video": false,
"vote_average": 10,
"title": "Now United: Dreams Come True",
"popularity": 0.842,
"poster_path": "/hINGeQe5psODwFzkHIOg0HqmYZa.jpg",
"original_language": "en",
"original_title": "Now United: Dreams Come True",
"genre_ids": [
10402,
99
],
"backdrop_path": null,
"adult": false,
"overview": "See how the group came to be and what it took for each member to be selected into the final group of Now United.",
"year": "2018"
},
{
"vote_count": 3,
"id": 561974,
"video": false,
"vote_average": 10,
"title": "Dino King 3D: Journey to Fire Mountain",
"popularity": 7.573,
"poster_path": "/ybHM7tXJ96sXf86wAq5orGz1xET.jpg",
"original_language": "ko",
"original_title": "점박이 한반도의 공룡 2: 새로운 낙원",
"genre_ids": [
16,
12
],
"backdrop_path": "/gUg3rm2kbnMj2fA7yPQGJ4rap6P.jpg",
"adult": false,
"overview": "Speckles, a ferocious tarbosaurus and his young son junior, mourning the loss of their family in an epic battle, roam the lands in search of food, adventure and peace. Under the watchful eye of his dad, Junior is growing up healthy and strong, but with an overconfidence thanks to his young age. After one encounter results in Junior being kidnapped, Speckles embarks on an adventure to the ends of earth to find his son. Encountering friend and foe, ally and enemy, Speckles will stop at nothing and will take on all corners to save his offspring.",
"year": "2018"
},
{
"vote_count": 3,
"id": 496332,
"video": false,
"vote_average": 10,
"title": "KHATA-Kaash Humse Na Hoti",
"popularity": 1.933,
"poster_path": "/hElu4XTHxbGT2JKMZtrUbvDCpAy.jpg",
"original_language": "hi",
"original_title": "KHATA-Kaash Humse Na Hoti",
"genre_ids": [],
"backdrop_path": null,
"adult": false,
"overview": "An upcoming crime movie starring Shahid Kapoor.",
"year": "2018"
},
{
"vote_count": 3,
"id": 491628,
"video": false,
"vote_average": 10,
"title": "Chanda Mama Door Ke",
"popularity": 0.822,
"poster_path": null,
"original_language": "hi",
"original_title": "Chanda Mama Door Ke",
"genre_ids": [
878,
18
],
"backdrop_path": null,
"adult": false,
"overview": "A biopic about the Indian space programme.",
"year": "2018"
},
{
"vote_count": 2,
"id": 591542,
"video": false,
"vote_average": 10,
"title": "I Smell the Salt",
"popularity": 0.6,
"poster_path": "/6QzZ8T3It0NML8lIwzaK5wBAaby.jpg",
"original_language": "en",
"original_title": "I Smell the Salt",
"genre_ids": [
18
],
"backdrop_path": null,
"adult": false,
"overview": "A young girl discovers a new way to see and experience the world.",
"year": "2018"
},
{
"vote_count": 2,
"id": 568257,
"video": false,
"vote_average": 10,
"title": "Adventure Time: Come Along With Me",
"popularity": 0.6,
"poster_path": "/jPk5BAUmHhetBzz1SCBHhfyNVMJ.jpg",
"original_language": "en",
"original_title": "Adventure Time: Come Along With Me",
"genre_ids": [
14,
35,
16,
12
],
"backdrop_path": "/cB1PE4z51rIVSwg6hIbT7obZ483.jpg",
"adult": false,
"overview": "BMO narrates \"The Great Gum War\" in which Finn, Jake, Marceline, PB and the Candy Kingdom go to war against Gumbald and his army that will determine the fate of Ooo once and for all.",
"year": "2018"
},
{
"vote_count": 2,
"id": 566522,
"video": false,
"vote_average": 10,
"title": "The Emperor's Newest Clothes",
"popularity": 1.627,
"poster_path": "/qLZJ6tKWLuNJ4PXpVEeHDkXXODf.jpg",
"original_language": "en",
"original_title": "The Emperor's Newest Clothes",
"genre_ids": [],
"backdrop_path": "/cJOkDeAbfTc1DBycaqbyI0VbcAO.jpg",
"adult": false,
"overview": "Hans Christian Andersen's classic tale gets a colorful, music-filled makeover in the whimsical special. Filled with bold animation, catchy musical numbers and valuable lessons, this enchanting twist on a beloved tale chronicles the story of an Emperor whose blinding vanity makes him an easy target for two phony tailors.",
"year": "2018"
},
{
"vote_count": 2,
"id": 564296,
"video": false,
"vote_average": 10,
"title": "When Calls the Heart: The Greatest Christmas Blessing",
"popularity": 0.6,
"poster_path": "/jm77yxjjOtgJf3qekvpya1gmGYZ.jpg",
"original_language": "en",
"original_title": "When Calls the Heart: The Greatest Christmas Blessing",
"genre_ids": [],
"backdrop_path": null,
"adult": false,
"overview": "As Christmas approaches in Hope Valley, newly widowed Elizabeth prepares for the birth of her baby and Abigail prepares for the town’s Christmas gathering. Hope Valley must rely on the courage of some of its strongest women, and the Christmas spirit, to guide them to a safe and happy holiday.",
"year": "2018"
},
{
"vote_count": 2,
"id": 560034,
"video": false,
"vote_average": 10,
"title": "Pocketman and Cargoboy",
"popularity": 1.459,
"poster_path": "/8MzviwR6DfdCt0izHbj0DKtKZ1p.jpg",
"original_language": "en",
"original_title": "Pocketman and Cargoboy",
"genre_ids": [
12,
35,
878
],
"backdrop_path": null,
"adult": false,
"overview": "Teenage secret agents must travel to the past and stop an evil doctor from creating a virus that wipes out all life in the future.",
"year": "2018"
},
{
"vote_count": 2,
"id": 559491,
"video": false,
"vote_average": 10,
"title": "Siren's Call",
"popularity": 1.774,
"poster_path": "/uvlVaEqUxelZtnUis7o2gIN9NpY.jpg",
"original_language": "tr",
"original_title": "Son Çıkış",
"genre_ids": [
35
],
"backdrop_path": null,
"adult": false,
"overview": "Welcome to the New Istanbul. A massive concrete jungle feeding on chaos and hypocrisy; it's inhabitants at the end of their tether. Tahsin is a burnt-out architect suffocated by his existence in this very city. One night, he re-encounters an old friend, Siren; a changed woman who now lives on the remote southern coast of Turkey where she works on an organic farm. Instantly enchanted, he decides to follow her down south. He packs his suitcase, bids angry farewells at work and heads for the airport. Yet, little does he know what a tragicomic odyssey awaits him.",
"year": "2018"
},
{
"vote_count": 2,
"id": 549650,
"video": false,
"vote_average": 10,
"title": "Yol Arkadaşım 2",
"popularity": 2.953,
"poster_path": "/3qkO4Brf4E3se8XKpkHkDJSbktR.jpg",
"original_language": "tr",
"original_title": "Yol Arkadaşım 2",
"genre_ids": [
35,
10751
],
"backdrop_path": "/fsknuo6jSK74HUHzKlGi7zkHcff.jpg",
"adult": false,
"overview": "",
"year": "2018"
},
{
"vote_count": 2,
"id": 549550,
"video": false,
"vote_average": 10,
"title": "Brutal",
"popularity": 0.6,
"poster_path": "/uAl6Q47rrPYJvqVzFnKVbAZoOap.jpg",
"original_language": "fr",
"original_title": "Brutal",
"genre_ids": [
27,
28,
14
],
"backdrop_path": null,
"adult": false,
"overview": "",
"year": "2018"
},
{
"vote_count": 2,
"id": 548876,
"video": false,
"vote_average": 10,
"title": "Mother and I",
"popularity": 0.6,
"poster_path": "/zjGC2twdjQl2UM5rM7N4b5GXEfu.jpg",
"original_language": "en",
"original_title": "Mother and I",
"genre_ids": [
53
],
"backdrop_path": null,
"adult": false,
"overview": "A young man uncovers the dark reality of a traumatic event.",
"year": "2018"
},
{
"vote_count": 2,
"id": 548682,
"video": false,
"vote_average": 10,
"title": "No One Would Tell",