generated from CodeYourFuture/tv-show-dom-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shows.js
16424 lines (16419 loc) · 528 KB
/
shows.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
//DO NOT EDIT THIS FILE
//This content is from https://www.tvmaze.com/
//specifically: https://api.tvmaze.com/shows
function getOneShow() {
return {
id: 82,
url: "http://www.tvmaze.com/shows/82/game-of-thrones",
name: "Game of Thrones",
type: "Scripted",
language: "English",
genres: ["Drama", "Adventure", "Fantasy"],
status: "Ended",
runtime: 60,
premiered: "2011-04-17",
officialSite: "http://www.hbo.com/game-of-thrones",
schedule: { time: "21:00", days: ["Sunday"] },
rating: { average: 9.1 },
weight: 97,
network: {
id: 8,
name: "HBO",
country: {
name: "United States",
code: "US",
timezone: "America/New_York",
},
},
webChannel: {
id: 22,
name: "HBO Go",
country: {
name: "United States",
code: "US",
timezone: "America/New_York",
},
},
externals: { tvrage: 24493, thetvdb: 121361, imdb: "tt0944947" },
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_portrait/190/476117.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/190/476117.jpg",
},
summary:
"<p>Based on the bestselling book series <i>A Song of Ice and Fire</i> by George R.R. Martin, this sprawling new HBO drama is set in a world where summers span decades and winters can last a lifetime. From the scheming south and the savage eastern lands, to the frozen north and ancient Wall that protects the realm from the mysterious darkness beyond, the powerful families of the Seven Kingdoms are locked in a battle for the Iron Throne. This is a story of duplicity and treachery, nobility and honor, conquest and triumph. In the <b>Game of Thrones</b>, you either win or you die.</p>",
updated: 1580402781,
_links: {
self: { href: "http://api.tvmaze.com/shows/82" },
previousepisode: { href: "http://api.tvmaze.com/episodes/1623968" },
},
};
}
function getAllShows() {
return [
{
"id": 1632,
"url": "http://www.tvmaze.com/shows/1632/horatio-hornblower",
"name": "Horatio Hornblower",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Action",
"Adventure"
],
"status": "Ended",
"runtime": 120,
"premiered": "1998-10-07",
"officialSite": "https://itvstudios.com/programmes/hornblower",
"schedule": {
"time": "20:00",
"days": [
"Monday",
"Sunday"
]
},
"rating": {
"average": 9.8
},
"weight": 80,
"network": {
"id": 35,
"name": "ITV",
"country": {
"name": "United Kingdom",
"code": "GB",
"timezone": "Europe/London"
}
},
"webChannel": null,
"externals": {
"tvrage": 3900,
"thetvdb": 71493,
"imdb": null
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/9/22757.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/9/22757.jpg"
},
"summary": "<p>The epic saga of legendary seafaring hero Horatio Hornblower comes to swashbuckling life in these epic films based on C.S. Forester's classic novels. As the Napoleonic wars rage, Hornblower survives battle after battle, evades capture, and works his way up the ranks in the king's royal navy. With danger at every turn and unending adventures, Hornblower must use every ounce of his wit and courage to prevail.</p>",
"updated": 1582672886,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/1632"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/142579"
}
}
},
{
"id": 465,
"url": "http://www.tvmaze.com/shows/465/band-of-brothers",
"name": "Band of Brothers",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Action",
"War"
],
"status": "Ended",
"runtime": 60,
"premiered": "2001-09-09",
"officialSite": "http://www.hbo.com/band-of-brothers",
"schedule": {
"time": "20:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.5
},
"weight": 96,
"network": {
"id": 8,
"name": "HBO",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 2708,
"thetvdb": 74205,
"imdb": "tt0185906"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/80/201679.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/80/201679.jpg"
},
"summary": "<p>Drawn from interviews with survivors of Easy Company, as well as their journals and letters, <b>Band of Brothers</b> chronicles the experiences of these men from paratrooper training in Georgia through the end of the war. As an elite rifle company parachuting into Normandy early on D-Day morning, participants in the Battle of the Bulge, and witness to the horrors of war, the men of Easy knew extraordinary bravery and extraordinary fear - and became the stuff of legend. Based on Stephen E. Ambrose's acclaimed book of the same name.</p>",
"updated": 1581996681,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/465"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/42799"
}
}
},
{
"id": 768,
"url": "http://www.tvmaze.com/shows/768/planet-earth",
"name": "Planet Earth",
"type": "Documentary",
"language": "English",
"genres": [
"Nature"
],
"status": "Ended",
"runtime": 60,
"premiered": "2006-03-05",
"officialSite": "http://www.bbc.co.uk/programmes/b006mywy",
"schedule": {
"time": "21:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.4
},
"weight": 83,
"network": {
"id": 12,
"name": "BBC One",
"country": {
"name": "United Kingdom",
"code": "GB",
"timezone": "Europe/London"
}
},
"webChannel": null,
"externals": {
"tvrage": 8077,
"thetvdb": 79257,
"imdb": "tt0795176"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/6/15320.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/6/15320.jpg"
},
"summary": "<p>David Attenborough celebrates the amazing variety of the natural world in this epic documentary series, filmed over four years across 64 different countries.</p>",
"updated": 1581212778,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/768"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/67872"
}
}
},
{
"id": 169,
"url": "http://www.tvmaze.com/shows/169/breaking-bad",
"name": "Breaking Bad",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Crime",
"Thriller"
],
"status": "Ended",
"runtime": 60,
"premiered": "2008-01-20",
"officialSite": "http://www.amc.com/shows/breaking-bad",
"schedule": {
"time": "22:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.3
},
"weight": 98,
"network": {
"id": 20,
"name": "AMC",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": {
"id": 1,
"name": "Netflix",
"country": null
},
"externals": {
"tvrage": 18164,
"thetvdb": 81189,
"imdb": "tt0903747"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/0/2400.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/0/2400.jpg"
},
"summary": "<p><b>Breaking Bad</b> follows protagonist Walter White, a chemistry teacher who lives in New Mexico with his wife and teenage son who has cerebral palsy. White is diagnosed with Stage III cancer and given a prognosis of two years left to live. With a new sense of fearlessness based on his medical prognosis, and a desire to secure his family's financial security, White chooses to enter a dangerous world of drugs and crime and ascends to power in this world. The series explores how a fatal diagnosis such as White's releases a typical man from the daily concerns and constraints of normal society and follows his transformation from mild family man to a kingpin of the drug trade.</p>",
"updated": 1582273722,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/169"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/12253"
}
}
},
{
"id": 179,
"url": "http://www.tvmaze.com/shows/179/the-wire",
"name": "The Wire",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Crime"
],
"status": "Ended",
"runtime": 60,
"premiered": "2002-06-02",
"officialSite": "http://www.hbo.com/the-wire",
"schedule": {
"time": "21:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.2
},
"weight": 97,
"network": {
"id": 8,
"name": "HBO",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 6296,
"thetvdb": 79126,
"imdb": "tt0306414"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/1/2527.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/1/2527.jpg"
},
"summary": "<p>The first season of <b>The Wire</b> (2002) concentrated on the often-futile efforts of police to infiltrate a West Baltimore drug ring headed by Avon Barksdale and his lieutenant, Stringer Bell. In Seasons Two and Three, as the Barksdale investigation escalated, new storylines involving pressures on the working class and the city's political leadership were introduced. Season Four focused on the stories of several young boys in the public school system, struggling with problems at home and the lure of the corner - set against the rise of a new drug empire in West Baltimore and a new Mayor in City Hall. The fifth and final season of <i>The Wire</i> centers on the media's role in addressing - or failing to address - the fundamental political, economic and social realities depicted over the course of the series, while also resolving storylines of the numerous characters woven throughout the narrative arc of the show.</p>",
"updated": 1577612239,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/179"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/12969"
}
}
},
{
"id": 180,
"url": "http://www.tvmaze.com/shows/180/firefly",
"name": "Firefly",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Adventure",
"Science-Fiction"
],
"status": "Ended",
"runtime": 60,
"premiered": "2002-09-20",
"officialSite": null,
"schedule": {
"time": "20:00",
"days": [
"Friday"
]
},
"rating": {
"average": 9.2
},
"weight": 95,
"network": {
"id": 4,
"name": "FOX",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 3548,
"thetvdb": 78874,
"imdb": "tt0303461"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/1/2600.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/1/2600.jpg"
},
"summary": "<p>Five hundred years in the future, a renegade crew aboard a small spacecraft tries to survive as they travel the unknown parts of the galaxy and evade warring factions as well as authority agents out to get them.</p>",
"updated": 1587641205,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/180"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/13005"
}
}
},
{
"id": 204,
"url": "http://www.tvmaze.com/shows/204/stargate-sg-1",
"name": "Stargate SG-1",
"type": "Scripted",
"language": "English",
"genres": [
"Action",
"Adventure",
"Science-Fiction"
],
"status": "Ended",
"runtime": 60,
"premiered": "1997-07-27",
"officialSite": "http://stargate.mgm.com/view/series/1/index.html",
"schedule": {
"time": "20:00",
"days": [
"Friday"
]
},
"rating": {
"average": 9.2
},
"weight": 96,
"network": {
"id": 16,
"name": "Syfy",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 5325,
"thetvdb": 72449,
"imdb": "tt0118480"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/1/3027.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/1/3027.jpg"
},
"summary": "<p><b>Stargate SG-1</b> is a science fiction series based on the original film <i>Stargate</i>. It involves the team SG-1 going on various adventures to different alien worlds through Stargates. Throughout the series they encounter various alien threats and allies including but not limited to the Goa'uld and the Asgard.</p>",
"updated": 1586921020,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/204"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/13649"
}
}
},
{
"id": 565,
"url": "http://www.tvmaze.com/shows/565/deadwood",
"name": "Deadwood",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Crime",
"Western"
],
"status": "Ended",
"runtime": 60,
"premiered": "2004-03-21",
"officialSite": "https://www.hbo.com/deadwood",
"schedule": {
"time": "21:00",
"days": []
},
"rating": {
"average": 9.2
},
"weight": 95,
"network": {
"id": 8,
"name": "HBO",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 3267,
"thetvdb": 72023,
"imdb": "tt0348914"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/4/11724.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/4/11724.jpg"
},
"summary": "<p>The outlaw camp of <b>Deadwood</b> marches slowly towards civilization, facing its first elections. But the power struggles continue over everything in Deadwood—influence, money, and whores—as the founding camp members form strategic alliances to face down the threat of a powerful newcomer, seeking to remake Deadwood in his image.</p>",
"updated": 1573153277,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/565"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/53049"
}
}
},
{
"id": 523,
"url": "http://www.tvmaze.com/shows/523/the-west-wing",
"name": "The West Wing",
"type": "Scripted",
"language": "English",
"genres": [
"Drama"
],
"status": "Ended",
"runtime": 60,
"premiered": "1999-09-22",
"officialSite": null,
"schedule": {
"time": "20:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.2
},
"weight": 93,
"network": {
"id": 1,
"name": "NBC",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 6289,
"thetvdb": 72521,
"imdb": "tt0200276"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/4/11284.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/4/11284.jpg"
},
"summary": "<p>The entire White House staff bristles with activity when it's learned that the President injured himself during a bicycle accident, and his absence becomes a factor as chief of staff Leo McGarry must juggle a host of impending crises, including a mass boatlift of Cuban refugees approaching the Florida coast and the reaction of conservative Christians to a controversial televised comment by deputy chief of staff Josh Lyman.</p>",
"updated": 1573660692,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/523"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/47435"
}
}
},
{
"id": 527,
"url": "http://www.tvmaze.com/shows/527/the-sopranos",
"name": "The Sopranos",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Crime"
],
"status": "Ended",
"runtime": 60,
"premiered": "1999-01-10",
"officialSite": "http://www.hbo.com/the-sopranos",
"schedule": {
"time": "21:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.1
},
"weight": 97,
"network": {
"id": 8,
"name": "HBO",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 6206,
"thetvdb": 75299,
"imdb": "tt0141842"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/4/11341.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/4/11341.jpg"
},
"summary": "<p><b>The Sopranos</b>, writer-producer-director David Chase's extraordinary television series, is nominally an urban gangster drama, but its true impact strikes closer to home: Like 1999's other screen touchstone, American Beauty, the HBO series chronicles a dysfunctional, suburban American family in bold relief. And for protagonist Tony Soprano, there's the added complexity posed by heading twin families, his collegial mob clan and his own, nouveau riche brood.</p>",
"updated": 1576961294,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/527"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/47925"
}
}
},
{
"id": 748,
"url": "http://www.tvmaze.com/shows/748/oz",
"name": "Oz",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Crime"
],
"status": "Ended",
"runtime": 60,
"premiered": "1997-07-12",
"officialSite": "http://www.hbo.com/oz/",
"schedule": {
"time": "22:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.1
},
"weight": 91,
"network": {
"id": 8,
"name": "HBO",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 4760,
"thetvdb": 70682,
"imdb": "tt0118421"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/6/15172.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/6/15172.jpg"
},
"summary": "<p>HBO's violent men-behind-bars drama is an addictive, testosterone-driven soap opera for guys. The eight episodes of the first season set the style for the show: a massive cast of a vivid characters on both sides of the bars, four or five stories unleashed at a breakneck pace and framed by angry, oddball introductions, and a soaring casualty rate. Created by Homicide producer Tom Fontana, this drama quickly earned its rightful reputation as the most brutal show on TV. It's simple chemistry: combine volatile ingredients in a confined space, shut tight, and shake.</p>",
"updated": 1576911855,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/748"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/66028"
}
}
},
{
"id": 1910,
"url": "http://www.tvmaze.com/shows/1910/bron-broen",
"name": "Bron / Broen",
"type": "Scripted",
"language": "Swedish",
"genres": [
"Drama",
"Crime",
"Thriller"
],
"status": "Ended",
"runtime": 60,
"premiered": "2011-09-28",
"officialSite": "http://www.svt.se/bron/",
"schedule": {
"time": "21:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.1
},
"weight": 94,
"network": {
"id": 155,
"name": "SVT1",
"country": {
"name": "Sweden",
"code": "SE",
"timezone": "Europe/Stockholm"
}
},
"webChannel": null,
"externals": {
"tvrage": 30477,
"thetvdb": 252019,
"imdb": "tt1733785"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/11/27700.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/11/27700.jpg"
},
"summary": "<p>When a body is found on the bridge between Denmark and Sweden, right on the border, Danish inspector Martin Rohde and Swedish Saga Norén have to share jurisdiction and work together to find the killer.</p>",
"updated": 1587207632,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/1910"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/1378786"
}
}
},
{
"id": 396,
"url": "http://www.tvmaze.com/shows/396/gravity-falls",
"name": "Gravity Falls",
"type": "Animation",
"language": "English",
"genres": [
"Adventure",
"Mystery",
"Supernatural"
],
"status": "Ended",
"runtime": 30,
"premiered": "2012-06-15",
"officialSite": null,
"schedule": {
"time": "19:00",
"days": [
"Monday"
]
},
"rating": {
"average": 9.1
},
"weight": 92,
"network": {
"id": 25,
"name": "Disney XD",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 31839,
"thetvdb": 259972,
"imdb": "tt1865718"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/2/6140.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/2/6140.jpg"
},
"summary": "<p>Twin brother and sister Dipper and Mabel Pines are in for an unexpected adventure when they spend the summer with their great Uncle in the mysterious town of Gravity Falls, Oregon.</p>",
"updated": 1585641052,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/396"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/483406"
}
}
},
{
"id": 335,
"url": "http://www.tvmaze.com/shows/335/sherlock",
"name": "Sherlock",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Crime",
"Mystery"
],
"status": "To Be Determined",
"runtime": 90,
"premiered": "2010-07-25",
"officialSite": "http://www.bbc.co.uk/programmes/b018ttws",
"schedule": {
"time": "21:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.1
},
"weight": 99,
"network": {
"id": 12,
"name": "BBC One",
"country": {
"name": "United Kingdom",
"code": "GB",
"timezone": "Europe/London"
}
},
"webChannel": null,
"externals": {
"tvrage": 23433,
"thetvdb": 176941,
"imdb": "tt1475582"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/171/428042.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/171/428042.jpg"
},
"summary": "<p>Sherlock Holmes and Dr. John Watson's adventures in 21st Century London. A thrilling, funny, fast-paced contemporary reimagining of the Arthur Conan Doyle classic.</p>",
"updated": 1586907935,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/335"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/1004191"
}
}
},
{
"id": 251,
"url": "http://www.tvmaze.com/shows/251/downton-abbey",
"name": "Downton Abbey",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Family",
"Romance"
],
"status": "Ended",
"runtime": 60,
"premiered": "2010-09-26",
"officialSite": "http://www.itv.com/downtonabbey",
"schedule": {
"time": "21:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.1
},
"weight": 95,
"network": {
"id": 35,
"name": "ITV",
"country": {
"name": "United Kingdom",
"code": "GB",
"timezone": "Europe/London"
}
},
"webChannel": null,
"externals": {
"tvrage": 26615,
"thetvdb": 193131,
"imdb": "tt1606375"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/1/4601.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/1/4601.jpg"
},
"summary": "<p>The Downton Abbey estate stands a splendid example of confidence and mettle, its family enduring for generations and its staff a well-oiled machine of propriety. But change is afoot at Downton--change far surpassing the new electric lights and telephone. A crisis of inheritance threatens to displace the resident Crawley family, in spite of the best efforts of the noble and compassionate Earl, Robert Crawley; his American heiress wife, Cora his comically implacable, opinionated mother, Violet and his beautiful, eldest daughter, Mary, intent on charting her own course. Reluctantly, the family is forced to welcome its heir apparent, the self-made and proudly modern Matthew Crawley himself none too happy about the new arrangements. As Matthew's bristly relationship with Mary begins to crackle with electricity, hope for the future of Downton's dynasty takes shape. But when petty jealousies and ambitions grow among the family and the staff, scheming and secrets--both delicious and dangerous--threaten to derail the scramble to preserve Downton Abbey. <i>Downton Abbey</i> offers a spot-on portrait of a vanishing way of life.</p>",
"updated": 1578970808,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/251"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/215207"
}
}
},
{
"id": 216,
"url": "http://www.tvmaze.com/shows/216/rick-and-morty",
"name": "Rick and Morty",
"type": "Animation",
"language": "English",
"genres": [
"Comedy",
"Adventure",
"Science-Fiction"
],
"status": "Running",
"runtime": 30,
"premiered": "2013-12-02",
"officialSite": "http://www.adultswim.com/videos/rick-and-morty",
"schedule": {
"time": "23:30",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.1
},
"weight": 99,
"network": {
"id": 10,
"name": "Adult Swim",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": null,
"externals": {
"tvrage": 33381,
"thetvdb": 275274,
"imdb": "tt2861424"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/1/3603.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/1/3603.jpg"
},
"summary": "<p>Rick is a mentally gifted, but sociopathic and alcoholic scientist and a grandfather to Morty; an awkward, impressionable, and somewhat spineless teenage boy. Rick moves into the family home of Morty, where he immediately becomes a bad influence.</p>",
"updated": 1586900161,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/216"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/1751881"
},
"nextepisode": {
"href": "http://api.tvmaze.com/episodes/1827600"
}
}
},
{
"id": 82,
"url": "http://www.tvmaze.com/shows/82/game-of-thrones",
"name": "Game of Thrones",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Adventure",
"Fantasy"
],
"status": "Ended",
"runtime": 60,
"premiered": "2011-04-17",
"officialSite": "http://www.hbo.com/game-of-thrones",
"schedule": {
"time": "21:00",
"days": [
"Sunday"
]
},
"rating": {
"average": 9.1
},
"weight": 99,
"network": {
"id": 8,
"name": "HBO",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"webChannel": {
"id": 22,
"name": "HBO Go",
"country": {
"name": "United States",
"code": "US",
"timezone": "America/New_York"
}
},
"externals": {
"tvrage": 24493,
"thetvdb": 121361,
"imdb": "tt0944947"
},
"image": {
"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/190/476117.jpg",
"original": "http://static.tvmaze.com/uploads/images/original_untouched/190/476117.jpg"
},
"summary": "<p>Based on the bestselling book series <i>A Song of Ice and Fire</i> by George R.R. Martin, this sprawling new HBO drama is set in a world where summers span decades and winters can last a lifetime. From the scheming south and the savage eastern lands, to the frozen north and ancient Wall that protects the realm from the mysterious darkness beyond, the powerful families of the Seven Kingdoms are locked in a battle for the Iron Throne. This is a story of duplicity and treachery, nobility and honor, conquest and triumph. In the <b>Game of Thrones</b>, you either win or you die.</p>",
"updated": 1580402781,
"_links": {
"self": {
"href": "http://api.tvmaze.com/shows/82"
},
"previousepisode": {
"href": "http://api.tvmaze.com/episodes/1623968"
}
}
},
{