-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_movies.json
More file actions
1140 lines (1139 loc) · 67.5 KB
/
list_movies.json
File metadata and controls
1140 lines (1139 loc) · 67.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
// 20201027135414
// https://yts.mx/api/v2/list_movies.json
{
"status": "ok",
"status_message": "Query was successful",
"data": {
"movie_count": 22277,
"limit": 20,
"page_number": 1,
"movies": [
{
"id": 22838,
"url": "https://yts.mx/movies/paranoia-1969",
"imdb_code": "tt0063413",
"title": "Paranoia",
"title_english": "Paranoia",
"title_long": "Paranoia (1969)",
"slug": "paranoia-1969",
"year": 1969,
"rating": 6.1,
"runtime": 97,
"genres": [
"Drama",
"Romance",
"Thriller"
],
"summary": "Kathryn West, a glamorous American widow, arrives in Italy several weeks after the death of her older, extremely wealthy husband. With the help of Brian, her lawyer, Kathryn moves into a luxurious villa and proceeds to lead a lonely, uneventful existence until one day, a handsome young man named Peter Donovan shows up at the front gate, looking for tools so he can fix his sports car. Kathryn lets him stay the night, and the next thing she knows, she's madly making love to him in the shower. Peter eventually moves in, and is soon joined by a free spirit he introduces as Eva, his sister. Kathryn enjoys their company and partying with them - until she begins to suspect that Peter and Eva aren't what they seem to be.",
"description_full": "Kathryn West, a glamorous American widow, arrives in Italy several weeks after the death of her older, extremely wealthy husband. With the help of Brian, her lawyer, Kathryn moves into a luxurious villa and proceeds to lead a lonely, uneventful existence until one day, a handsome young man named Peter Donovan shows up at the front gate, looking for tools so he can fix his sports car. Kathryn lets him stay the night, and the next thing she knows, she's madly making love to him in the shower. Peter eventually moves in, and is soon joined by a free spirit he introduces as Eva, his sister. Kathryn enjoys their company and partying with them - until she begins to suspect that Peter and Eva aren't what they seem to be.",
"synopsis": "Kathryn West, a glamorous American widow, arrives in Italy several weeks after the death of her older, extremely wealthy husband. With the help of Brian, her lawyer, Kathryn moves into a luxurious villa and proceeds to lead a lonely, uneventful existence until one day, a handsome young man named Peter Donovan shows up at the front gate, looking for tools so he can fix his sports car. Kathryn lets him stay the night, and the next thing she knows, she's madly making love to him in the shower. Peter eventually moves in, and is soon joined by a free spirit he introduces as Eva, his sister. Kathryn enjoys their company and partying with them - until she begins to suspect that Peter and Eva aren't what they seem to be.",
"yt_trailer_code": "",
"language": "it",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/paranoia_1969/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/paranoia_1969/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/paranoia_1969/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/paranoia_1969/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/paranoia_1969/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/237C52027EA1C0117889CCC553AF400F8269CC90",
"hash": "237C52027EA1C0117889CCC553AF400F8269CC90",
"quality": "720p",
"type": "bluray",
"seeds": 51,
"peers": 34,
"size": "836.34 MB",
"size_bytes": 876966052,
"date_uploaded": "2020-10-26 19:23:52",
"date_uploaded_unix": 1603736632
},
{
"url": "https://yts.mx/torrent/download/03BBEE40CBF6204EC5FFD15936E9E2259062EE3A",
"hash": "03BBEE40CBF6204EC5FFD15936E9E2259062EE3A",
"quality": "1080p",
"type": "bluray",
"seeds": 45,
"peers": 33,
"size": "1.52 GB",
"size_bytes": 1632087572,
"date_uploaded": "2020-10-26 21:34:57",
"date_uploaded_unix": 1603744497
}
],
"date_uploaded": "2020-10-26 19:23:52",
"date_uploaded_unix": 1603736632
},
{
"id": 22839,
"url": "https://yts.mx/movies/ring-of-bright-water-1969",
"imdb_code": "tt0064893",
"title": "Ring of Bright Water",
"title_english": "Ring of Bright Water",
"title_long": "Ring of Bright Water (1969)",
"slug": "ring-of-bright-water-1969",
"year": 1969,
"rating": 7.2,
"runtime": 107,
"genres": [
"Comedy",
"Drama"
],
"summary": "Whoever said dog is man's best friend never met Mij! Mij is a cute, cuddly pet shop otter who captures the heart of Graham Merill (Bill Travers). It doesn't take Graham long to realize that London is no place to raise a slippery otter. So he takes Mij to live in a ramshackle cottage on the coast of Scotland. Together they set out to explore the curious and magnificent natural wonders that surround their seaside home--from orphaned geese to tooth-less sharks. While Mij spends his days frolicking in the icy cold sea, Graham finds himself falling in love with the beautiful town doctor, Mary (Virginia McKenna). Before long, the three become inseparable friends.",
"description_full": "Whoever said dog is man's best friend never met Mij! Mij is a cute, cuddly pet shop otter who captures the heart of Graham Merill (Bill Travers). It doesn't take Graham long to realize that London is no place to raise a slippery otter. So he takes Mij to live in a ramshackle cottage on the coast of Scotland. Together they set out to explore the curious and magnificent natural wonders that surround their seaside home--from orphaned geese to tooth-less sharks. While Mij spends his days frolicking in the icy cold sea, Graham finds himself falling in love with the beautiful town doctor, Mary (Virginia McKenna). Before long, the three become inseparable friends.",
"synopsis": "Whoever said dog is man's best friend never met Mij! Mij is a cute, cuddly pet shop otter who captures the heart of Graham Merill (Bill Travers). It doesn't take Graham long to realize that London is no place to raise a slippery otter. So he takes Mij to live in a ramshackle cottage on the coast of Scotland. Together they set out to explore the curious and magnificent natural wonders that surround their seaside home--from orphaned geese to tooth-less sharks. While Mij spends his days frolicking in the icy cold sea, Graham finds himself falling in love with the beautiful town doctor, Mary (Virginia McKenna). Before long, the three become inseparable friends.",
"yt_trailer_code": "Cvop3ayFwBA",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/ring_of_bright_water_1969/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/ring_of_bright_water_1969/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/ring_of_bright_water_1969/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/ring_of_bright_water_1969/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/ring_of_bright_water_1969/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/F11B7E629691F26CA30B3D7828684269837483CE",
"hash": "F11B7E629691F26CA30B3D7828684269837483CE",
"quality": "720p",
"type": "bluray",
"seeds": 0,
"peers": 0,
"size": "980.58 MB",
"size_bytes": 1028212654,
"date_uploaded": "2020-10-26 19:04:29",
"date_uploaded_unix": 1603735469
},
{
"url": "https://yts.mx/torrent/download/22CE40674754AFBD45F84C7A2117A66EF8E0D8F9",
"hash": "22CE40674754AFBD45F84C7A2117A66EF8E0D8F9",
"quality": "1080p",
"type": "bluray",
"seeds": 71,
"peers": 42,
"size": "1.78 GB",
"size_bytes": 1911260447,
"date_uploaded": "2020-10-26 22:10:36",
"date_uploaded_unix": 1603746636
}
],
"date_uploaded": "2020-10-26 19:04:29",
"date_uploaded_unix": 1603735469
},
{
"id": 22837,
"url": "https://yts.mx/movies/delectable-you-2017",
"imdb_code": "tt6920616",
"title": "Delectable You",
"title_english": "Delectable You",
"title_long": "Delectable You (2017)",
"slug": "delectable-you-2017",
"year": 2017,
"rating": 6.6,
"runtime": 15,
"genres": [
"Comedy",
"Fantasy",
"Romance"
],
"summary": "Oscar Mongoût, a gourmet cannibal, burns with love for the neighbor in his building, the very vegetal Miss Carrot. This passion seems destined to fail: she is a vegetarian, while he suffers from a total phobia about vegetables. Things take a drastic turn the evening she invites him to dinner.",
"description_full": "Oscar Mongoût, a gourmet cannibal, burns with love for the neighbor in his building, the very vegetal Miss Carrot. This passion seems destined to fail: she is a vegetarian, while he suffers from a total phobia about vegetables. Things take a drastic turn the evening she invites him to dinner.",
"synopsis": "Oscar Mongoût, a gourmet cannibal, burns with love for the neighbor in his building, the very vegetal Miss Carrot. This passion seems destined to fail: she is a vegetarian, while he suffers from a total phobia about vegetables. Things take a drastic turn the evening she invites him to dinner.",
"yt_trailer_code": "",
"language": "fr",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/delectable_you_2017/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/delectable_you_2017/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/delectable_you_2017/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/delectable_you_2017/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/delectable_you_2017/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/5A1EAC4DE9BB55A309A458E5E083EE3B040322FB",
"hash": "5A1EAC4DE9BB55A309A458E5E083EE3B040322FB",
"quality": "720p",
"type": "web",
"seeds": 0,
"peers": 0,
"size": "137.9 MB",
"size_bytes": 144598630,
"date_uploaded": "2020-10-26 18:43:35",
"date_uploaded_unix": 1603734215
},
{
"url": "https://yts.mx/torrent/download/5B24F41DC3A26E585FDB0AAA9AB06E6B2FFDFBF5",
"hash": "5B24F41DC3A26E585FDB0AAA9AB06E6B2FFDFBF5",
"quality": "1080p",
"type": "web",
"seeds": 0,
"peers": 0,
"size": "255.88 MB",
"size_bytes": 268309627,
"date_uploaded": "2020-10-26 19:00:42",
"date_uploaded_unix": 1603735242
}
],
"date_uploaded": "2020-10-26 18:43:35",
"date_uploaded_unix": 1603734215
},
{
"id": 22836,
"url": "https://yts.mx/movies/the-misogynists-2017",
"imdb_code": "tt7311064",
"title": "The Misogynists",
"title_english": "The Misogynists",
"title_long": "The Misogynists (2017)",
"slug": "the-misogynists-2017",
"year": 2017,
"rating": 6.1,
"runtime": 85,
"genres": [
"Comedy"
],
"summary": "In a single, fully-stocked hotel room on the night of the 2016 general election, two Trump supporters celebrate the unexpected results.",
"description_full": "In a single, fully-stocked hotel room on the night of the 2016 general election, two Trump supporters celebrate the unexpected results.",
"synopsis": "In a single, fully-stocked hotel room on the night of the 2016 general election, two Trump supporters celebrate the unexpected results.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/the_misogynists_2017/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/the_misogynists_2017/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/the_misogynists_2017/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/the_misogynists_2017/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/the_misogynists_2017/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/829B975641181C7976D9D3FFF61ADF62CBB3F78F",
"hash": "829B975641181C7976D9D3FFF61ADF62CBB3F78F",
"quality": "720p",
"type": "web",
"seeds": 51,
"peers": 16,
"size": "776.44 MB",
"size_bytes": 814156349,
"date_uploaded": "2020-10-26 14:18:50",
"date_uploaded_unix": 1603718330
},
{
"url": "https://yts.mx/torrent/download/B026D67CA241CDD556F521F5FE3123235A1A4EA2",
"hash": "B026D67CA241CDD556F521F5FE3123235A1A4EA2",
"quality": "1080p",
"type": "web",
"seeds": 69,
"peers": 29,
"size": "1.41 GB",
"size_bytes": 1513975972,
"date_uploaded": "2020-10-26 16:22:13",
"date_uploaded_unix": 1603725733
}
],
"date_uploaded": "2020-10-26 14:18:50",
"date_uploaded_unix": 1603718330
},
{
"id": 22834,
"url": "https://yts.mx/movies/the-apostle-2012",
"imdb_code": "tt1331294",
"title": "The Apostle",
"title_english": "The Apostle",
"title_long": "The Apostle (2012)",
"slug": "the-apostle-2012",
"year": 2012,
"rating": 6.8,
"runtime": 0,
"genres": [
"Animation",
"Horror"
],
"summary": "An escaped prison convict attempts to retrieve a loot hidden years ago in a lonely village. Sinister elders, strange disappearances, spirits, a peculiar priest and even the Archpriest of Santiago will cross their paths in a history of horror.",
"description_full": "An escaped prison convict attempts to retrieve a loot hidden years ago in a lonely village. Sinister elders, strange disappearances, spirits, a peculiar priest and even the Archpriest of Santiago will cross their paths in a history of horror.",
"synopsis": "An escaped prison convict attempts to retrieve a loot hidden years ago in a lonely village. Sinister elders, strange disappearances, spirits, a peculiar priest and even the Archpriest of Santiago will cross their paths in a history of horror.",
"yt_trailer_code": "",
"language": "es",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/the_apostle_2012/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/the_apostle_2012/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/the_apostle_2012/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/the_apostle_2012/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/the_apostle_2012/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/304B11AC64827E3723D187A259817D2772EEA00C",
"hash": "304B11AC64827E3723D187A259817D2772EEA00C",
"quality": "720p",
"type": "bluray",
"seeds": 38,
"peers": 40,
"size": "777.11 MB",
"size_bytes": 814858895,
"date_uploaded": "2020-10-26 17:10:56",
"date_uploaded_unix": 1603728656
},
{
"url": "https://yts.mx/torrent/download/80157F544C0A4FB0B70D77C15797042A5527347F",
"hash": "80157F544C0A4FB0B70D77C15797042A5527347F",
"quality": "1080p",
"type": "bluray",
"seeds": 0,
"peers": 0,
"size": "1.56 GB",
"size_bytes": 1675037245,
"date_uploaded": "2020-10-26 18:42:50",
"date_uploaded_unix": 1603734170
}
],
"date_uploaded": "2020-10-26 17:10:56",
"date_uploaded_unix": 1603728656
},
{
"id": 22833,
"url": "https://yts.mx/movies/malasana-32-2020",
"imdb_code": "tt10952782",
"title": "Malasaña 32",
"title_english": "Malasaña 32",
"title_long": "Malasaña 32 (2020)",
"slug": "malasana-32-2020",
"year": 2020,
"rating": 5.4,
"runtime": 104,
"genres": [
"Horror"
],
"summary": "1976. City of Madrid, Madrid (center to Spain and country's capital). On the early days of The Spanish Transition after General Franco's death happened the previous year, family Olmedo moves to the big city from their natal town hoping to get money and a better life for everyone. They are Manolo, a farmer hired to work in the well-known Pegaso's truck company; his wife and previous sister-in-law Candela, hired to work in the too well-known shopping mall Galerías Preciados; oldest son Pepe, a shy and stammer 20-years old young who feels as a stranger in the city unable to find job; older daughter Amparo, a 17 years-old teen forced to leave the town and her boyfriend Mateo to live in Madrid, who dreams to live in Paris working as flight attendant for Iberia's flying company; the child Rafael \"Rafi\", the only one son of Manolo and Candela after Candela's first husband (father of Pepe and Amparo) left them; a finally Fermín, Candela's aging and senile father with troubles of memory. ...",
"description_full": "1976. City of Madrid, Madrid (center to Spain and country's capital). On the early days of The Spanish Transition after General Franco's death happened the previous year, family Olmedo moves to the big city from their natal town hoping to get money and a better life for everyone. They are Manolo, a farmer hired to work in the well-known Pegaso's truck company; his wife and previous sister-in-law Candela, hired to work in the too well-known shopping mall Galerías Preciados; oldest son Pepe, a shy and stammer 20-years old young who feels as a stranger in the city unable to find job; older daughter Amparo, a 17 years-old teen forced to leave the town and her boyfriend Mateo to live in Madrid, who dreams to live in Paris working as flight attendant for Iberia's flying company; the child Rafael \"Rafi\", the only one son of Manolo and Candela after Candela's first husband (father of Pepe and Amparo) left them; a finally Fermín, Candela's aging and senile father with troubles of memory. ...",
"synopsis": "1976. City of Madrid, Madrid (center to Spain and country's capital). On the early days of The Spanish Transition after General Franco's death happened the previous year, family Olmedo moves to the big city from their natal town hoping to get money and a better life for everyone. They are Manolo, a farmer hired to work in the well-known Pegaso's truck company; his wife and previous sister-in-law Candela, hired to work in the too well-known shopping mall Galerías Preciados; oldest son Pepe, a shy and stammer 20-years old young who feels as a stranger in the city unable to find job; older daughter Amparo, a 17 years-old teen forced to leave the town and her boyfriend Mateo to live in Madrid, who dreams to live in Paris working as flight attendant for Iberia's flying company; the child Rafael \"Rafi\", the only one son of Manolo and Candela after Candela's first husband (father of Pepe and Amparo) left them; a finally Fermín, Candela's aging and senile father with troubles of memory. ...",
"yt_trailer_code": "PhNifmybTgM",
"language": "es",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/malasana_32_2020/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/malasana_32_2020/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/malasana_32_2020/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/malasana_32_2020/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/malasana_32_2020/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/FE948F2B6AC68F548F41A03DE2B53A26DFD22AB2",
"hash": "FE948F2B6AC68F548F41A03DE2B53A26DFD22AB2",
"quality": "720p",
"type": "web",
"seeds": 0,
"peers": 0,
"size": "960.77 MB",
"size_bytes": 1007440364,
"date_uploaded": "2020-10-26 16:20:56",
"date_uploaded_unix": 1603725656
},
{
"url": "https://yts.mx/torrent/download/313CE782CA827D98426C8D0AAE03598FE3077F28",
"hash": "313CE782CA827D98426C8D0AAE03598FE3077F28",
"quality": "1080p",
"type": "web",
"seeds": 0,
"peers": 0,
"size": "1.93 GB",
"size_bytes": 2072321720,
"date_uploaded": "2020-10-26 18:33:26",
"date_uploaded_unix": 1603733606
}
],
"date_uploaded": "2020-10-26 16:20:56",
"date_uploaded_unix": 1603725656
},
{
"id": 22832,
"url": "https://yts.mx/movies/dugma-the-button-2016",
"imdb_code": "tt5945222",
"title": "Dugma: The Button",
"title_english": "Dugma: The Button",
"title_long": "Dugma: The Button (2016)",
"slug": "dugma-the-button-2016",
"year": 2016,
"rating": 7.2,
"runtime": 58,
"genres": [
"Documentary"
],
"summary": "An intimate portrait of a group of very different suicide bombers working for Al Qaeda in Syria. From the Saudi who loves singing and fried chicken, to a 26-year-old white British convert who worries a lot about his new wife, this remarkable film embeds with an unlikely bunch of \"martyrdom seekers\", each waiting for their turn to go on a final mission, known by Jihadis as 'Dugma'. In scenes of contemplative beauty and intimacy, this profound documentary lays bare the faith and doubt at the core of men who become suicide bombers.",
"description_full": "An intimate portrait of a group of very different suicide bombers working for Al Qaeda in Syria. From the Saudi who loves singing and fried chicken, to a 26-year-old white British convert who worries a lot about his new wife, this remarkable film embeds with an unlikely bunch of \"martyrdom seekers\", each waiting for their turn to go on a final mission, known by Jihadis as 'Dugma'. In scenes of contemplative beauty and intimacy, this profound documentary lays bare the faith and doubt at the core of men who become suicide bombers.",
"synopsis": "An intimate portrait of a group of very different suicide bombers working for Al Qaeda in Syria. From the Saudi who loves singing and fried chicken, to a 26-year-old white British convert who worries a lot about his new wife, this remarkable film embeds with an unlikely bunch of \"martyrdom seekers\", each waiting for their turn to go on a final mission, known by Jihadis as 'Dugma'. In scenes of contemplative beauty and intimacy, this profound documentary lays bare the faith and doubt at the core of men who become suicide bombers.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/dugma_the_button_2016/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/dugma_the_button_2016/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/dugma_the_button_2016/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/dugma_the_button_2016/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/dugma_the_button_2016/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/43B6889D5552805B530F9EB6186FFDCDDA40139F",
"hash": "43B6889D5552805B530F9EB6186FFDCDDA40139F",
"quality": "720p",
"type": "web",
"seeds": 34,
"peers": 21,
"size": "525.42 MB",
"size_bytes": 550942802,
"date_uploaded": "2020-10-26 16:05:27",
"date_uploaded_unix": 1603724727
},
{
"url": "https://yts.mx/torrent/download/72FECE5BCD8579882681B35FBF78F5F5DFBF3C05",
"hash": "72FECE5BCD8579882681B35FBF78F5F5DFBF3C05",
"quality": "1080p",
"type": "web",
"seeds": 62,
"peers": 27,
"size": "975.37 MB",
"size_bytes": 1022749573,
"date_uploaded": "2020-10-26 17:28:51",
"date_uploaded_unix": 1603729731
}
],
"date_uploaded": "2020-10-26 16:05:27",
"date_uploaded_unix": 1603724727
},
{
"id": 22830,
"url": "https://yts.mx/movies/almost-human-2019",
"imdb_code": "tt9867616",
"title": "Almost Human",
"title_english": "Almost Human",
"title_long": "Almost Human (2019)",
"slug": "almost-human-2019",
"year": 2019,
"rating": 7.2,
"runtime": 46,
"genres": [
"Documentary",
"Sci-Fi"
],
"summary": "The award winning Danish director, Jeppe Rønde has invited 10 of the world's foremost scientists - and a single robot. - to zoom out at intergalactic distance and rethink our relationship with technology and investigate in microcosmic detail its dilemmas. The world-renowned comedian, actor, writer, presenter and activist, Stephen Fry has put his iconic voice to Rønde's visionary essay, and speaks to all of mankind while the film hauntingly leads us through our own history - as well as the history of technology itself. Philosophers, anthropologists, archaeologists and physicists demonstrate in each their thought experiment that our relationship with technology is as much about our relationship with ourselves.",
"description_full": "The award winning Danish director, Jeppe Rønde has invited 10 of the world's foremost scientists - and a single robot. - to zoom out at intergalactic distance and rethink our relationship with technology and investigate in microcosmic detail its dilemmas. The world-renowned comedian, actor, writer, presenter and activist, Stephen Fry has put his iconic voice to Rønde's visionary essay, and speaks to all of mankind while the film hauntingly leads us through our own history - as well as the history of technology itself. Philosophers, anthropologists, archaeologists and physicists demonstrate in each their thought experiment that our relationship with technology is as much about our relationship with ourselves.",
"synopsis": "The award winning Danish director, Jeppe Rønde has invited 10 of the world's foremost scientists - and a single robot. - to zoom out at intergalactic distance and rethink our relationship with technology and investigate in microcosmic detail its dilemmas. The world-renowned comedian, actor, writer, presenter and activist, Stephen Fry has put his iconic voice to Rønde's visionary essay, and speaks to all of mankind while the film hauntingly leads us through our own history - as well as the history of technology itself. Philosophers, anthropologists, archaeologists and physicists demonstrate in each their thought experiment that our relationship with technology is as much about our relationship with ourselves.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/almost_human_2019/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/almost_human_2019/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/almost_human_2019/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/almost_human_2019/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/almost_human_2019/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/A2F46E65DD7F6D1486592B5AA479B10DC10E40B4",
"hash": "A2F46E65DD7F6D1486592B5AA479B10DC10E40B4",
"quality": "720p",
"type": "web",
"seeds": 82,
"peers": 35,
"size": "437.58 MB",
"size_bytes": 458835886,
"date_uploaded": "2020-10-26 14:56:41",
"date_uploaded_unix": 1603720601
},
{
"url": "https://yts.mx/torrent/download/856BC2E16489086A43545611C56624414D1138E6",
"hash": "856BC2E16489086A43545611C56624414D1138E6",
"quality": "1080p",
"type": "web",
"seeds": 125,
"peers": 34,
"size": "811.9 MB",
"size_bytes": 851338854,
"date_uploaded": "2020-10-26 16:08:23",
"date_uploaded_unix": 1603724903
}
],
"date_uploaded": "2020-10-26 14:56:41",
"date_uploaded_unix": 1603720601
},
{
"id": 22829,
"url": "https://yts.mx/movies/charlies-letters-2019",
"imdb_code": "tt7063474",
"title": "Charlie's Letters",
"title_english": "Charlie's Letters",
"title_long": "Charlie's Letters (2019)",
"slug": "charlies-letters-2019",
"year": 2019,
"rating": 5.2,
"runtime": 90,
"genres": [
"Drama",
"War"
],
"summary": "Inspired by director Elliott Hasler's great-grandfather's own experiences, 'Charlie's Letters' depicts an escaped British POW's epic battle for survival whilst on the run in war-torn Italy, as his wife and young son anxiously await news in England. Completed when Hasler was just sixteen years old, this impressive debut was shot across five countries and spent three years in production. Upon its release the film was lauded \"a miracle\" by critics with Hasler being cited as \"the next Spielberg\" (Culture Trip).",
"description_full": "Inspired by director Elliott Hasler's great-grandfather's own experiences, 'Charlie's Letters' depicts an escaped British POW's epic battle for survival whilst on the run in war-torn Italy, as his wife and young son anxiously await news in England. Completed when Hasler was just sixteen years old, this impressive debut was shot across five countries and spent three years in production. Upon its release the film was lauded \"a miracle\" by critics with Hasler being cited as \"the next Spielberg\" (Culture Trip).",
"synopsis": "Inspired by director Elliott Hasler's great-grandfather's own experiences, 'Charlie's Letters' depicts an escaped British POW's epic battle for survival whilst on the run in war-torn Italy, as his wife and young son anxiously await news in England. Completed when Hasler was just sixteen years old, this impressive debut was shot across five countries and spent three years in production. Upon its release the film was lauded \"a miracle\" by critics with Hasler being cited as \"the next Spielberg\" (Culture Trip).",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/charlies_letters_2019/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/charlies_letters_2019/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/charlies_letters_2019/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/charlies_letters_2019/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/charlies_letters_2019/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/64925ACE05C38356F5CE8E7B20675A934AC7BD7B",
"hash": "64925ACE05C38356F5CE8E7B20675A934AC7BD7B",
"quality": "720p",
"type": "web",
"seeds": 206,
"peers": 108,
"size": "696.74 MB",
"size_bytes": 730584842,
"date_uploaded": "2020-10-26 11:46:20",
"date_uploaded_unix": 1603709180
},
{
"url": "https://yts.mx/torrent/download/1D9C8172E41A31217D9566E0D665C9E180ECA3E0",
"hash": "1D9C8172E41A31217D9566E0D665C9E180ECA3E0",
"quality": "1080p",
"type": "web",
"seeds": 236,
"peers": 68,
"size": "1.26 GB",
"size_bytes": 1352914698,
"date_uploaded": "2020-10-26 13:14:39",
"date_uploaded_unix": 1603714479
}
],
"date_uploaded": "2020-10-26 11:46:20",
"date_uploaded_unix": 1603709180
},
{
"id": 22828,
"url": "https://yts.mx/movies/paradise-z-2020",
"imdb_code": "tt12409568",
"title": "Paradise Z",
"title_english": "Paradise Z",
"title_long": "Paradise Z (2020)",
"slug": "paradise-z-2020",
"year": 2020,
"rating": 4.3,
"runtime": 80,
"genres": [
"Action",
"Horror"
],
"summary": "Sheltering in a luxury resort, two beautiful women try to avoid detection during a zombie apocalypse. After a devastating attack destroys their supply reserve, the pair risk death in search of a new paradise.",
"description_full": "Sheltering in a luxury resort, two beautiful women try to avoid detection during a zombie apocalypse. After a devastating attack destroys their supply reserve, the pair risk death in search of a new paradise.",
"synopsis": "Sheltering in a luxury resort, two beautiful women try to avoid detection during a zombie apocalypse. After a devastating attack destroys their supply reserve, the pair risk death in search of a new paradise.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/paradise_z_2020/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/paradise_z_2020/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/paradise_z_2020/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/paradise_z_2020/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/paradise_z_2020/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/2908F698E01B11FECD4F5D8DECF4BF35D35DB192",
"hash": "2908F698E01B11FECD4F5D8DECF4BF35D35DB192",
"quality": "720p",
"type": "web",
"seeds": 628,
"peers": 309,
"size": "738.28 MB",
"size_bytes": 774142689,
"date_uploaded": "2020-10-26 03:02:33",
"date_uploaded_unix": 1603677753
},
{
"url": "https://yts.mx/torrent/download/78713E55E989E06DCC4DEBC1A4B38E59AB97D31A",
"hash": "78713E55E989E06DCC4DEBC1A4B38E59AB97D31A",
"quality": "1080p",
"type": "web",
"seeds": 595,
"peers": 171,
"size": "1.48 GB",
"size_bytes": 1589137900,
"date_uploaded": "2020-10-26 04:27:00",
"date_uploaded_unix": 1603682820
}
],
"date_uploaded": "2020-10-26 03:02:33",
"date_uploaded_unix": 1603677753
},
{
"id": 22826,
"url": "https://yts.mx/movies/cains-way-1970",
"imdb_code": "tt0066879",
"title": "Cain's Way",
"title_english": "Cain's Way",
"title_long": "Cain's Way (1970)",
"slug": "cains-way-1970",
"year": 1970,
"rating": 5.3,
"runtime": 95,
"genres": [
"Action",
"Comedy",
"Drama",
"Western"
],
"summary": "Following the Civil War, Confederate Captain Justice Cain has retired to a quiet life with his young son and black wife. However, the men of his old outfit, known as Cain's Cutthroats, have turned to lives of murder, torture and robbery. They attempt to convince Cain to ride with them once more. He refuses, and the Cutthroats murder his family. Swearing vengeance, Cain teams up with a colorful preacher/bounty hunter, and hunts down his family's killers one at a time.",
"description_full": "Following the Civil War, Confederate Captain Justice Cain has retired to a quiet life with his young son and black wife. However, the men of his old outfit, known as Cain's Cutthroats, have turned to lives of murder, torture and robbery. They attempt to convince Cain to ride with them once more. He refuses, and the Cutthroats murder his family. Swearing vengeance, Cain teams up with a colorful preacher/bounty hunter, and hunts down his family's killers one at a time.",
"synopsis": "Following the Civil War, Confederate Captain Justice Cain has retired to a quiet life with his young son and black wife. However, the men of his old outfit, known as Cain's Cutthroats, have turned to lives of murder, torture and robbery. They attempt to convince Cain to ride with them once more. He refuses, and the Cutthroats murder his family. Swearing vengeance, Cain teams up with a colorful preacher/bounty hunter, and hunts down his family's killers one at a time.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/cains_way_1970/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/cains_way_1970/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/cains_way_1970/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/cains_way_1970/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/cains_way_1970/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/C9851504E4668A1F308298D7391E942C0535780C",
"hash": "C9851504E4668A1F308298D7391E942C0535780C",
"quality": "720p",
"type": "web",
"seeds": 39,
"peers": 27,
"size": "810.28 MB",
"size_bytes": 849640161,
"date_uploaded": "2020-10-25 21:38:32",
"date_uploaded_unix": 1603658312
},
{
"url": "https://yts.mx/torrent/download/624891D3F52E81C9F13EF7D53C18110C998DE595",
"hash": "624891D3F52E81C9F13EF7D53C18110C998DE595",
"quality": "1080p",
"type": "web",
"seeds": 45,
"peers": 16,
"size": "1.47 GB",
"size_bytes": 1578400481,
"date_uploaded": "2020-10-25 23:46:08",
"date_uploaded_unix": 1603665968
}
],
"date_uploaded": "2020-10-25 21:38:32",
"date_uploaded_unix": 1603658312
},
{
"id": 22825,
"url": "https://yts.mx/movies/more-than-enough-2017",
"imdb_code": "tt5020744",
"title": "More Than Enough",
"title_english": "More Than Enough",
"title_long": "More Than Enough (2017)",
"slug": "more-than-enough-2017",
"year": 2017,
"rating": 5.9,
"runtime": 93,
"genres": [
"Drama"
],
"summary": "The film follows the relationship between a bullied student, Shelly, whose home life is in shambles, and a wealthy eccentric, Wes, with no friends and issues with women. Things take a turn when Wes offers to become the teen's guardian.",
"description_full": "The film follows the relationship between a bullied student, Shelly, whose home life is in shambles, and a wealthy eccentric, Wes, with no friends and issues with women. Things take a turn when Wes offers to become the teen's guardian.",
"synopsis": "The film follows the relationship between a bullied student, Shelly, whose home life is in shambles, and a wealthy eccentric, Wes, with no friends and issues with women. Things take a turn when Wes offers to become the teen's guardian.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/more_than_enough_2017/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/more_than_enough_2017/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/more_than_enough_2017/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/more_than_enough_2017/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/more_than_enough_2017/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/A46354A9FFF58B07D4B3845741DAC2F20FE238B1",
"hash": "A46354A9FFF58B07D4B3845741DAC2F20FE238B1",
"quality": "720p",
"type": "web",
"seeds": 57,
"peers": 31,
"size": "909.16 MB",
"size_bytes": 953323356,
"date_uploaded": "2020-10-26 03:21:14",
"date_uploaded_unix": 1603678874
},
{
"url": "https://yts.mx/torrent/download/155027431A2065118C0A03AB1E0D9AFC884140BC",
"hash": "155027431A2065118C0A03AB1E0D9AFC884140BC",
"quality": "1080p",
"type": "web",
"seeds": 54,
"peers": 43,
"size": "1.83 GB",
"size_bytes": 1964947538,
"date_uploaded": "2020-10-26 05:12:23",
"date_uploaded_unix": 1603685543
}
],
"date_uploaded": "2020-10-26 03:21:14",
"date_uploaded_unix": 1603678874
},
{
"id": 22824,
"url": "https://yts.mx/movies/deathstalker-1983",
"imdb_code": "tt0087127",
"title": "Deathstalker",
"title_english": "Deathstalker",
"title_long": "Deathstalker (1983)",
"slug": "deathstalker-1983",
"year": 1983,
"rating": 4.6,
"runtime": 80,
"genres": [
"Adventure",
"Fantasy"
],
"summary": "The warrior Deathstalker is tasked by an old witch to obtain and unite the three powers of creation - a chalice, an amulet, and a sword - lest the evil magician Munkar get them and use them for nefarious purposes. After obtaining the sword, Deathstalker joins with other travelers going to the Big Tournament to determine the strongest warrior. The false king holds the true princess in captivity, and plots to have Deathstalker killed, and Deathstalker must fight to free the princess.",
"description_full": "The warrior Deathstalker is tasked by an old witch to obtain and unite the three powers of creation - a chalice, an amulet, and a sword - lest the evil magician Munkar get them and use them for nefarious purposes. After obtaining the sword, Deathstalker joins with other travelers going to the Big Tournament to determine the strongest warrior. The false king holds the true princess in captivity, and plots to have Deathstalker killed, and Deathstalker must fight to free the princess.",
"synopsis": "The warrior Deathstalker is tasked by an old witch to obtain and unite the three powers of creation - a chalice, an amulet, and a sword - lest the evil magician Munkar get them and use them for nefarious purposes. After obtaining the sword, Deathstalker joins with other travelers going to the Big Tournament to determine the strongest warrior. The false king holds the true princess in captivity, and plots to have Deathstalker killed, and Deathstalker must fight to free the princess.",
"yt_trailer_code": "P8FTMs4hzZk",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/deathstalker_1983/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/deathstalker_1983/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/deathstalker_1983/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/deathstalker_1983/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/deathstalker_1983/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/FB8F24E85EA9D7D650CC159A7C257CA4AB60FAAE",
"hash": "FB8F24E85EA9D7D650CC159A7C257CA4AB60FAAE",
"quality": "720p",
"type": "bluray",
"seeds": 143,
"peers": 50,
"size": "733.02 MB",
"size_bytes": 768627180,
"date_uploaded": "2020-10-25 20:37:09",
"date_uploaded_unix": 1603654629
},
{
"url": "https://yts.mx/torrent/download/E651255CF078FE717EBA7A655F96E5697A0C0C9D",
"hash": "E651255CF078FE717EBA7A655F96E5697A0C0C9D",
"quality": "1080p",
"type": "bluray",
"seeds": 156,
"peers": 49,
"size": "1.33 GB",
"size_bytes": 1428076626,
"date_uploaded": "2020-10-25 22:55:40",
"date_uploaded_unix": 1603662940
}
],
"date_uploaded": "2020-10-25 20:37:09",
"date_uploaded_unix": 1603654629
},
{
"id": 22822,
"url": "https://yts.mx/movies/rust-2010",
"imdb_code": "tt1360826",
"title": "Rust",
"title_english": "Rust",
"title_long": "Rust (2010)",
"slug": "rust-2010",
"year": 2010,
"rating": 5.6,
"runtime": 0,
"genres": [
"Drama"
],
"summary": "A former pastor who walked away from his calling returns to his small hometown to discover that a mysterious fire tragically struck a local family. When he learns that his childhood friend is implicated in starting the fire, he sets out on a mission to find the truth?.and in the process, rediscovers his faith.",
"description_full": "A former pastor who walked away from his calling returns to his small hometown to discover that a mysterious fire tragically struck a local family. When he learns that his childhood friend is implicated in starting the fire, he sets out on a mission to find the truth?.and in the process, rediscovers his faith.",
"synopsis": "A former pastor who walked away from his calling returns to his small hometown to discover that a mysterious fire tragically struck a local family. When he learns that his childhood friend is implicated in starting the fire, he sets out on a mission to find the truth?.and in the process, rediscovers his faith.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "PG",
"background_image": "https://yts.mx/assets/images/movies/rust_2010/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/rust_2010/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/rust_2010/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/rust_2010/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/rust_2010/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/096E216B6EDB68AB83D4684406594118006276CE",
"hash": "096E216B6EDB68AB83D4684406594118006276CE",
"quality": "720p",
"type": "web",
"seeds": 32,
"peers": 26,
"size": "864.74 MB",
"size_bytes": 906745610,
"date_uploaded": "2020-10-25 21:21:01",
"date_uploaded_unix": 1603657261
},
{
"url": "https://yts.mx/torrent/download/5EA9A3902B7700CB516845728BC01098EB6EECD6",
"hash": "5EA9A3902B7700CB516845728BC01098EB6EECD6",
"quality": "1080p",
"type": "web",
"seeds": 58,
"peers": 25,
"size": "1.74 GB",
"size_bytes": 1868310774,
"date_uploaded": "2020-10-25 23:06:10",
"date_uploaded_unix": 1603663570
}
],
"date_uploaded": "2020-10-25 21:21:01",
"date_uploaded_unix": 1603657261
},
{
"id": 22823,
"url": "https://yts.mx/movies/exit-2006",
"imdb_code": "tt0482957",
"title": "Exit",
"title_english": "Exit",
"title_long": "Exit (2006)",
"slug": "exit-2006",
"year": 2006,
"rating": 5.8,
"runtime": 100,
"genres": [
"Drama",
"Mystery",
"Thriller"
],
"summary": "There is a thin line between money and loyalty. Thomas Skepphult runs an investment company, and is arrested for the murder of his business partner when his fingerprint is found on the murder weapon. When he tries to call his lawyer, the phone is answered by someone who he thought had committed suicide years ago.",
"description_full": "There is a thin line between money and loyalty. Thomas Skepphult runs an investment company, and is arrested for the murder of his business partner when his fingerprint is found on the murder weapon. When he tries to call his lawyer, the phone is answered by someone who he thought had committed suicide years ago.",
"synopsis": "There is a thin line between money and loyalty. Thomas Skepphult runs an investment company, and is arrested for the murder of his business partner when his fingerprint is found on the murder weapon. When he tries to call his lawyer, the phone is answered by someone who he thought had committed suicide years ago.",
"yt_trailer_code": "",
"language": "sv",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/exit_2006/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/exit_2006/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/exit_2006/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/exit_2006/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/exit_2006/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/A673663B34D4E278BFCE6829268889CEA207736E",
"hash": "A673663B34D4E278BFCE6829268889CEA207736E",
"quality": "720p",
"type": "bluray",
"seeds": 96,
"peers": 37,
"size": "918.69 MB",
"size_bytes": 963316285,
"date_uploaded": "2020-10-25 23:33:28",
"date_uploaded_unix": 1603665208
},
{
"url": "https://yts.mx/torrent/download/86A17EB5382C7C5322469DD130327CDE8A0C5CE7",
"hash": "86A17EB5382C7C5322469DD130327CDE8A0C5CE7",
"quality": "1080p",
"type": "bluray",
"seeds": 76,
"peers": 44,
"size": "1.84 GB",
"size_bytes": 1975684956,
"date_uploaded": "2020-10-26 02:17:08",
"date_uploaded_unix": 1603675028
}
],
"date_uploaded": "2020-10-25 23:33:28",
"date_uploaded_unix": 1603665208
},
{
"id": 22821,
"url": "https://yts.mx/movies/quadroon-1971",
"imdb_code": "tt0069138",
"title": "Quadroon",
"title_english": "Quadroon",
"title_long": "Quadroon (1971)",
"slug": "quadroon-1971",
"year": 1971,
"rating": 5.8,
"runtime": 90,
"genres": [
"Drama",
"Romance"
],
"summary": "A story of love, lust, violence and murder on a sadistic southern plantation during the slave era.",
"description_full": "A story of love, lust, violence and murder on a sadistic southern plantation during the slave era.",
"synopsis": "A story of love, lust, violence and murder on a sadistic southern plantation during the slave era.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/quadroon_1971/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/quadroon_1971/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/quadroon_1971/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/quadroon_1971/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/quadroon_1971/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/29B50605C7BE66F7F800BC61C4C16EA4563ED4CB",
"hash": "29B50605C7BE66F7F800BC61C4C16EA4563ED4CB",
"quality": "720p",
"type": "bluray",
"seeds": 55,
"peers": 32,
"size": "828.56 MB",
"size_bytes": 868808131,
"date_uploaded": "2020-10-26 00:14:09",
"date_uploaded_unix": 1603667649
},
{
"url": "https://yts.mx/torrent/download/8A490EBE23CED111E9CF0191E72A3B1E343D3644",
"hash": "8A490EBE23CED111E9CF0191E72A3B1E343D3644",
"quality": "1080p",
"type": "bluray",
"seeds": 71,
"peers": 32,
"size": "1.5 GB",
"size_bytes": 1610612736,
"date_uploaded": "2020-10-26 02:19:27",
"date_uploaded_unix": 1603675167
}
],
"date_uploaded": "2020-10-26 00:14:09",
"date_uploaded_unix": 1603667649
},
{
"id": 22819,
"url": "https://yts.mx/movies/lovecut-2020",
"imdb_code": "tt7613162",
"title": "Lovecut",
"title_english": "Lovecut",
"title_long": "Lovecut (2020)",
"slug": "lovecut-2020",
"year": 2020,
"rating": 6.4,
"runtime": 94,
"genres": [
"Drama"
],
"summary": "Through different intersecting stories, LOVECUT tells about three teenage couples and their conflicts with identity, love and sexuality in our digital, rapid changing society that offers many possibilities, as well as extreme challenges. What we observe is a snapshot, an excerpt from their lives and their love stories. An attempt to better understand the bold youth of our time as well as the society we live in.",
"description_full": "Through different intersecting stories, LOVECUT tells about three teenage couples and their conflicts with identity, love and sexuality in our digital, rapid changing society that offers many possibilities, as well as extreme challenges. What we observe is a snapshot, an excerpt from their lives and their love stories. An attempt to better understand the bold youth of our time as well as the society we live in.",
"synopsis": "Through different intersecting stories, LOVECUT tells about three teenage couples and their conflicts with identity, love and sexuality in our digital, rapid changing society that offers many possibilities, as well as extreme challenges. What we observe is a snapshot, an excerpt from their lives and their love stories. An attempt to better understand the bold youth of our time as well as the society we live in.",
"yt_trailer_code": "",
"language": "de",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/lovecut_2020/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/lovecut_2020/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/lovecut_2020/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/lovecut_2020/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/lovecut_2020/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/6D4E6702F28627C0DBE251F22F83CE5E78DC02DE",
"hash": "6D4E6702F28627C0DBE251F22F83CE5E78DC02DE",
"quality": "720p",
"type": "bluray",
"seeds": 162,
"peers": 100,
"size": "899.42 MB",
"size_bytes": 943110226,
"date_uploaded": "2020-10-25 18:32:53",
"date_uploaded_unix": 1603647173
},
{
"url": "https://yts.mx/torrent/download/1C290DAF2E82F22EE4F4275B5EF1C953455817AB",
"hash": "1C290DAF2E82F22EE4F4275B5EF1C953455817AB",
"quality": "1080p",
"type": "bluray",
"seeds": 126,
"peers": 74,
"size": "1.81 GB",
"size_bytes": 1943472701,
"date_uploaded": "2020-10-25 20:26:18",
"date_uploaded_unix": 1603653978
}
],
"date_uploaded": "2020-10-25 18:32:53",
"date_uploaded_unix": 1603647173
},
{
"id": 22817,
"url": "https://yts.mx/movies/true-confessions-of-a-hollywood-starlet-2008",
"imdb_code": "tt1124401",
"title": "True Confessions of a Hollywood Starlet",
"title_english": "True Confessions of a Hollywood Starlet",
"title_long": "True Confessions of a Hollywood Starlet (2008)",
"slug": "true-confessions-of-a-hollywood-starlet-2008",
"year": 2008,
"rating": 5.6,
"runtime": 87,
"genres": [
"Comedy",
"Drama",
"Family"
],
"summary": "A young Hollywood starlet must adjust to a new small town life when she is sent to live with her aunt after a stint in rehab.",
"description_full": "A young Hollywood starlet must adjust to a new small town life when she is sent to live with her aunt after a stint in rehab.",
"synopsis": "A young Hollywood starlet must adjust to a new small town life when she is sent to live with her aunt after a stint in rehab.",
"yt_trailer_code": "",
"language": "en",
"mpa_rating": "",
"background_image": "https://yts.mx/assets/images/movies/true_confessions_of_a_hollywood_starlet_2008/background.jpg",
"background_image_original": "https://yts.mx/assets/images/movies/true_confessions_of_a_hollywood_starlet_2008/background.jpg",
"small_cover_image": "https://yts.mx/assets/images/movies/true_confessions_of_a_hollywood_starlet_2008/small-cover.jpg",
"medium_cover_image": "https://yts.mx/assets/images/movies/true_confessions_of_a_hollywood_starlet_2008/medium-cover.jpg",
"large_cover_image": "https://yts.mx/assets/images/movies/true_confessions_of_a_hollywood_starlet_2008/large-cover.jpg",
"state": "ok",
"torrents": [
{
"url": "https://yts.mx/torrent/download/EFBF13DD65735263B570CF2727C611952FF1D640",
"hash": "EFBF13DD65735263B570CF2727C611952FF1D640",
"quality": "720p",
"type": "web",
"seeds": 52,
"peers": 27,
"size": "800.88 MB",
"size_bytes": 839783547,