generated from CodeYourFuture/tv-show-dom-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
episodes.js
1855 lines (1852 loc) · 60.8 KB
/
episodes.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/82/episodes
function getOneEpisode() {
return {
id: 4952,
url:
"http://www.tvmaze.com/episodes/4952/game-of-thrones-1x01-winter-is-coming",
name: "Winter is Coming",
season: 1,
number: 1,
airdate: "2011-04-17",
airtime: "21:00",
airstamp: "2011-04-18T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2668.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2668.jpg",
},
summary:
"<p>Lord Eddard Stark, ruler of the North, is summoned to court by his old friend, King Robert Baratheon, to serve as the King's Hand. Eddard reluctantly agrees after learning of a possible threat to the King's life. Eddard's bastard son Jon Snow must make a painful decision about his own future, while in the distant east Viserys Targaryen plots to reclaim his father's throne, usurped by Robert, by selling his sister in marriage.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4952",
},
},
};
}
function getAllEpisodes() {
return [
{
id: 4952,
url:
"http://www.tvmaze.com/episodes/4952/game-of-thrones-1x01-winter-is-coming",
name: "Winter is Coming",
season: 1,
number: 1,
airdate: "2011-04-17",
airtime: "21:00",
airstamp: "2011-04-18T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2668.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2668.jpg",
},
summary:
"<p>Lord Eddard Stark, ruler of the North, is summoned to court by his old friend, King Robert Baratheon, to serve as the King's Hand. Eddard reluctantly agrees after learning of a possible threat to the King's life. Eddard's bastard son Jon Snow must make a painful decision about his own future, while in the distant east Viserys Targaryen plots to reclaim his father's throne, usurped by Robert, by selling his sister in marriage.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4952",
},
},
},
{
id: 4953,
url:
"http://www.tvmaze.com/episodes/4953/game-of-thrones-1x02-the-kingsroad",
name: "The Kingsroad",
season: 1,
number: 2,
airdate: "2011-04-24",
airtime: "21:00",
airstamp: "2011-04-25T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2669.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2669.jpg",
},
summary:
"<p>An incident on the Kingsroad threatens Eddard and Robert's friendship. Jon and Tyrion travel to the Wall, where they discover that the reality of the Night's Watch may not match the heroic image of it.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4953",
},
},
},
{
id: 4954,
url: "http://www.tvmaze.com/episodes/4954/game-of-thrones-1x03-lord-snow",
name: "Lord Snow",
season: 1,
number: 3,
airdate: "2011-05-01",
airtime: "21:00",
airstamp: "2011-05-02T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2671.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2671.jpg",
},
summary:
"<p>Jon Snow attempts to find his place amongst the Night's Watch. Eddard and his daughters arrive at King's Landing.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4954",
},
},
},
{
id: 4955,
url:
"http://www.tvmaze.com/episodes/4955/game-of-thrones-1x04-cripples-bastards-and-broken-things",
name: "Cripples, Bastards, and Broken Things",
season: 1,
number: 4,
airdate: "2011-05-08",
airtime: "21:00",
airstamp: "2011-05-09T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2673.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2673.jpg",
},
summary:
"<p>Tyrion stops at Winterfell on his way home and gets a frosty reception from Robb Stark. Eddard's investigation into the death of his predecessor gets underway.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4955",
},
},
},
{
id: 4956,
url:
"http://www.tvmaze.com/episodes/4956/game-of-thrones-1x05-the-wolf-and-the-lion",
name: "The Wolf and the Lion",
season: 1,
number: 5,
airdate: "2011-05-15",
airtime: "21:00",
airstamp: "2011-05-16T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2674.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2674.jpg",
},
summary:
"<p>Catelyn's actions on the road have repercussions for Eddard. Tyrion enjoys the dubious hospitality of the Eyrie.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4956",
},
},
},
{
id: 4957,
url:
"http://www.tvmaze.com/episodes/4957/game-of-thrones-1x06-a-golden-crown",
name: "A Golden Crown",
season: 1,
number: 6,
airdate: "2011-05-22",
airtime: "21:00",
airstamp: "2011-05-23T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2676.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2676.jpg",
},
summary:
"<p>Viserys is increasingly frustrated by the lack of progress towards gaining his crown.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4957",
},
},
},
{
id: 4958,
url:
"http://www.tvmaze.com/episodes/4958/game-of-thrones-1x07-you-win-or-you-die",
name: "You Win or You Die",
season: 1,
number: 7,
airdate: "2011-05-29",
airtime: "21:00",
airstamp: "2011-05-30T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2677.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2677.jpg",
},
summary:
"<p>Eddard's investigations in King's Landing reach a climax and a dark secret is revealed.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4958",
},
},
},
{
id: 4959,
url:
"http://www.tvmaze.com/episodes/4959/game-of-thrones-1x08-the-pointy-end",
name: "The Pointy End",
season: 1,
number: 8,
airdate: "2011-06-05",
airtime: "21:00",
airstamp: "2011-06-06T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2678.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2678.jpg",
},
summary:
"<p>Tyrion joins his father's army with unexpected allies. Events in King's Landing take a turn for the worse as Arya's lessons are put to the test.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4959",
},
},
},
{
id: 4960,
url: "http://www.tvmaze.com/episodes/4960/game-of-thrones-1x09-baelor",
name: "Baelor",
season: 1,
number: 9,
airdate: "2011-06-12",
airtime: "21:00",
airstamp: "2011-06-13T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2679.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2679.jpg",
},
summary:
"<p>Catelyn must negotiate with the irascible Lord Walder Frey.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4960",
},
},
},
{
id: 4961,
url:
"http://www.tvmaze.com/episodes/4961/game-of-thrones-1x10-fire-and-blood",
name: "Fire and Blood",
season: 1,
number: 10,
airdate: "2011-06-19",
airtime: "21:00",
airstamp: "2011-06-20T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2681.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2681.jpg",
},
summary:
"<p>Daenerys must realize her destiny. Jaime finds himself in an unfamiliar predicament.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4961",
},
},
},
{
id: 4962,
url:
"http://www.tvmaze.com/episodes/4962/game-of-thrones-2x01-the-north-remembers",
name: "The North Remembers",
season: 2,
number: 1,
airdate: "2012-04-01",
airtime: "21:00",
airstamp: "2012-04-02T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3174.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3174.jpg",
},
summary:
"<p>War grips the continent of Westeros. As Tyrion Lannister tries to take his strong-willed nephew in hand in King's Landing, Stannis Baratheon launches his own campaign to take the Iron Throne with the help of a mysterious priestess. In the east, Daenerys must lead her retinue through a desolate wasteland whilst beyond the Wall the Night's Watch seeks the aid of a wildling.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4962",
},
},
},
{
id: 4963,
url:
"http://www.tvmaze.com/episodes/4963/game-of-thrones-2x02-the-night-lands",
name: "The Night Lands",
season: 2,
number: 2,
airdate: "2012-04-08",
airtime: "21:00",
airstamp: "2012-04-09T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3175.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3175.jpg",
},
summary:
"<p>Stannis uses Ser Davos to seek out new allies for his war with the Lannisters. On the road north, Arya confides in Gendry. Robb Stark sends Theon Greyjoy to win an alliance with his father and the fierce warriors of the Iron Islands. Cersei and Tyrion clash on how to rule in King's Landing.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4963",
},
},
},
{
id: 4964,
url:
"http://www.tvmaze.com/episodes/4964/game-of-thrones-2x03-what-is-dead-may-never-die",
name: "What is Dead May Never Die",
season: 2,
number: 3,
airdate: "2012-04-15",
airtime: "21:00",
airstamp: "2012-04-16T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3176.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3176.jpg",
},
summary:
"<p>Catelyn Stark treats with King Renly in the hope of winning an alliance. Tyrion undertakes a complex plan in King's Landing to expose an enemy. At Winterfell, Bran's dreams continue to trouble him.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4964",
},
},
},
{
id: 4965,
url:
"http://www.tvmaze.com/episodes/4965/game-of-thrones-2x04-garden-of-bones",
name: "Garden of Bones",
season: 2,
number: 4,
airdate: "2012-04-22",
airtime: "21:00",
airstamp: "2012-04-23T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3177.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3177.jpg",
},
summary:
"<p>Tyrion attempts to restrain Joffrey's cruelty. Catelyn attempts to broker a peace between Stannis and Renly. Daenerys and her followers arrive at the great city of Qarth and hope to find refuge there. Arya and Gendry arrive at Harrenhal, a great castle now under Lannister occupation.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4965",
},
},
},
{
id: 4966,
url:
"http://www.tvmaze.com/episodes/4966/game-of-thrones-2x05-the-ghost-of-harrenhal",
name: "The Ghost of Harrenhal",
season: 2,
number: 5,
airdate: "2012-04-29",
airtime: "21:00",
airstamp: "2012-04-30T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3178.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3178.jpg",
},
summary:
"<p>Confusion rages in the Stormlands in the wake of a devastating reversal. Catelyn must flee with a new ally, whilst Littlefinger sees an opportunity in the chaos. Theon seeks to prove himself to his father in battle. Arya receives a promise from the enigmatic Jaqen H'ghar. The Night's Watch arrives at the Fist of the First Men. Daenerys Targaryen receives a marriage proposal.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4966",
},
},
},
{
id: 4967,
url:
"http://www.tvmaze.com/episodes/4967/game-of-thrones-2x06-the-old-gods-and-the-new",
name: "The Old Gods and the New",
season: 2,
number: 6,
airdate: "2012-05-06",
airtime: "21:00",
airstamp: "2012-05-07T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3180.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3180.jpg",
},
summary:
"<p>Arya has a surprise visitor; Dany vows to take what is hers; Joffrey meets his subjects; Qhorin gives Jon a chance to prove himself.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4967",
},
},
},
{
id: 4968,
url:
"http://www.tvmaze.com/episodes/4968/game-of-thrones-2x07-a-man-without-honor",
name: "A Man Without Honor",
season: 2,
number: 7,
airdate: "2012-05-13",
airtime: "21:00",
airstamp: "2012-05-14T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3192.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3192.jpg",
},
summary:
"<p>Jaime meets a relative; Theon hunts; Dany receives an invitation.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4968",
},
},
},
{
id: 4969,
url:
"http://www.tvmaze.com/episodes/4969/game-of-thrones-2x08-the-prince-of-winterfell",
name: "The Prince of Winterfell",
season: 2,
number: 8,
airdate: "2012-05-20",
airtime: "21:00",
airstamp: "2012-05-21T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3194.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3194.jpg",
},
summary:
"<p>Theon holds the fort; Arya calls in her debt with Jaqen; Robb is betrayed; Stannis and Davos approach their destination.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4969",
},
},
},
{
id: 4970,
url:
"http://www.tvmaze.com/episodes/4970/game-of-thrones-2x09-blackwater",
name: "Blackwater",
season: 2,
number: 9,
airdate: "2012-05-27",
airtime: "21:00",
airstamp: "2012-05-28T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3196.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3196.jpg",
},
summary:
"<p>A massive battle rages for control of King's Landing and the Iron Throne.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4970",
},
},
},
{
id: 4971,
url:
"http://www.tvmaze.com/episodes/4971/game-of-thrones-2x10-valar-morghulis",
name: "Valar Morghulis",
season: 2,
number: 10,
airdate: "2012-06-03",
airtime: "21:00",
airstamp: "2012-06-04T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/3197.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/3197.jpg",
},
summary:
"<p>Tyrion awakens to a changed situation. King Joffrey doles out rewards to his subjects. As Theon stirs his men to action, Luwin offers some final advice. Brienne silences Jaime; Arya receives a gift from Jaqen; Dany goes to a strange place; Jon proves himself to Qhorin.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4971",
},
},
},
{
id: 4972,
url:
"http://www.tvmaze.com/episodes/4972/game-of-thrones-3x01-valar-dohaeris",
name: "Valar Dohaeris",
season: 3,
number: 1,
airdate: "2013-03-31",
airtime: "21:00",
airstamp: "2013-04-01T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2628.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2628.jpg",
},
summary:
"<p></p><p>Jon is brought before Mance Rayder, the King Beyond the Wall, while the Night's Watch survivors retreat south. In King's Landing, Tyrion asks for his reward. Littlefinger offers Sansa a way out. Cersei hosts a dinner for the royal family. Daenerys sails into Slaver's Bay.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4972",
},
},
},
{
id: 4973,
url:
"http://www.tvmaze.com/episodes/4973/game-of-thrones-3x02-dark-wings-dark-words",
name: "Dark Wings, Dark Words",
season: 3,
number: 2,
airdate: "2013-04-07",
airtime: "21:00",
airstamp: "2013-04-08T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2618.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2618.jpg",
},
summary:
"<p>Sansa says too much. Shae asks Tyrion for a favor. Jaime finds a way to pass the time. Arya runs into the Brotherhood Without Banners.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4973",
},
},
},
{
id: 4974,
url:
"http://www.tvmaze.com/episodes/4974/game-of-thrones-3x03-walk-of-punishment",
name: "Walk of Punishment",
season: 3,
number: 3,
airdate: "2013-04-14",
airtime: "21:00",
airstamp: "2013-04-15T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2616.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2616.jpg",
},
summary:
"<p>Tyrion shoulders new responsibilities. Jon is taken to the Fist of the First Men. Daenerys meets with the slavers. Jaime strikes a deal with his captors.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4974",
},
},
},
{
id: 4975,
url:
"http://www.tvmaze.com/episodes/4975/game-of-thrones-3x04-and-now-his-watch-is-ended",
name: "And Now His Watch is Ended",
season: 3,
number: 4,
airdate: "2013-04-21",
airtime: "21:00",
airstamp: "2013-04-22T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2615.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2615.jpg",
},
summary:
"<p>The Night's Watch takes stock. Varys meets his better. Arya is taken to the commander of the Brotherhood. Daenerys exchanges a chain for a Whip.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4975",
},
},
},
{
id: 4976,
url:
"http://www.tvmaze.com/episodes/4976/game-of-thrones-3x05-kissed-by-fire",
name: "Kissed by Fire",
season: 3,
number: 5,
airdate: "2013-04-28",
airtime: "21:00",
airstamp: "2013-04-29T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2614.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2614.jpg",
},
summary:
"<p>The Hound is judged by the gods; Jaime is judged by men. Jon proves himself; Robb is betrayed. Tyrion learns the cost of weddings.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4976",
},
},
},
{
id: 4977,
url: "http://www.tvmaze.com/episodes/4977/game-of-thrones-3x06-the-climb",
name: "The Climb",
season: 3,
number: 6,
airdate: "2013-05-05",
airtime: "21:00",
airstamp: "2013-05-06T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2612.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2612.jpg",
},
summary:
"<p>Tywin plans strategic unions for the Lannisters. Melisandre visits the Riverlands. Robb weighs a compromise to repair his alliance with House Frey. Roose Bolton decides what to do with Jaime Lannister. Jon, Ygritte and the Wildlings face a daunting climb.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4977",
},
},
},
{
id: 4978,
url:
"http://www.tvmaze.com/episodes/4978/game-of-thrones-3x07-the-bear-and-the-maiden-fair",
name: "The Bear and the Maiden Fair",
season: 3,
number: 7,
airdate: "2013-05-12",
airtime: "21:00",
airstamp: "2013-05-13T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2611.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2611.jpg",
},
summary:
"<p>Daenerys exchanges gifts with a slave lord outside Yunkai. As Sansa frets about her prospects, Shae chafes at Tyrion's new situation. Tywin counsels the king, and Melisandre reveals a secret to Gendry. Brienne faces a formidable foe in Harrenhal.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4978",
},
},
},
{
id: 4979,
url:
"http://www.tvmaze.com/episodes/4979/game-of-thrones-3x08-second-sons",
name: "Second Sons",
season: 3,
number: 8,
airdate: "2013-05-19",
airtime: "21:00",
airstamp: "2013-05-20T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2599.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2599.jpg",
},
summary:
"<p>King's Landing hosts a wedding, and Tyrion and Sansa spend the night together. Daenerys meets the Titan's Bastard. Davos demands proof from Melisandre. Sam and Gilly meet an older Gentleman.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4979",
},
},
},
{
id: 4980,
url:
"http://www.tvmaze.com/episodes/4980/game-of-thrones-3x09-the-rains-of-castamere",
name: "The Rains of Castamere",
season: 3,
number: 9,
airdate: "2013-06-02",
airtime: "21:00",
airstamp: "2013-06-03T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2598.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2598.jpg",
},
summary:
"<p>Robb presents himself to Walder Frey, and Edmure meets his bride. Jon faces his harshest test yet. Bran discovers a new gift. Daario and Jorah debate how to take Yunkai. House Frey joins with House Tully.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4980",
},
},
},
{
id: 4981,
url: "http://www.tvmaze.com/episodes/4981/game-of-thrones-3x10-mhysa",
name: "Mhysa",
season: 3,
number: 10,
airdate: "2013-06-09",
airtime: "21:00",
airstamp: "2013-06-10T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2597.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2597.jpg",
},
summary:
"<p>Joffrey challenges Tywin. Bran tells a ghost story. In Dragonstone, mercy comes from strange quarters. Daenerys waits to see if she is a conqueror or a liberator.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4981",
},
},
},
{
id: 4982,
url:
"http://www.tvmaze.com/episodes/4982/game-of-thrones-4x01-two-swords",
name: "Two Swords",
season: 4,
number: 1,
airdate: "2014-04-06",
airtime: "21:00",
airstamp: "2014-04-07T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2583.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2583.jpg",
},
summary:
"<p>Tyrion welcomes a guest to King's Landing. At Castle Black, Jon Snow finds himself unwelcome. Dany is pointed to Meereen, the mother of all slave cities. Arya runs into an old friend.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4982",
},
},
},
{
id: 4983,
url:
"http://www.tvmaze.com/episodes/4983/game-of-thrones-4x02-the-lion-and-the-rose",
name: "The Lion and the Rose",
season: 4,
number: 2,
airdate: "2014-04-13",
airtime: "21:00",
airstamp: "2014-04-14T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2584.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2584.jpg",
},
summary:
"<p>Tyrion lends Jaime a hand. Joffrey and Margaery host a breakfast. At Dragonstone, Stannis loses patience with Davos. Ramsay finds a purpose for his pet. North of the Wall, Bran sees where they must go.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4983",
},
},
},
{
id: 4984,
url:
"http://www.tvmaze.com/episodes/4984/game-of-thrones-4x03-breaker-of-chains",
name: "Breaker of Chains",
season: 4,
number: 3,
airdate: "2014-04-20",
airtime: "21:00",
airstamp: "2014-04-21T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2585.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2585.jpg",
},
summary:
"<p>Tyrion ponders his options. Tywin extends an olive branch. Sam realizes Castle Black isn't safe, and Jon proposes a bold plan. The Hound teaches Arya the way things are. Dany chooses her Champion.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4984",
},
},
},
{
id: 4985,
url:
"http://www.tvmaze.com/episodes/4985/game-of-thrones-4x04-oathkeeper",
name: "Oathkeeper",
season: 4,
number: 4,
airdate: "2014-04-27",
airtime: "21:00",
airstamp: "2014-04-28T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2586.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2586.jpg",
},
summary:
"<p>Dany balances justice and mercy. Jaime tasks Brienne with his honor. Jon secures volunteers while Bran, Jojen, Meera and Hodor stumble on shelter.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4985",
},
},
},
{
id: 4986,
url:
"http://www.tvmaze.com/episodes/4986/game-of-thrones-4x05-first-of-his-name",
name: "First of His Name",
season: 4,
number: 5,
airdate: "2014-05-04",
airtime: "21:00",
airstamp: "2014-05-05T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2587.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2587.jpg",
},
summary:
"<p>Cersei and Tywin plot the Crown's next move. Dany discusses future plans. Jon embarks on a new mission.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4986",
},
},
},
{
id: 4987,
url:
"http://www.tvmaze.com/episodes/4987/game-of-thrones-4x06-the-laws-of-gods-and-men",
name: "The Laws of Gods and Men",
season: 4,
number: 6,
airdate: "2014-05-11",
airtime: "21:00",
airstamp: "2014-05-12T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2588.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2588.jpg",
},
summary:
"<p>Stannis and Davos set sail with a new strategy. Dany meets with supplicants. Tyrion faces down his father in the throne room.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4987",
},
},
},
{
id: 4988,
url:
"http://www.tvmaze.com/episodes/4988/game-of-thrones-4x07-mockingbird",
name: "Mockingbird",
season: 4,
number: 7,
airdate: "2014-05-18",
airtime: "21:00",
airstamp: "2014-05-19T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2589.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2589.jpg",
},
summary:
"<p>Tyrion enlists an unlikely ally. Daario entreats Dany to allow him to do what he does best. Jon's warnings about the Wall's vulnerability fall on deaf ears. Brienne follows a new lead on the road with Pod.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4988",
},
},
},
{
id: 4989,
url:
"http://www.tvmaze.com/episodes/4989/game-of-thrones-4x08-the-mountain-and-the-viper",
name: "The Mountain and the Viper",
season: 4,
number: 8,
airdate: "2014-06-01",
airtime: "21:00",
airstamp: "2014-06-02T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2591.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2591.jpg",
},
summary:
"<p>Mole's Town receives unexpected visitors. Littlefinger's motives are questioned. Ramsay attempts to prove himself to his father. Tyrion's fate is decided.</p>",
_links: {
self: {
href: "http://api.tvmaze.com/episodes/4989",
},
},
},
{
id: 4990,
url:
"http://www.tvmaze.com/episodes/4990/game-of-thrones-4x09-the-watchers-on-the-wall",
name: "The Watchers on the Wall",
season: 4,
number: 9,
airdate: "2014-06-08",
airtime: "21:00",
airstamp: "2014-06-09T01:00:00+00:00",
runtime: 60,
image: {
medium:
"http://static.tvmaze.com/uploads/images/medium_landscape/1/2593.jpg",
original:
"http://static.tvmaze.com/uploads/images/original_untouched/1/2593.jpg",
},
summary:
"<p>Jon Snow and the rest of the Night's Watch face the biggest challenge to the Wall yet.</p>",