-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmockData.js
2900 lines (2899 loc) · 84.7 KB
/
mockData.js
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
const mockData = [
{
Title: 'Becoming Bond',
Year: '2017',
Rated: 'TV-MA',
Released: '20 May 2017',
Runtime: '95 min',
Genre: 'Documentary, Biography, Comedy',
Director: 'Josh Greenbaum',
Writer: 'Josh Greenbaum',
Actors: 'George Lazenby, Josh Lawson, Kassandra Clementi',
Plot: 'A look at the troubled acting career of George Lazenby and his short-lived association with James Bond.',
Language: 'English',
Country: 'United States',
Awards: '2 wins & 2 nominations',
Poster:
'https://m.media-amazon.com/images/M/MV5BZDRiNGIzYWEtYzY3Zi00MTcwLWFkOWItZjEyYjg0OGMxMGQ5XkEyXkFqcGdeQXVyMjM4NjQxMDA@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.5/10',
},
{
Source: 'Rotten Tomatoes',
Value: '78%',
},
{
Source: 'Metacritic',
Value: '65/100',
},
],
Metascore: '65',
imdbRating: '7.5',
imdbVotes: '3,035',
imdbID: 'tt6110504',
Type: 'movie',
DVD: '20 May 2017',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'James Bond 007: Everything or Nothing',
Year: '2003',
Rated: 'T',
Released: '18 Feb 2004',
Runtime: 'N/A',
Genre: 'Action, Adventure, Sci-Fi, Thriller',
Director: 'Scot Bayless',
Writer:
'Danny Bilson (story), Paul De Meo (story), Bruce Feirstein, Ian Fleming (characters), Nuno Miranda (adaptation), Nuno Miranda (translation)',
Actors: 'Pierce Brosnan, John Cleese, Willem Dafoe, Judi Dench',
Plot: "007 and Serena St. Germaine discover that Katya Nadonova's project, nanobots designed to repair nuclear reactors; have been stolen by Nikolai Diavolo. Together the two set off to new Orleans and beyond to confront Diavolo.",
Language: 'English, Russian, Spanish',
Country: 'USA',
Awards: '1 win & 2 nominations.',
Poster:
'https://m.media-amazon.com/images/M/MV5BNzhiNjgxNGMtMzg0ZS00ODMwLTk5MTYtYzI0NDBmOThlZjY3XkEyXkFqcGdeQXVyNTEwNDY2MjU@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.9/10',
},
],
Metascore: 'N/A',
imdbRating: '7.9',
imdbVotes: '2,222',
imdbID: 'tt0366629',
Type: 'game',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: "Demon Slayer: Kimetsu no Yaiba - Sibling's Bond",
Year: '2019',
Rated: 'N/A',
Released: '29 Mar 2019',
Runtime: '105 min',
Genre: 'Animation, Action, Fantasy',
Director: 'Haruo Sotozaki',
Writer: 'Koyoharu Gotouge',
Actors: 'Zach Aguilar, Ryan Bartley, Brook Chalmers',
Plot: "Tanjiro finds his family slaughtered and the lone survivor, his sister Nezuko Kamado, turned into a Demon. To his surprise, however, Nezuko still shows signs of human emotion and thought. Thus begins Tanjiro's journey to seek out ...",
Language: 'Japanese',
Country: 'Japan',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BNmU0NjY3ZDAtYWVkNC00ZjI2LTk5MGItNGRiZTdlYWQyNjQxXkEyXkFqcGdeQXVyMTA5NzUzODM4._V1_SX300.jpg',
Ratings: [],
Metascore: 'N/A',
imdbRating: 'N/A',
imdbVotes: '2,031',
imdbID: 'tt14888860',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'James Bond 007: Blood Stone',
Year: '2010',
Rated: 'T',
Released: '02 Nov 2010',
Runtime: 'N/A',
Genre: 'Action, Adventure, Thriller',
Director: 'Kate Saxon',
Writer: 'Bruce Feirstein (story), Adam Foshko (dialogue)',
Actors: 'Daniel Craig, Judi Dench, Joss Stone, Rory Kinnear',
Plot: "007 is tasked with saving Great Britain from a maniac who's gotten his hands on military grade bio weapons.",
Language: 'English',
Country: 'USA',
Awards: '1 win & 4 nominations.',
Poster:
'https://m.media-amazon.com/images/M/MV5BMTcxMzE4NDg0NF5BMl5BanBnXkFtZTgwMjg5Mjc1MDE@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.5/10',
},
],
Metascore: 'N/A',
imdbRating: '7.5',
imdbVotes: '1,945',
imdbID: 'tt1692489',
Type: 'game',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Ek Rishtaa: The Bond of Love',
Year: '2001',
Rated: 'Not Rated',
Released: '18 May 2001',
Runtime: '174 min',
Genre: 'Drama',
Director: 'Suneel Darshan',
Writer: 'Suneel Darshan, Robin Bhatt, K.K. Singh',
Actors: 'Amitabh Bachchan, Rakhee Gulzar, Akshay Kumar',
Plot: "Vijay Kapoor, a wealthy businessman and his family are deceived by Rajesh, Vijay Kapoor's employee and son in law. A struggle begins by both father-son duos to regain their business and position.",
Language: 'Hindi',
Country: 'India',
Awards: '1 nomination',
Poster:
'https://m.media-amazon.com/images/M/MV5BZmNmOTM5ZGUtNTFiZS00M2E2LTk2NzAtNTJlZmQ0MGQyOTMwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '5.2/10',
},
],
Metascore: 'N/A',
imdbRating: '5.2',
imdbVotes: '1,721',
imdbID: 'tt0284083',
Type: 'movie',
DVD: '01 Aug 2001',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'The Bond',
Year: '1918',
Rated: 'N/A',
Released: '20 Oct 1969',
Runtime: '10 min',
Genre: 'Short, Comedy',
Director: 'Charles Chaplin',
Writer: 'Charles Chaplin',
Actors: 'Charles Chaplin, Edna Purviance, Albert Austin',
Plot: 'Charlie and friends illustrate various bonds in life and the most important, Liberty Bonds for the war...',
Language: 'None, English',
Country: 'United States',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZmE3MzIxMDMtNzJiOC00YzY5LTg5ZWUtNTZiZDM1Y2ZmNDYyXkEyXkFqcGdeQXVyNDUzNzExOTE@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '5.4/10',
},
],
Metascore: 'N/A',
imdbRating: '5.4',
imdbVotes: '1,126',
imdbID: 'tt0008907',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Mad Mission 3: Our Man from Bond Street',
Year: '1984',
Rated: 'N/A',
Released: '26 Jan 1984',
Runtime: '81 min',
Genre: 'Action, Comedy',
Director: 'Hark Tsui',
Writer: 'Larry Dolgin, Raymond Pak-Ming Wong',
Actors: 'Samuel Hui, Karl Maka, Sylvia Chang',
Plot: 'A master thief is duped by lookalikes for James Bond and the Queen of England into stealing a valuable gem from a heavily guarded location then must help the police recover it.',
Language: 'Cantonese, English',
Country: 'Hong Kong',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZWNkNDkzNjUtZWEwMy00YWIyLWFmNzctNjY5N2YyNDA5OGZmXkEyXkFqcGdeQXVyNDkyMzMyODM@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '5.8/10',
},
],
Metascore: 'N/A',
imdbRating: '5.8',
imdbVotes: '1,065',
imdbID: 'tt0088457',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Bond of Silence',
Year: '2010',
Rated: 'TV-PG',
Released: '23 Aug 2010',
Runtime: '98 min',
Genre: 'Drama',
Director: 'Peter Werner',
Writer: 'Brian D. Young, Edithe Swensen, Teena Booth',
Actors: 'Kim Raver, Greg Grunberg, Charlie McDermott',
Plot: 'Starring Kim Raver and Greg Grunberg. A widow must pierce the veil of secrecy uniting a group of teens and their parents in order to find out how her husband died. Based on a true story.',
Language: 'English',
Country: 'United States',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BYWRlZjVkMGQtNGVjYS00NWJiLThjZjItYjg0OGRhYmY4NTZjXkEyXkFqcGdeQXVyMjcxNjI4NTk@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '6.0/10',
},
],
Metascore: 'N/A',
imdbRating: '6.0',
imdbVotes: '1,014',
imdbID: 'tt1659192',
Type: 'movie',
DVD: '05 Jul 2011',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond',
Year: '2022',
Rated: 'PG-13',
Released: '25 Nov 2022',
Runtime: '114 min',
Genre: 'Animation, Action, Adventure',
Director: 'Yasuhito Kikuchi',
Writer: 'Fuse',
Actors: 'Tia Lynn Ballard, Ben Balmaceda, Bryson Baugus',
Plot: "Corporate worker Mikami is stabbed by a random killer, is reborn to an alternate world. But he is reborn as a slime. He is Thrown into this new world with the name Rimuru, he begins his quest to create a world that's welcoming to ...",
Language: 'Japanese',
Country: 'Japan',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BMTRlMjMzNjItYjJmMi00NjBhLTgxZmYtMzhlYjE1ODlhNjE1XkEyXkFqcGdeQXVyNzI3NjY3NjQ@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '6.8/10',
},
{
Source: 'Metacritic',
Value: '41/100',
},
],
Metascore: '41',
imdbRating: '6.8',
imdbVotes: '735',
imdbID: 'tt15467380',
Type: 'movie',
DVD: 'N/A',
BoxOffice: '$1,588,491',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Bond Girls Are Forever',
Year: '2002',
Rated: 'Unrated',
Released: '06 Nov 2002',
Runtime: '46 min',
Genre: 'Documentary',
Director: 'John Watkin',
Writer: "Maryam d'Abo, John Watkin",
Actors: "Maryam d'Abo, Halle Berry, Ursula Andress",
Plot: 'Through vintage film clips of past Bond movie epics, and with the participation of several former "Bond Girls", the documentary traced the evolution of the typical James Bond heroine from decorative damsel in distress to gutsy par...',
Language: 'English',
Country: 'United States',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BMjMwNTMzNjM5OF5BMl5BanBnXkFtZTgwOTY4OTk1MDE@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '6.5/10',
},
],
Metascore: 'N/A',
imdbRating: '6.5',
imdbVotes: '734',
imdbID: 'tt0353252',
Type: 'movie',
DVD: '31 Jan 2006',
BoxOffice: 'N/A',
Production: 'Metro-Goldwyn-Mayer',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Jatt James Bond',
Year: '2014',
Rated: 'Not Rated',
Released: '25 Apr 2014',
Runtime: '220 min',
Genre: 'Comedy',
Director: 'Rohit Jugraj',
Writer: 'Jass Grewal, Jatinder-Lall, Ed D Singh',
Actors: 'Gippy Grewal, Zareen Khan, Gurpreet Ghuggi',
Plot: 'Shinda was mistreated by his relatives therefore he finds other ways to have his love Laali. Shinda and his two other friends come up with a plan to solve all of their problems.',
Language: 'Punjabi',
Country: 'India',
Awards: '3 wins',
Poster:
'https://m.media-amazon.com/images/M/MV5BOWVmNjQ2YmYtY2M4ZS00NDdkLTljZmUtYTZkNmNjM2FhMWU3XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '6.7/10',
},
],
Metascore: 'N/A',
imdbRating: '6.7',
imdbVotes: '733',
imdbID: 'tt3732110',
Type: 'movie',
DVD: '02 Dec 2016',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Mr. Bond',
Year: '1992',
Rated: 'Not Rated',
Released: '16 Apr 1992',
Runtime: '127 min',
Genre: 'Action, Adventure, Thriller',
Director: 'Raj N. Sippy',
Writer: 'Mohinder Ashish, Iqbal Durrani',
Actors: 'Akshay Kumar, Sheeba Agarwal, Saathi Ganguly',
Plot: "Mr. Bond is an honest, dedicated and capable police officer in Bombay's police force. He faces the toughest case of a lifetime when he must rescue some small children abducted and held as hostages by the underworld don Dragon.",
Language: 'Hindi',
Country: 'India',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZTYzZjI1MWEtMDgxYi00ZGNmLThkOWEtNmJlOWFiZjNmNjE0XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '3.3/10',
},
],
Metascore: 'N/A',
imdbRating: '3.3',
imdbVotes: '673',
imdbID: 'tt0104927',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'James Bond Jr.',
Year: '1991–1992',
Rated: 'TV-Y',
Released: '16 Sep 1991',
Runtime: '30 min',
Genre: 'Animation, Action, Adventure',
Director: 'N/A',
Writer: 'Andy Heyward, Robby London, Michael G. Wilson',
Actors: 'Corey Burton, Jeff Bennett, Jan Rabson',
Plot: "The nephew of MI6's greatest spy carries on his uncle's legacy by combating a rogues' gallery of new and familiar villains with the help of his schoolmates.",
Language: 'English',
Country: 'United States',
Awards: '1 nomination',
Poster:
'https://m.media-amazon.com/images/M/MV5BMTQ2NjkzNTA1N15BMl5BanBnXkFtZTcwMzM1Mjg4NA@@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '6.0/10',
},
],
Metascore: 'N/A',
imdbRating: '6.0',
imdbVotes: '665',
imdbID: 'tt0283744',
Type: 'series',
totalSeasons: '1',
Response: 'True',
},
{
Title: 'James Bond in Agent Under Fire',
Year: '2001',
Rated: 'T',
Released: '13 Nov 2001',
Runtime: 'N/A',
Genre: 'Action, Adventure, Crime, Family, Thriller',
Director: 'N/A',
Writer:
'Danny Bilson, Paul De Meo, Ian Fleming (characters), Nuno Miranda (Portuguese translation and adaptation)',
Actors: 'Adam Blackwood, Caron Pascoe, Miles Anderson, Sydney Rainin-Smith',
Plot: 'After rescuing a CIA agent being held hostage, Bond travels the globe in pursuit of Nigel Bloch, a brilliant madman who is working with a mysterious corporation in a plot involving cloning, kidnapping, and political manipulation.',
Language: 'English',
Country: 'USA, Canada',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BY2NjMjRmZDMtOTVmOC00MzQ4LWE4ZWYtOTE4NWQyMGVlYjlmXkEyXkFqcGdeQXVyNTEwNDY2MjU@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.1/10',
},
],
Metascore: 'N/A',
imdbRating: '7.1',
imdbVotes: '638',
imdbID: 'tt0295846',
Type: 'game',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: "Natsume's Book of Friends the Movie: Ephemeral Bond",
Year: '2018',
Rated: 'N/A',
Released: '29 Sep 2018',
Runtime: '104 min',
Genre: 'Animation, Drama, Fantasy',
Director: 'Hideki Itô, Takahiro Ômori',
Writer: 'Yuki Midorikawa, Sadayuki Murai',
Actors: 'Hiroshi Kamiya, Ayumi Fujimura, Kazuhiko Inoue',
Plot: 'An orphaned teen encounters a supernatural creature that has the ability to look human.',
Language: 'Japanese',
Country: 'Japan',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZmY1ODRkNDMtNjNiMS00MjU2LWFkYTgtODkyMTI2ZmExYzYwXkEyXkFqcGdeQXVyNzEyMDQ1MDA@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.1/10',
},
],
Metascore: 'N/A',
imdbRating: '7.1',
imdbVotes: '548',
imdbID: 'tt9081300',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'The James Bond Story',
Year: '1999',
Rated: 'Unrated',
Released: '08 Jan 2000',
Runtime: '52 min',
Genre: 'Documentary',
Director: 'Chris Hunt',
Writer: 'N/A',
Actors: 'Sean Connery, Michael G. Wilson, Roger Moore',
Plot: 'One Bond is not enough, and this documentary proves it! The James Bond Story celebrates the 39th Anniversary of James Bond in the cinema.',
Language: 'English',
Country: 'United States',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BMTg1ODc0MjkzMF5BMl5BanBnXkFtZTcwMDY2NzEyMQ@@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.1/10',
},
],
Metascore: 'N/A',
imdbRating: '7.1',
imdbVotes: '510',
imdbID: 'tt0239074',
Type: 'movie',
DVD: '25 Apr 2000',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Nims Bond',
Year: '2008',
Rated: 'N/A',
Released: '06 Feb 2008',
Runtime: '115 min',
Genre: 'Comedy, Romance',
Director: 'Ahmad El-Badri, Umar Gabr',
Writer: 'Tareq Abdulgalil, Mohamed Youssef',
Actors: 'Hani Ramzi, Ahmed Rateb, Lotfy Labib',
Plot: 'A clumsy police officer who is a huge fan of the James Bond movies finds himself assigned to solve a murder.',
Language: 'Arabic',
Country: 'Egypt',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZGQ5Mzc4NmMtMDU4Yy00MzczLTliMmYtM2U3MjE3Y2UwYjhmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjQwMjk0NjI@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '3.9/10',
},
],
Metascore: 'N/A',
imdbRating: '3.9',
imdbVotes: '491',
imdbID: 'tt1596777',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title:
'One Piece: Episode of Sabo - Bond of Three Brothers, a Miraculous Reunion and an Inherited Will',
Year: '2015',
Rated: 'N/A',
Released: '22 Aug 2015',
Runtime: 'N/A',
Genre: 'Animation',
Director: 'Gô Koga',
Writer: 'Eiichirô Oda, Hirohiko Uesaka',
Actors: 'Randy E. Aguebor, Greg Ayres, Daniel Baugh',
Plot: 'This TV Special covers the story of Sabo. From his childhood with Luffy and Ace until his reunion with Luffy in Dressrossa from his point of view.',
Language: 'Japanese',
Country: 'Japan',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BYTk0NDAyMTktMjQwMC00NjVlLTk4ZTktMmI5MGU4NzU2ZGQ4XkEyXkFqcGdeQXVyNDkwMzY5NjQ@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.6/10',
},
],
Metascore: 'N/A',
imdbRating: '7.6',
imdbVotes: '458',
imdbID: 'tt6597356',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: "James Bond Supports International Women's Day",
Year: '2011',
Rated: 'N/A',
Released: '05 Mar 2011',
Runtime: '2 min',
Genre: 'Short, Action',
Director: 'Sam Taylor-Johnson',
Writer: 'Jane Goldman',
Actors: 'Judi Dench, Daniel Craig',
Plot: "This short film is made by 'We Are Equals' to celebrate International Women's Day. James Bond video for international women's day shows 007's feminine side. Daniel Craig and Dame Judi Dench team up for two-minute film highlighting...",
Language: 'English',
Country: 'United Kingdom',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BNmQ4OTlmNTUtMmQ1NC00YmI0LTgxYTItYjU5NjJkZjFkZTMyXkEyXkFqcGdeQXVyMjExMDE1MzQ@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '5.7/10',
},
],
Metascore: 'N/A',
imdbRating: '5.7',
imdbVotes: '369',
imdbID: 'tt1858469',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Anna Bond',
Year: '2012',
Rated: 'N/A',
Released: '03 May 2012',
Runtime: '136 min',
Genre: 'Action, Thriller',
Director: 'Soori',
Writer: 'Duniya Soori',
Actors: 'Puneeth Rajkumar, Priyamani, Nidhi Subbaiah',
Plot: '',
Language: 'Kannada',
Country: 'India',
Awards: '1 win & 2 nominations',
Poster:
'https://m.media-amazon.com/images/M/MV5BMzIyNGJiNGMtZTgwZS00Zjg4LThhNjYtMzIyYjhlNmMyZDg1XkEyXkFqcGdeQXVyMzQzMDc2MDk@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '4.3/10',
},
],
Metascore: 'N/A',
imdbRating: '4.3',
imdbVotes: '324',
imdbID: 'tt2146950',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: "Boricua's Bond",
Year: '2000',
Rated: 'R',
Released: '21 Jun 2000',
Runtime: '105 min',
Genre: 'Drama',
Director: 'Val Lik',
Writer: 'Val Lik',
Actors: 'Frankie Negron, Val Lik, Ramses Ignacio',
Plot: "Can a young person in the South Bronx pursue a dream that isn't tied to crime, gang-banging, prostitution, violence, and racism? Tommy is a natural leader and a gifted artist. When Allen, a white kid, moves into the neighborhood w...",
Language: 'English',
Country: 'United States',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BMjA5MDA4NTQyNF5BMl5BanBnXkFtZTYwNDk0Mjk5._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '3.5/10',
},
{
Source: 'Rotten Tomatoes',
Value: '11%',
},
{
Source: 'Metacritic',
Value: '21/100',
},
],
Metascore: '21',
imdbRating: '3.5',
imdbVotes: '292',
imdbID: 'tt0217287',
Type: 'movie',
DVD: '01 Feb 2021',
BoxOffice: '$71,046',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'The Blood Bond',
Year: '2011',
Rated: 'N/A',
Released: '27 Jan 2011',
Runtime: '86 min',
Genre: 'Action, Thriller',
Director: 'Michael Biehn, Antony Szeto',
Writer: 'Bey Logan, Nicholas Eriksson, Dan Bush',
Actors: 'Michael Biehn, Phoenix Chou, Simon Yam',
Plot: 'A world-renowned spiritual leader arrives in the Asian nation of Purma to give a teaching to the faithful. Accompanying him is a retinue of monks and attendants, including his personal bodyguard, Deva, a beautiful Eurasian girl wi...',
Language: 'English',
Country: 'United States, China',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZTkwNTQwNWMtOGUyNS00ZmVmLTk1M2MtMGUyOGFmOWU2YTdkXkEyXkFqcGdeQXVyMjExMzEyNTM@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '3.5/10',
},
],
Metascore: 'N/A',
imdbRating: '3.5',
imdbVotes: '278',
imdbID: 'tt1520399',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Fatal Bond',
Year: '1991',
Rated: 'R',
Released: '05 Mar 1992',
Runtime: '89 min',
Genre: 'Drama, Thriller',
Director: 'Vincent Monton',
Writer: 'Phillip Avalon',
Actors: 'Linda Blair, Jerome Ehlers, Donal Gibson',
Plot: 'A restless hairdresser takes up with a man (Joe Martinez) she knows is wanted by the police. It is only when she realizes that he may be a serial killer, that she starts questioning the relationship.',
Language: 'English',
Country: 'Australia',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZmZmNTllZjctYjVhNi00MTA2LTgzMGMtNTRkMDMxMzkxZTEwXkEyXkFqcGdeQXVyMTk5MjAyMjM@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '4.0/10',
},
],
Metascore: 'N/A',
imdbRating: '4.0',
imdbVotes: '273',
imdbID: 'tt0104233',
Type: 'movie',
DVD: '22 May 2017',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'No Time to Die: Official Title Reveal of Bond 25',
Year: '2019',
Rated: 'N/A',
Released: '20 Aug 2019',
Runtime: '1 min',
Genre: 'Short',
Director: 'N/A',
Writer: 'N/A',
Actors: 'Daniel Craig',
Plot: 'A short video revealing the title of the 25th James Bond movie, "No Time To Die".',
Language: 'English',
Country: 'USA, UK',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZjA3ZjhiODUtN2QxYy00MzlhLWFlYzYtZTg1ODQ2YjM0YjY3XkEyXkFqcGdeQXVyMzM3ODE4MzY@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '8.3/10',
},
],
Metascore: 'N/A',
imdbRating: '8.3',
imdbVotes: '260',
imdbID: 'tt10839440',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'James Bond',
Year: '2015',
Rated: 'N/A',
Released: '24 Jul 2015',
Runtime: '142 min',
Genre: 'Action, Comedy',
Director: 'Sai Kishore Macha',
Writer: 'Shyam Ch, Gopimohan, Sai Kishore Macha',
Actors: 'Allari Naresh, Sakshi Chaudhary, Raghu Babu',
Plot: 'A down-to-earth software employee marries a lady without knowing about her past and criminal activities. Halfway through his marriage, he finds out her background and decides to run away, but ultimately comes to terms with his pro...',
Language: 'Telugu',
Country: 'India',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BM2IwZDRiOTAtNTUxOC00ZWQxLThlYTYtZTM2NTRmMjEzNmQwXkEyXkFqcGdeQXVyODAzNzAwOTU@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '5.5/10',
},
],
Metascore: 'N/A',
imdbRating: '5.5',
imdbVotes: '257',
imdbID: 'tt4896340',
Type: 'movie',
DVD: '02 Aug 2018',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'The Siamese Bond',
Year: '2020',
Rated: 'N/A',
Released: '03 Dec 2020',
Runtime: '80 min',
Genre: 'Drama',
Director: 'Paula Hernández',
Writer: "Leonel D'Agostino, Paula Hernández",
Actors: 'Rita Cortese, Valeria Lois, Sergio Prina',
Plot: "Estela and her mother Clota must travel from Junín, where they live, to the town of Costa Bonita, in Necochea, to see some apartments that Estela's father left her.",
Language: 'Spanish',
Country: 'Argentina',
Awards: '3 wins & 6 nominations',
Poster:
'https://m.media-amazon.com/images/M/MV5BNGM0ZjI3OTItNTg3Ni00NDZjLWFjYzktYzJmMmZiOWQ1NTA5XkEyXkFqcGdeQXVyMjY5NjY2NTk@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.0/10',
},
],
Metascore: 'N/A',
imdbRating: '7.0',
imdbVotes: '256',
imdbID: 'tt13528580',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Happy Anniversary 007: 25 Years of James Bond',
Year: '1987',
Rated: 'N/A',
Released: '13 May 1987',
Runtime: '49 min',
Genre: 'Documentary',
Director: 'Mel Stuart',
Writer: 'Richard Schickel',
Actors: 'Roger Moore, Timothy Dalton',
Plot: 'An hour documentary on the history of Bond for the 25th anniversary of the film series.',
Language: 'English',
Country: 'United States',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BNWE3NzFlZDItZTllNy00ZGE2LTgwMWYtZWI3ZGQyYjY4ZTNiXkEyXkFqcGdeQXVyMTY1MTcxMzc@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '6.7/10',
},
],
Metascore: 'N/A',
imdbRating: '6.7',
imdbVotes: '212',
imdbID: 'tt0223426',
Type: 'movie',
DVD: '24 Oct 1987',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Sean Connery vs James Bond',
Year: '2022',
Rated: 'N/A',
Released: '23 Oct 2022',
Runtime: '53 min',
Genre: 'Documentary, Action, Biography',
Director: 'Gregory Monro',
Writer: 'Gregory Monro',
Actors: 'Sean Connery, John Boorman, Andy Garcia',
Plot: 'Having become a world star thanks to James Bond, Sean Connery, who died in 2020, has never stopped trying to shed the image of a sexy and slightly brutal macho that stuck to 007. A look back at an eclectic career, carried out with...',
Language: 'English',
Country:
'France, Switzerland, Belgium, Poland, Ireland, Austria, Czech Republic, Netherlands, Israel, Brazil',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BNmQ0Mzg1NTItNjZjMi00M2ZjLTkxZDEtYzhhYWMzMmVkMmMxXkEyXkFqcGdeQXVyNTM2NTg3Nzg@._V1_SX300.jpg',
Ratings: [],
Metascore: 'N/A',
imdbRating: 'N/A',
imdbVotes: '209',
imdbID: 'tt22498916',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'Free! Timeless Medley: The Bond',
Year: '2017',
Rated: 'TV-14',
Released: '22 Apr 2017',
Runtime: '94 min',
Genre: 'Animation, Sport',
Director: 'Eisaku Kawanami',
Writer: 'Masahiro Yokotani',
Actors: 'Greg Ayres, Tia Lynn Ballard, Christopher Bevins',
Plot: 'Haruka Nanase agree to join the swimming club after a very long time, and together with his friend tries to mend old bond and win in the regional swimming tournament.',
Language: 'Japanese',
Country: 'Japan',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BZmI4NThhYTctOTNiMi00NDE4LTk1ODQtZWY1NmJhOWEzMzViXkEyXkFqcGdeQXVyNjgwNTk4Mg@@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '7.3/10',
},
],
Metascore: 'N/A',
imdbRating: '7.3',
imdbVotes: '207',
imdbID: 'tt6799508',
Type: 'movie',
DVD: '04 Jan 2019',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',
Response: 'True',
},
{
Title: 'The World of James Bond',
Year: '1995',
Rated: 'G',
Released: '29 Oct 1995',
Runtime: '60 min',
Genre: 'Documentary',
Director: 'Paul Hall, Tom Shelly',
Writer: 'Mark Cowen',
Actors: 'Elizabeth Hurley, Chris Connelly, Andie MacDowell',
Plot: 'Elizabeth Hurley hosts a one hour documentary on the history of the James Bond film series to tie in with the seventeenth Bond film, GoldenEye.',
Language: 'English',
Country: 'United States, United Kingdom',
Awards: 'N/A',
Poster:
'https://m.media-amazon.com/images/M/MV5BMTBhYWYxM2QtMWZhYS00NGYxLWI2Y2MtMDJmZGM2ZjFhZjI5XkEyXkFqcGdeQXVyMTEzNzczMA@@._V1_SX300.jpg',
Ratings: [
{
Source: 'Internet Movie Database',
Value: '6.6/10',
},
],
Metascore: 'N/A',
imdbRating: '6.6',
imdbVotes: '201',
imdbID: 'tt0114982',
Type: 'movie',
DVD: 'N/A',
BoxOffice: 'N/A',
Production: 'N/A',
Website: 'N/A',