-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfree-movies-cinemovies.json
2648 lines (2648 loc) · 100 KB
/
free-movies-cinemovies.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
{
"http://www.imdb.com/title/tt0003679/": {
"freenessurl": "https://www.cinemovies.video/movies/between-showers/",
"imdblookup": "Between Showers 1914",
"status": "free",
"title": "Between Showers",
"year": 1914
},
"http://www.imdb.com/title/tt0003758/": {
"freenessurl": "https://www.cinemovies.video/movies/caught-in-a-cabaret/",
"imdblookup": "Caught in a Cabaret 1914",
"status": "free",
"title": "Caught in a Cabaret",
"year": 1914
},
"http://www.imdb.com/title/tt0003863/": {
"freenessurl": "https://www.cinemovies.video/movies/dough-and-dynamite/",
"imdblookup": "Dough and Dynamite 1914",
"status": "free",
"title": "Dough and Dynamite",
"year": 1914
},
"http://www.imdb.com/title/tt0003934/": {
"freenessurl": "https://www.cinemovies.video/movies/the-fatal-mallet/",
"imdblookup": "The Fatal Mallet 1914",
"status": "free",
"title": "The Fatal Mallet",
"year": 1914
},
"http://www.imdb.com/title/tt0004007/": {
"freenessurl": "https://www.cinemovies.video/movies/gentlemen-of-nerve/",
"imdblookup": "Gentlemen of Nerve 1914",
"status": "free",
"title": "Gentlemen of Nerve",
"year": 1914
},
"http://www.imdb.com/title/tt0004011/": {
"freenessurl": "https://www.cinemovies.video/movies/getting-acquainted/",
"imdblookup": "Getting Acquainted 1914",
"status": "free",
"title": "Getting Acquainted",
"year": 1914
},
"http://www.imdb.com/title/tt0004100/": {
"freenessurl": "https://www.cinemovies.video/movies/his-musical-career/",
"imdblookup": "His Musical Career 1914",
"status": "free",
"title": "His Musical Career",
"year": 1914
},
"http://www.imdb.com/title/tt0004707/": {
"freenessurl": "https://www.cinemovies.video/movies/tillies-punctured-romance/",
"imdblookup": "Tillie's Punctured Romance 1914",
"status": "free",
"title": "Tillie's Punctured Romance",
"year": 1914
},
"http://www.imdb.com/title/tt0006689/": {
"freenessurl": "https://www.cinemovies.video/movies/the-floorwalker/",
"imdblookup": "The Floorwalker 1916",
"status": "free",
"title": "The Floorwalker",
"year": 1916
},
"http://www.imdb.com/title/tt0008874/": {
"freenessurl": "https://www.cinemovies.video/movies/the-bell-boy/",
"imdblookup": "The Bell Boy 1918",
"status": "free",
"title": "The Bell Boy",
"year": 1918
},
"http://www.imdb.com/title/tt0009986/": {
"freenessurl": "https://www.cinemovies.video/movies/captain-kidds-kids/",
"imdblookup": "Captain Kidd's Kids 1919",
"status": "free",
"title": "Captain Kidd's Kids",
"year": 1919
},
"http://www.imdb.com/title/tt0010146/": {
"freenessurl": "https://www.cinemovies.video/movies/from-hand-to-mouth/",
"imdblookup": "From Hand to Mouth 1919",
"status": "free",
"title": "From Hand to Mouth",
"year": 1919
},
"http://www.imdb.com/title/tt0010311/": {
"freenessurl": "https://www.cinemovies.video/movies/a-jazzed-honeymoon/",
"imdblookup": "A Jazzed Honeymoon 1919",
"status": "free",
"title": "A Jazzed Honeymoon",
"year": 1919
},
"http://www.imdb.com/title/tt0010321/": {
"freenessurl": "https://www.cinemovies.video/movies/just-neighbors/",
"imdblookup": "Just Neighbors 1919",
"status": "free",
"title": "Just Neighbors",
"year": 1919
},
"http://www.imdb.com/title/tt0010552/": {
"freenessurl": "https://www.cinemovies.video/movies/pay-your-dues/",
"imdblookup": "Pay Your Dues 1919",
"status": "free",
"title": "Pay Your Dues",
"year": 1919
},
"http://www.imdb.com/title/tt0010632/": {
"freenessurl": "https://www.cinemovies.video/movies/ring-up-the-curtain/",
"imdblookup": "Ring Up the Curtain 1919",
"status": "free",
"title": "Ring Up the Curtain",
"year": 1919
},
"http://www.imdb.com/title/tt0011223/": {
"freenessurl": "https://www.cinemovies.video/movies/get-out-and-get-under/",
"imdblookup": "Get Out and Get Under 1920",
"status": "free",
"title": "Get Out and Get Under",
"year": 1920
},
"http://www.imdb.com/title/tt0011263/": {
"freenessurl": "https://www.cinemovies.video/movies/haunted-spooks/",
"imdblookup": "Haunted Spooks 1920",
"status": "free",
"title": "Haunted Spooks",
"year": 1920
},
"http://www.imdb.com/title/tt0011293/": {
"freenessurl": "https://www.cinemovies.video/movies/high-and-dizzy/",
"imdblookup": "High and Dizzy 1920",
"status": "free",
"title": "High and Dizzy",
"year": 1920
},
"http://www.imdb.com/title/tt0011508/": {
"freenessurl": "https://www.cinemovies.video/movies/neighbors/",
"imdblookup": "Neighbors 1920",
"status": "free",
"title": "Neighbors",
"year": 1920
},
"http://www.imdb.com/title/tt0012499/": {
"freenessurl": "https://www.cinemovies.video/movies/never-weaken/",
"imdblookup": "Never Weaken 1921",
"status": "free",
"title": "Never Weaken",
"year": 1921
},
"http://www.imdb.com/title/tt0012543/": {
"freenessurl": "https://www.cinemovies.video/movies/the-paleface/",
"imdblookup": "The Paleface 1922",
"status": "free",
"title": "The Paleface",
"year": 1922
},
"http://www.imdb.com/title/tt0013055/": {
"freenessurl": "https://www.cinemovies.video/movies/day-dreams/",
"imdblookup": "Day Dreams 1922",
"status": "free",
"title": "Day Dreams",
"year": 1922
},
"http://www.imdb.com/title/tt0013201/": {
"freenessurl": "https://www.cinemovies.video/movies/grandmas-boy/",
"imdblookup": "Grandma's Boy 1922",
"status": "free",
"title": "Grandma's Boy",
"year": 1922
},
"http://www.imdb.com/title/tt0013422/": {
"freenessurl": "https://www.cinemovies.video/movies/my-wifes-relations/",
"imdblookup": "My Wife's Relations 1922",
"status": "free",
"title": "My Wife's Relations",
"year": 1922
},
"http://www.imdb.com/title/tt0013858/": {
"freenessurl": "https://www.cinemovies.video/movies/the-balloonatic/",
"imdblookup": "The Balloonatic 1923",
"status": "free",
"title": "The Balloonatic",
"year": 1923
},
"http://www.imdb.com/title/tt0014341/": {
"freenessurl": "https://www.cinemovies.video/movies/our-hospitality/",
"imdblookup": "Our Hospitality 1923",
"status": "free",
"title": "Our Hospitality",
"year": 1923
},
"http://www.imdb.com/title/tt0015324/": {
"freenessurl": "https://www.cinemovies.video/movies/sherlock-jr/",
"imdblookup": "Sherlock, Jr. 1924",
"status": "free",
"title": "Sherlock, Jr.",
"year": 1924
},
"http://www.imdb.com/title/tt0017870/": {
"freenessurl": "https://www.cinemovies.video/movies/woos-whoopee/",
"imdblookup": "Woos Whoopee 1928",
"status": "free",
"title": "Woos Whoopee",
"year": 1928
},
"http://www.imdb.com/title/tt0018744/": {
"freenessurl": "https://www.cinemovies.video/movies/the-campus-vamp/",
"imdblookup": "The Campus Vamp 1928",
"status": "free",
"title": "The Campus Vamp",
"year": 1928
},
"http://www.imdb.com/title/tt0020413/": {
"freenessurl": "https://www.cinemovies.video/movies/skating-hounds/",
"imdblookup": "Skating Hounds 1929",
"status": "free",
"title": "Skating Hounds",
"year": 1929
},
"http://www.imdb.com/title/tt0020481/": {
"freenessurl": "https://www.cinemovies.video/tvshows/tarzan-the-tiger/",
"imdblookup": "Tarzan the Tiger 1929",
"status": "free",
"title": "Tarzan the Tiger",
"year": 1929
},
"http://www.imdb.com/title/tt0021083/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-lone-defender/",
"imdblookup": "The Lone Defender 1930",
"status": "free",
"title": "The Lone Defender",
"year": 1930
},
"http://www.imdb.com/title/tt0021274/": {
"freenessurl": "https://www.cinemovies.video/movies/puddle-pranks/",
"imdblookup": "Puddle Pranks 1930",
"status": "free",
"title": "Puddle Pranks",
"year": 1930
},
"http://www.imdb.com/title/tt0021643/": {
"freenessurl": "https://www.cinemovies.video/tvshows/battling-with-buffalo-bill/",
"imdblookup": "Battling with Buffalo Bill 1931",
"status": "free",
"title": "Battling with Buffalo Bill",
"year": 1931
},
"http://www.imdb.com/title/tt0021861/": {
"freenessurl": "https://www.cinemovies.video/movies/fighting-caravans/",
"imdblookup": "Fighting Caravans 1931",
"status": "free",
"title": "Fighting Caravans",
"year": 1931
},
"http://www.imdb.com/title/tt0021877/": {
"freenessurl": "https://www.cinemovies.video/movies/the-fly-guy/",
"imdblookup": "The Fly Guy 1931",
"status": "free",
"title": "The Fly Guy",
"year": 1931
},
"http://www.imdb.com/title/tt0021996/": {
"freenessurl": "https://www.cinemovies.video/movies/in-my-merry-oldsmobile/",
"imdblookup": "In My Merry Oldsmobile 1931",
"status": "free",
"title": "In My Merry Oldsmobile",
"year": 1931
},
"http://www.imdb.com/title/tt0022045/": {
"freenessurl": "https://www.cinemovies.video/movies/lady-play-your-mandolin/",
"imdblookup": "Lady, Play Your Mandolin! 1931",
"status": "free",
"title": "Lady, Play Your Mandolin!",
"year": 1931
},
"http://www.imdb.com/title/tt0022078/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-lightning-warrior/",
"imdblookup": "The Lightning Warrior 1931",
"status": "free",
"title": "The Lightning Warrior",
"year": 1931
},
"http://www.imdb.com/title/tt0022254/": {
"freenessurl": "https://www.cinemovies.video/movies/parlor-bedroom-and-bath/",
"imdblookup": "Parlor, Bedroom and Bath 1931",
"status": "free",
"title": "Parlor, Bedroom and Bath",
"year": 1931
},
"http://www.imdb.com/title/tt0022922/": {
"freenessurl": "https://www.cinemovies.video/movies/funny-face/",
"imdblookup": "Funny Face 1932",
"status": "free",
"title": "Funny Face",
"year": 1932
},
"http://www.imdb.com/title/tt0023038/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-hurricane-express/",
"imdblookup": "The Hurricane Express 1932",
"status": "free",
"title": "The Hurricane Express",
"year": 1932
},
"http://www.imdb.com/title/tt0023119/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-last-of-the-mohicans/",
"imdblookup": "The Last of the Mohicans 1932",
"status": "free",
"title": "The Last of the Mohicans",
"year": 1932
},
"http://www.imdb.com/title/tt0023238/": {
"freenessurl": "https://www.cinemovies.video/movies/the-most-dangerous-game/",
"imdblookup": "The Most Dangerous Game 1932",
"status": "free",
"title": "The Most Dangerous Game",
"year": 1932
},
"http://www.imdb.com/title/tt0023456/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-shadow-of-the-eagle/",
"imdblookup": "The Shadow of the Eagle 1932",
"status": "free",
"title": "The Shadow of the Eagle",
"year": 1932
},
"http://www.imdb.com/title/tt0023799/": {
"freenessurl": "https://www.cinemovies.video/movies/betty-boops-crazy-inventions/",
"imdblookup": "Betty Boop's Crazy Inventions 1933",
"status": "free",
"title": "Betty Boop's Crazy Inventions",
"year": 1933
},
"http://www.imdb.com/title/tt0023801/": {
"freenessurl": "https://www.cinemovies.video/movies/betty-boops-ker-choo/",
"imdblookup": "Betty Boop's Ker-Choo 1933",
"status": "free",
"title": "Betty Boop's Ker-Choo",
"year": 1933
},
"http://www.imdb.com/title/tt0023889/": {
"freenessurl": "https://www.cinemovies.video/movies/christmas-night/",
"imdblookup": "Christmas Night 1933",
"status": "free",
"title": "Christmas Night",
"year": 1933
},
"http://www.imdb.com/title/tt0024076/": {
"freenessurl": "https://www.cinemovies.video/movies/goofy-goat-antics/",
"imdblookup": "Goofy Goat Antics 1931",
"status": "free",
"title": "Goofy Goat Antics",
"year": 1931
},
"http://www.imdb.com/title/tt0024124/": {
"freenessurl": "https://www.cinemovies.video/movies/his-private-secretary/",
"imdblookup": "His Private Secretary 1933",
"status": "free",
"title": "His Private Secretary",
"year": 1933
},
"http://www.imdb.com/title/tt0024187/": {
"freenessurl": "https://www.cinemovies.video/movies/is-my-palm-read/",
"imdblookup": "Is My Palm Read 1933",
"status": "free",
"title": "Is My Palm Read",
"year": 1933
},
"http://www.imdb.com/title/tt0024367/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-mystery-squadron/",
"imdblookup": "The Mystery Squadron 1933",
"status": "free",
"title": "The Mystery Squadron",
"year": 1933
},
"http://www.imdb.com/title/tt0024500/": {
"freenessurl": "https://www.cinemovies.video/movies/riders-of-destiny/",
"imdblookup": "Riders of Destiny 1933",
"status": "free",
"title": "Riders of Destiny",
"year": 1933
},
"http://www.imdb.com/title/tt0024547/": {
"freenessurl": "https://www.cinemovies.video/movies/shanty-santy-claus-lives/",
"imdblookup": "The Shanty Where Santy Claus Lives 1933",
"status": "free",
"title": "The Shanty Where Santy Claus Lives",
"year": 1933
},
"http://www.imdb.com/title/tt0024670/": {
"freenessurl": "https://www.cinemovies.video/movies/tied-for-life/",
"imdblookup": "Tied for Life 1933",
"status": "free",
"title": "Tied for Life",
"year": 1933
},
"http://www.imdb.com/title/tt0024702/": {
"freenessurl": "https://www.cinemovies.video/movies/tumble-down-town/",
"imdblookup": "Tumble Down Town 1933",
"status": "free",
"title": "Tumble Down Town",
"year": 1933
},
"http://www.imdb.com/title/tt0024880/": {
"freenessurl": "https://www.cinemovies.video/movies/betty-boops-rise-to-fame/",
"imdblookup": "Betty Boop's Rise to Fame 1934",
"status": "free",
"title": "Betty Boop's Rise to Fame",
"year": 1934
},
"http://www.imdb.com/title/tt0024882/": {
"freenessurl": "https://www.cinemovies.video/movies/betty-in-blunderland/",
"imdblookup": "Betty in Blunderland 1934",
"status": "free",
"title": "Betty in Blunderland",
"year": 1934
},
"http://www.imdb.com/title/tt0024902/": {
"freenessurl": "https://www.cinemovies.video/movies/blue-steel/",
"imdblookup": "Blue Steel 1934",
"status": "free",
"title": "Blue Steel",
"year": 1934
},
"http://www.imdb.com/title/tt0025321/": {
"freenessurl": "https://www.cinemovies.video/movies/jack-frost/",
"imdblookup": "Jack Frost 1934",
"status": "free",
"title": "Jack Frost",
"year": 1934
},
"http://www.imdb.com/title/tt0025328/": {
"freenessurl": "https://www.cinemovies.video/movies/jest-of-honor/",
"imdblookup": "Jest of Honor 1934",
"status": "free",
"title": "Jest of Honor",
"year": 1934
},
"http://www.imdb.com/title/tt0025335/": {
"freenessurl": "https://www.cinemovies.video/movies/judge-priest/",
"imdblookup": "Judge Priest 1934",
"status": "free",
"title": "Judge Priest",
"year": 1934
},
"http://www.imdb.com/title/tt0025665/": {
"freenessurl": "https://www.cinemovies.video/movies/poor-cinderella/",
"imdblookup": "Poor Cinderella 1934",
"status": "free",
"title": "Poor Cinderella",
"year": 1934
},
"http://www.imdb.com/title/tt0025699/": {
"freenessurl": "https://www.cinemovies.video/movies/randy-rides-alone/",
"imdblookup": "Randy Rides Alone 1934",
"status": "free",
"title": "Randy Rides Alone",
"year": 1934
},
"http://www.imdb.com/title/tt0025969/": {
"freenessurl": "https://www.cinemovies.video/movies/west-of-the-divide/",
"imdblookup": "West of the Divide 1934",
"status": "free",
"title": "West of the Divide",
"year": 1934
},
"http://www.imdb.com/title/tt0026038/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-adventures-of-rex-and-rinty/",
"imdblookup": "The Adventures of Rex and Rinty 1935",
"status": "free",
"title": "The Adventures of Rex and Rinty",
"year": 1935
},
"http://www.imdb.com/title/tt0026109/": {
"freenessurl": "https://www.cinemovies.video/movies/betty-boop-and-grampy/",
"imdblookup": "Betty Boop and Grampy 1935",
"status": "free",
"title": "Betty Boop and Grampy",
"year": 1935
},
"http://www.imdb.com/title/tt0026110/": {
"freenessurl": "https://www.cinemovies.video/movies/betty-boop-with-henry-the-funniest-living-american/",
"imdblookup": "Betty Boop with Henry the Funniest Living American 1935",
"status": "free",
"title": "Betty Boop with Henry the Funniest Living American",
"year": 1935
},
"http://www.imdb.com/title/tt0026257/": {
"freenessurl": "https://www.cinemovies.video/movies/dancing-on-the-moon/",
"imdblookup": "Dancing on the Moon 1935",
"status": "free",
"title": "Dancing on the Moon",
"year": 1935
},
"http://www.imdb.com/title/tt0026273/": {
"freenessurl": "https://www.cinemovies.video/movies/the-desert-trail/",
"imdblookup": "The Desert Trail 1935",
"status": "free",
"title": "The Desert Trail",
"year": 1935
},
"http://www.imdb.com/title/tt0026310/": {
"freenessurl": "https://www.cinemovies.video/movies/an-elephant-never-forgets/",
"imdblookup": "An Elephant Never Forgets 1935",
"status": "free",
"title": "An Elephant Never Forgets",
"year": 1935
},
"http://www.imdb.com/title/tt0026553/": {
"freenessurl": "https://www.cinemovies.video/movies/judge-for-a-day/",
"imdblookup": "Judge for a Day 1935",
"status": "free",
"title": "Judge for a Day",
"year": 1935
},
"http://www.imdb.com/title/tt0026669/": {
"freenessurl": "https://www.cinemovies.video/movies/making-stars/",
"imdblookup": "Making Stars 1935",
"status": "free",
"title": "Making Stars",
"year": 1935
},
"http://www.imdb.com/title/tt0026788/": {
"freenessurl": "https://www.cinemovies.video/movies/no-no-a-thousand-times-no/",
"imdblookup": "No! No! A Thousand Times No!! 1935",
"status": "free",
"title": "No! No! A Thousand Times No!!",
"year": 1935
},
"http://www.imdb.com/title/tt0026812/": {
"freenessurl": "https://www.cinemovies.video/movies/old-mother-hubbard/",
"imdblookup": "Old Mother Hubbard 1935",
"status": "free",
"title": "Old Mother Hubbard",
"year": 1935
},
"http://www.imdb.com/title/tt0026846/": {
"freenessurl": "https://www.cinemovies.video/movies/paradise-canyon/",
"imdblookup": "Paradise Canyon 1935",
"status": "free",
"title": "Paradise Canyon",
"year": 1935
},
"http://www.imdb.com/title/tt0027007/": {
"freenessurl": "https://www.cinemovies.video/movies/skull-and-crown/",
"imdblookup": "Skull and Crown 1935",
"status": "free",
"title": "Skull and Crown",
"year": 1935
},
"http://www.imdb.com/title/tt0027045/": {
"freenessurl": "https://www.cinemovies.video/movies/stop-that-noise/",
"imdblookup": "Stop That Noise 1935",
"status": "free",
"title": "Stop That Noise",
"year": 1935
},
"http://www.imdb.com/title/tt0027061/": {
"freenessurl": "https://www.cinemovies.video/movies/swat-the-fly/",
"imdblookup": "Swat the Fly 1935",
"status": "free",
"title": "Swat the Fly",
"year": 1935
},
"http://www.imdb.com/title/tt0027087/": {
"freenessurl": "https://www.cinemovies.video/movies/texas-terror/",
"imdblookup": "Texas Terror 1935",
"status": "free",
"title": "Texas Terror",
"year": 1935
},
"http://www.imdb.com/title/tt0027270/": {
"freenessurl": "https://www.cinemovies.video/movies/ali-baba/",
"imdblookup": "Ali Baba 1936",
"status": "free",
"title": "Ali Baba",
"year": 1936
},
"http://www.imdb.com/title/tt0027352/": {
"freenessurl": "https://www.cinemovies.video/movies/betty-boop-and-little-jimmy/",
"imdblookup": "Betty Boop and Little Jimmy 1936",
"status": "free",
"title": "Betty Boop and Little Jimmy",
"year": 1936
},
"http://www.imdb.com/title/tt0027446/": {
"freenessurl": "https://www.cinemovies.video/movies/christmas-comes-year/",
"imdblookup": "Christmas Comes but Once a Year 1936",
"status": "free",
"title": "Christmas Comes but Once a Year",
"year": 1936
},
"http://www.imdb.com/title/tt0027529/": {
"freenessurl": "https://www.cinemovies.video/movies/disorder-in-the-court/",
"imdblookup": "Disorder in the Court 1936",
"status": "free",
"title": "Disorder in the Court",
"year": 1936
},
"http://www.imdb.com/title/tt0027691/": {
"freenessurl": "https://www.cinemovies.video/movies/grampys-indoor-outing/",
"imdblookup": "Grampy's Indoor Outing 1936",
"status": "free",
"title": "Grampy's Indoor Outing",
"year": 1936
},
"http://www.imdb.com/title/tt0027699/": {
"freenessurl": "https://www.cinemovies.video/movies/greedy-humpty-dumpty/",
"imdblookup": "Greedy Humpty Dumpty 1936",
"status": "free",
"title": "Greedy Humpty Dumpty",
"year": 1936
},
"http://www.imdb.com/title/tt0027717/": {
"freenessurl": "https://www.cinemovies.video/movies/happy-you-and-merry-me/",
"imdblookup": "Happy You and Merry Me 1936",
"status": "free",
"title": "Happy You and Merry Me",
"year": 1936
},
"http://www.imdb.com/title/tt0027722/": {
"freenessurl": "https://www.cinemovies.video/movies/hawaiian-birds/",
"imdblookup": "Hawaiian Birds 1936",
"status": "free",
"title": "Hawaiian Birds",
"year": 1936
},
"http://www.imdb.com/title/tt0027787/": {
"freenessurl": "https://www.cinemovies.video/movies/im-in-the-army-now/",
"imdblookup": "I'm in the Army Now 1936",
"status": "free",
"title": "I'm in the Army Now",
"year": 1936
},
"http://www.imdb.com/title/tt0027849/": {
"freenessurl": "https://www.cinemovies.video/movies/king-of-the-pecos/",
"imdblookup": "King of the Pecos 1936",
"status": "free",
"title": "King of the Pecos",
"year": 1936
},
"http://www.imdb.com/title/tt0027893/": {
"freenessurl": "https://www.cinemovies.video/movies/little-lord-fauntleroy/",
"imdblookup": "Little Lord Fauntleroy 1936",
"status": "free",
"title": "Little Lord Fauntleroy",
"year": 1936
},
"http://www.imdb.com/title/tt0027898/": {
"freenessurl": "https://www.cinemovies.video/movies/the-little-stranger/",
"imdblookup": "The Little Stranger 1936",
"status": "free",
"title": "The Little Stranger",
"year": 1936
},
"http://www.imdb.com/title/tt0027899/": {
"freenessurl": "https://www.cinemovies.video/movies/little-swee-pea/",
"imdblookup": "Little Swee' Pea 1936",
"status": "free",
"title": "Little Swee' Pea",
"year": 1936
},
"http://www.imdb.com/title/tt0027984/": {
"freenessurl": "https://www.cinemovies.video/movies/more-pep/",
"imdblookup": "More Pep 1936",
"status": "free",
"title": "More Pep",
"year": 1936
},
"http://www.imdb.com/title/tt0028119/": {
"freenessurl": "https://www.cinemovies.video/movies/popeye-the-sailor-meets-sindbad-the-sailor/",
"imdblookup": "Popeye the Sailor Meets Sindbad the Sailor 1936",
"status": "free",
"title": "Popeye the Sailor Meets Sindbad the Sailor",
"year": 1936
},
"http://www.imdb.com/title/tt0028198/": {
"freenessurl": "https://www.cinemovies.video/tvshows/robinson-crusoe-of-clipper-island/",
"imdblookup": "Robinson Crusoe Of Clipper Island 1936",
"status": "free",
"title": "Robinson Crusoe Of Clipper Island",
"year": 1936
},
"http://www.imdb.com/title/tt0028277/": {
"freenessurl": "https://www.cinemovies.video/movies/somewhere-in-dreamland/",
"imdblookup": "Somewhere in Dreamland 1936",
"status": "free",
"title": "Somewhere in Dreamland",
"year": 1936
},
"http://www.imdb.com/title/tt0028482/": {
"freenessurl": "https://www.cinemovies.video/movies/we-did-it/",
"imdblookup": "We Did It 1936",
"status": "free",
"title": "We Did It",
"year": 1936
},
"http://www.imdb.com/title/tt0028510/": {
"freenessurl": "https://www.cinemovies.video/movies/winds-of-the-wasteland/",
"imdblookup": "Winds of the Wasteland 1936",
"status": "free",
"title": "Winds of the Wasteland",
"year": 1936
},
"http://www.imdb.com/title/tt0028526/": {
"freenessurl": "https://www.cinemovies.video/movies/youre-not-built-that-way/",
"imdblookup": "You're Not Built That Way 1936",
"status": "free",
"title": "You're Not Built That Way",
"year": 1936
},
"http://www.imdb.com/title/tt0028653/": {
"freenessurl": "https://www.cinemovies.video/movies/born-to-the-west/",
"imdblookup": "Born to the West 1937",
"status": "free",
"title": "Born to the West",
"year": 1937
},
"http://www.imdb.com/title/tt0028787/": {
"freenessurl": "https://www.cinemovies.video/movies/ding-dong-doggie/",
"imdblookup": "Ding Dong Doggie 1937",
"status": "free",
"title": "Ding Dong Doggie",
"year": 1937
},
"http://www.imdb.com/title/tt0028819/": {
"freenessurl": "https://www.cinemovies.video/movies/educated-fish/",
"imdblookup": "Educated Fish 1937",
"status": "free",
"title": "Educated Fish",
"year": 1937
},
"http://www.imdb.com/title/tt0028986/": {
"freenessurl": "https://www.cinemovies.video/movies/heart-of-the-rockies/",
"imdblookup": "Heart of the Rockies 1937",
"status": "free",
"title": "Heart of the Rockies",
"year": 1937
},
"http://www.imdb.com/title/tt0029037/": {
"freenessurl": "https://www.cinemovies.video/movies/i-never-changes-my-altitude/",
"imdblookup": "I Never Changes My Altitude 1937",
"status": "free",
"title": "I Never Changes My Altitude",
"year": 1937
},
"http://www.imdb.com/title/tt0029322/": {
"freenessurl": "https://www.cinemovies.video/movies/nothing-sacred/",
"imdblookup": "Nothing Sacred 1937",
"status": "free",
"title": "Nothing Sacred",
"year": 1937
},
"http://www.imdb.com/title/tt0029370/": {
"freenessurl": "https://www.cinemovies.video/movies/the-paneless-window-washer/",
"imdblookup": "The Paneless Window Washer 1937",
"status": "free",
"title": "The Paneless Window Washer",
"year": 1937
},
"http://www.imdb.com/title/tt0029384/": {
"freenessurl": "https://www.cinemovies.video/movies/peeping-penguins/",
"imdblookup": "Peeping Penguins 1937",
"status": "free",
"title": "Peeping Penguins",
"year": 1937
},
"http://www.imdb.com/title/tt0029447/": {
"freenessurl": "https://www.cinemovies.video/movies/pudgy-picks-a-fight/",
"imdblookup": "Pudgy Picks a Fight 1937",
"status": "free",
"title": "Pudgy Picks a Fight",
"year": 1937
},
"http://www.imdb.com/title/tt0029448/": {
"freenessurl": "https://www.cinemovies.video/movies/pudgy-takes-a-bow-wow/",
"imdblookup": "Pudgy Takes a Bow-Wow 1937",
"status": "free",
"title": "Pudgy Takes a Bow-Wow",
"year": 1937
},
"http://www.imdb.com/title/tt0029486/": {
"freenessurl": "https://www.cinemovies.video/movies/riders-of-the-whistling-skull/",
"imdblookup": "Riders of the Whistling Skull 1937",
"status": "free",
"title": "Riders of the Whistling Skull",
"year": 1937
},
"http://www.imdb.com/title/tt0029508/": {
"freenessurl": "https://www.cinemovies.video/tvshows/sos-coast-guard/",
"imdblookup": "SOS Coast Guard 1937",
"status": "free",
"title": "SOS Coast Guard",
"year": 1937
},
"http://www.imdb.com/title/tt0029773/": {
"freenessurl": "https://www.cinemovies.video/movies/whoops-im-a-cowboy/",
"imdblookup": "Whoops! I'm a Cowboy 1937",
"status": "free",
"title": "Whoops! I'm a Cowboy",
"year": 1937
},
"http://www.imdb.com/title/tt0029898/": {
"freenessurl": "https://www.cinemovies.video/movies/barefoot-boy/",
"imdblookup": "Barefoot Boy 1938",
"status": "free",
"title": "Barefoot Boy",
"year": 1938
},
"http://www.imdb.com/title/tt0030043/": {
"freenessurl": "https://www.cinemovies.video/movies/a-date-to-skate/",
"imdblookup": "A Date to Skate 1938",
"status": "free",
"title": "A Date to Skate",
"year": 1938
},
"http://www.imdb.com/title/tt0030215/": {
"freenessurl": "https://www.cinemovies.video/movies/have-you-got-any-castles/",
"imdblookup": "Have You Got Any Castles? 1938",
"status": "free",
"title": "Have You Got Any Castles?",
"year": 1938
},
"http://www.imdb.com/title/tt0031036/": {
"freenessurl": "https://www.cinemovies.video/movies/always-kickin/",
"imdblookup": "Always Kickin' 1939",
"status": "free",
"title": "Always Kickin'",
"year": 1939
},
"http://www.imdb.com/title/tt0031199/": {
"freenessurl": "https://www.cinemovies.video/movies/customers-wanted/",
"imdblookup": "Customers Wanted 1939",
"status": "free",
"title": "Customers Wanted",
"year": 1939
},
"http://www.imdb.com/title/tt0031202/": {
"freenessurl": "https://www.cinemovies.video/movies/daffy-duck-and-the-dinosaur/",
"imdblookup": "Daffy Duck and the Dinosaur 1939",
"status": "free",
"title": "Daffy Duck and the Dinosaur",
"year": 1939
},
"http://www.imdb.com/title/tt0031204/": {
"freenessurl": "https://www.cinemovies.video/movies/danger-flight/",
"imdblookup": "Danger Flight 1939",
"status": "free",
"title": "Danger Flight",
"year": 1939
},
"http://www.imdb.com/title/tt0031216/": {
"freenessurl": "https://www.cinemovies.video/movies/days-of-jesse-james/",
"imdblookup": "Days of Jesse James 1939",
"status": "free",
"title": "Days of Jesse James",
"year": 1939
},
"http://www.imdb.com/title/tt0031295/": {
"freenessurl": "https://www.cinemovies.video/movies/fangs-of-the-wild/",
"imdblookup": "Fangs of the Wild 1939",
"status": "free",
"title": "Fangs of the Wild",
"year": 1939
},
"http://www.imdb.com/title/tt0031344/": {
"freenessurl": "https://www.cinemovies.video/movies/the-fresh-vegetable-mystery/",
"imdblookup": "The Fresh Vegetable Mystery 1939",
"status": "free",
"title": "The Fresh Vegetable Mystery",
"year": 1939
},
"http://www.imdb.com/title/tt0031397/": {
"freenessurl": "https://www.cinemovies.video/movies/gullivers-travels/",
"imdblookup": "Gulliver's Travels 1939",
"status": "free",
"title": "Gulliver's Travels",
"year": 1939
},
"http://www.imdb.com/title/tt0031593/": {
"freenessurl": "https://www.cinemovies.video/movies/love-affair/",
"imdblookup": "Love Affair 1939",
"status": "free",
"title": "Love Affair",
"year": 1939
},
"http://www.imdb.com/title/tt0031602/": {
"freenessurl": "https://www.cinemovies.video/movies/made-for-each-other/",
"imdblookup": "Made for Each Other 1939",
"status": "free",
"title": "Made for Each Other",
"year": 1939
},
"http://www.imdb.com/title/tt0031689/": {
"freenessurl": "https://www.cinemovies.video/movies/musical-mountaineers/",
"imdblookup": "Musical Mountaineers 1939",
"status": "free",
"title": "Musical Mountaineers",
"year": 1939
},
"http://www.imdb.com/title/tt0031694/": {
"freenessurl": "https://www.cinemovies.video/movies/my-friend-the-monkey/",
"imdblookup": "My Friend the Monkey 1939",
"status": "free",
"title": "My Friend the Monkey",
"year": 1939
},
"http://www.imdb.com/title/tt0031855/": {
"freenessurl": "https://www.cinemovies.video/movies/rhythm-on-the-reservation/",
"imdblookup": "Rhythm on the Reservation 1939",
"status": "free",
"title": "Rhythm on the Reservation",
"year": 1939
},
"http://www.imdb.com/title/tt0031869/": {
"freenessurl": "https://www.cinemovies.video/movies/robin-hood-makes-good/",
"imdblookup": "Robin Hood Makes Good 1939",
"status": "free",
"title": "Robin Hood Makes Good",
"year": 1939
},
"http://www.imdb.com/title/tt0032214/": {
"freenessurl": "https://www.cinemovies.video/movies/ants-in-the-plants/",
"imdblookup": "Ants in the Plants 1940",
"status": "free",
"title": "Ants in the Plants",
"year": 1940
},
"http://www.imdb.com/title/tt0032559/": {
"freenessurl": "https://www.cinemovies.video/tvshows/the-green-hornet-strikes-again/",
"imdblookup": "The Green Hornet Strikes Again! 1940",
"status": "free",
"title": "The Green Hornet Strikes Again!",
"year": 1940
},
"http://www.imdb.com/title/tt0032716/": {
"freenessurl": "https://www.cinemovies.video/movies/little-lambkin/",
"imdblookup": "Little Lambkin 1940",
"status": "free",
"title": "Little Lambkin",
"year": 1940
},
"http://www.imdb.com/title/tt0032881/": {
"freenessurl": "https://www.cinemovies.video/movies/our-town/",
"imdblookup": "Our Town 1940",
"status": "free",
"title": "Our Town",
"year": 1940
},
"http://www.imdb.com/title/tt0033066/": {
"freenessurl": "https://www.cinemovies.video/movies/snubbed-by-a-snob/",
"imdblookup": "Snubbed by a Snob 1940",
"status": "free",
"title": "Snubbed by a Snob",
"year": 1940
},
"http://www.imdb.com/title/tt0033214/": {
"freenessurl": "https://www.cinemovies.video/movies/up-in-the-air/",
"imdblookup": "Up in the Air 1940",
"status": "free",
"title": "Up in the Air",
"year": 1940
},
"http://www.imdb.com/title/tt0033280/": {
"freenessurl": "https://www.cinemovies.video/movies/you-cant-shoe-a-horsefly/",
"imdblookup": "You Can't Shoe a Horsefly 1940",
"status": "free",
"title": "You Can't Shoe a Horsefly",
"year": 1940
},
"http://www.imdb.com/title/tt0033317/": {
"freenessurl": "https://www.cinemovies.video/tvshows/adventures-of-captain-marvel/",
"imdblookup": "Adventures of Captain Marvel 1941",
"status": "free",
"title": "Adventures of Captain Marvel",
"year": 1941
},
"http://www.imdb.com/title/tt0033469/": {
"freenessurl": "https://www.cinemovies.video/movies/city-of-missing-girls/",
"imdblookup": "City of Missing Girls 1941",
"status": "free",
"title": "City of Missing Girls",
"year": 1941
},
"http://www.imdb.com/title/tt0033777/": {
"freenessurl": "https://www.cinemovies.video/movies/jungle-man/",
"imdblookup": "Jungle Man 1941",
"status": "free",
"title": "Jungle Man",
"year": 1941
},
"http://www.imdb.com/title/tt0033822/": {
"freenessurl": "https://www.cinemovies.video/movies/law-of-the-wolf/",
"imdblookup": "Law of the Wolf 1939",
"status": "free",
"title": "Law of the Wolf",
"year": 1939
},
"http://www.imdb.com/title/tt0033827/": {
"freenessurl": "https://www.cinemovies.video/movies/lets-go-collegiate/",
"imdblookup": "Let's Go Collegiate 1941",
"status": "free",
"title": "Let's Go Collegiate",