-
Notifications
You must be signed in to change notification settings - Fork 2
/
episodes.json
5294 lines (5294 loc) · 320 KB
/
episodes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"TAS": [
{
"name": "Beyond the Farthest Star",
"season": 1,
"number": 1,
"summary": "<p>The Enterprise discovers an ancient derelict alien ship orbiting a dead star. Upon investigation they discover that the crew destroyed themselves, rather than letting a malignant alien escape the dead star.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Beyond_the_Farthest_Star_(episode)"
},
{
"name": "Yesteryear",
"season": 1,
"number": 2,
"summary": "<p>An expedition through the Guardian of Forever inadvertently prevents Spock from traveling back to his childhood to save his younger self during a hazardous Vulcan ordeal. To set things straight, Spock must go through the Guardian and revisit his time growing up... and restore his life so that he is no longer wiped from existence.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Yesteryear_(episode)"
},
{
"name": "One of Our Planets is Missing",
"season": 1,
"number": 3,
"summary": "<p>An enormous space-going entity consumes whole planetary systems... and a Federation colony is next in its path. The Enterprise must brave its antimatter interior and find a way to stop it.</p>",
"url": "https://memory-alpha.fandom.com/wiki/One_of_Our_Planets_Is_Missing_(episode)"
},
{
"name": "The Lorelei Signal",
"season": 1,
"number": 4,
"summary": "<p>While exploring a mysterious section of space, the male crew are attracted by a mysterious signal. Kirk beams down with a landing party and encounters a race of seductive women, who harbor a dark secret.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Lorelei_Signal_(episode)"
},
{
"name": "More Tribbles, More Troubles",
"season": 1,
"number": 5,
"summary": "<p>The tribbles are back, and are causing problems for the Klingons.</p>",
"url": "https://memory-alpha.fandom.com/wiki/More_Tribbles%2C_More_Troubles_(episode)"
},
{
"name": "The Survivor",
"season": 1,
"number": 6,
"summary": "<p>The <i>Enterprise </i>rescues Carter Winston, a financier and philanthropist who has been missing for years. However, it soon becomes clear that Winston is harboring a secret of his own, and is allied with the Romulans.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Survivor_(episode)"
},
{
"name": "The Infinite Vulcan",
"season": 1,
"number": 7,
"summary": "<p>The <i>Enterprise </i>discovers a planet inhabited by a once vast plant-based civilization that have been reduced to a few survivors. They are now led by Dr. Keniclius, a human grown to giant proportions... and he wants Spock to join him.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Infinite_Vulcan_(episode)"
},
{
"name": "The Magicks of Megas-Tu",
"season": 1,
"number": 8,
"summary": "<p>The <i>Enterprise </i>travels to the center of the galaxy only to discover themselves sucked into a dimension where the laws of time and space no longer apply, and \"magic\" functions for those capable of grasping its fundamentals.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Magicks_of_Megas-Tu_(episode)"
},
{
"name": "Once Upon a Planet",
"season": 1,
"number": 9,
"summary": "<p>The <i>Enterprise </i>travels to the shore leave planet for some well-deserved rest and relaxation. The planet can create organic androids based on the crew's imagination, but they soon discover that the planet has a hostile mind of its own.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Once_Upon_a_Planet_(episode)"
},
{
"name": "Mudd's Passion",
"season": 1,
"number": 10,
"summary": "<p>Harcourt Fenton Mudd returns with a love potion which he claims can cause any male and female to fall in love. He inadvertently releases it into the <i>Enterprise</i>'s ventilation system and they discover that his claims are true.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Mudd's_Passion_(episode)"
},
{
"name": "The Terratin Incident",
"season": 1,
"number": 11,
"summary": "<p>The <i>Enterprise </i>responds to an old-style distress signal from an unknown \"Terratin\" colony, and follow it to its source: an uninhabited planet about to shatter from internal stress. However, a mysterious beam strikes the ship and the crew begins to shrink... and shrink...</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Terratin_Incident_(episode)"
},
{
"name": "The Time Trap",
"season": 1,
"number": 12,
"summary": "<p>The <i>Enterprise </i>is sent on a mission to explore a \"Bermuda Triangle of Space,\" only to find itself and a Klingon ship trapped in a timeless piece of eternity inhabited by other lost ships. The two ships must work together before their only exit back to real space closes for good.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Time_Trap_(episode)"
},
{
"name": "The Ambergris Element",
"season": 1,
"number": 13,
"summary": "<p>While exploring an aquatic planet, Kirk and Spock are lost at sea. They are later found... but have been transformed into amphibious life forms. Now they must track down the planet's mysterious inhabitants and find a cure, or be left to live as freaks in the Federation.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Ambergris_Element_(episode)"
},
{
"name": "The Slaver Weapon",
"season": 1,
"number": 14,
"summary": "<p>Spock, Sulu, and Uhura are delivering a Slaver stasis box by shuttlecraft when they detect another box. Following the signal, they soon discover that a Kzinti privateer has set a trap. Capturing the <i>Enterprise </i>crew, they discover their box holds a rare find, a shape-shfiting Slaver weapon. Now Spock and the others must keep the Kzinti from returning to their government with the weapon.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Slaver_Weapon_(episode)"
},
{
"name": "The Eye of the Beholder",
"season": 1,
"number": 15,
"summary": "<p>The <i>Enterprise crew look </i>for a lost expedition and a landing party finds the missing crew: trapped in an alien zoo in which they themselves are soon taken as prisoners. Now they must somehow establish communications with their evolved slug-like captors who think of them as primitive animals.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Eye_of_the_Beholder_(episode)"
},
{
"name": "The Jihad",
"season": 1,
"number": 16,
"summary": "<p>Kirk and Spock are chosen by a mysterious race to join an expedition of alien specialists to a \"mad planet\" and recover a missing artifact, the Soul of Alar, before the avian Skorr go on a galactic jihad.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Jihad_(episode)"
},
{
"name": "The Pirates of Orion",
"season": 2,
"number": 1,
"summary": "<p>Spock is stricken ill with a disease that is fatal to Vulcans. With time running out, the Enterprise must rendezvous with another ship carrying the cure. However, Orion pirates hijack the shipment and Kirk must deal with them before Spock dies.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Pirates_of_Orion_(episode)"
},
{
"name": "Bem",
"season": 2,
"number": 2,
"summary": "<p>The Enterprise plays host to Ambassador Bem, an arrogant member of a neutral race. However, Bem endangers all of their lives when he conducts a test of suitability upon Kirk and Spock during an exploratory mission on a primitive planet.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Bem_(episode)"
},
{
"name": "The Practical Joker",
"season": 2,
"number": 3,
"summary": "<p>After avoiding a Romulan ambush by entering a strange energy cloud, the Enterprise finds itself at the mercy of an insane ship's computer that indulges in a series of increasingly aggressive practical jokes.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Practical_Joker_(episode)"
},
{
"name": "Albatross",
"season": 2,
"number": 4,
"summary": "<p>The Enterprise goes to the planet Dramia II to deliver medical supplies, only to have McCoy arrested and put on trial for deliberately spreading a disease that wiped out an entire colony. Now Kirk must clear his friend's name before the doctor is executed.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Albatross_(episode)"
},
{
"name": "How Sharper Than a Serpent's Tooth?",
"season": 2,
"number": 5,
"summary": "<p>Backtracking a mysterious probe, the Enterprise confronts a ship in the form of a giant feathered serpent. Its captain, Kukulkan, insists on putting Kirk and others through a test to determine if they have grown sufficiently to receive his wisdom.</p>",
"url": "https://memory-alpha.fandom.com/wiki/How_Sharper_Than_a_Serpent's_Tooth_(episode)"
},
{
"name": "The Counter-Clock Incident",
"season": 2,
"number": 6,
"summary": "<p>The <i>Enterprise </i>inadvertently locks a tractor beam on a ship diving into a nova, and finds itself pulled into a bizarre parallel universe where time flies backward and the crew becomes younger at an alarming rate.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Counter-Clock_Incident_(episode)"
}
],
"DIS": [
{
"name": "The Vulcan Hello",
"season": 1,
"number": 1,
"summary": "<p>While patrolling Federation space, the U.S.S. Shenzhou encounters an object of unknown origin, putting First Officer Michael Burnham to her greatest test yet.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Vulcan_Hello_(episode)"
},
{
"name": "Battle at the Binary Stars",
"season": 1,
"number": 2,
"summary": "<p>Face to face with Klingon vessels, the U.S.S. Shenzhou prepares for the possibility of war if negotiations fail. Amidst the turmoil, Burnham looks back to her Vulcan upbringing for guidance.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Battle_at_the_Binary_Stars_(episode)"
},
{
"name": "Context Is for Kings",
"season": 1,
"number": 3,
"summary": "<p>Burnham finds herself aboard the U.S.S. Discovery where she quickly realizes things are not as they seem, including the mysterious Captain Gabriel Lorca.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Context_Is_for_Kings_(episode)"
},
{
"name": "The Butcher's Knife Cares Not for the Lamb's Cry",
"season": 1,
"number": 4,
"summary": "<p>With tensions and stakes high as Starfleet continues in their efforts to end the war with Klingons, Burnham begins to settle in to her new position aboard the U.S.S. Discovery.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Butcher's_Knife_Cares_Not_for_the_Lamb's_Cry_(episode)"
},
{
"name": "Choose Your Pain",
"season": 1,
"number": 5,
"summary": "<p>While on a mission, Lorca unexpectedly finds himself in the company of prisoner of war, Starfleet Lieutenant Ash Tyler and notorious intergalactic criminal, Harry Mudd. Burnham voices her concerns about the repercussions of the spore drive jumps on \"Ripper\".</p>",
"url": "https://memory-alpha.fandom.com/wiki/Choose_Your_Pain_(episode)"
},
{
"name": "Lethe",
"season": 1,
"number": 6,
"summary": "<p>The U.S.S. Discovery crew is intrigued by new addition, Lt. Ash Tyler. Sarek seeks Burnham's help, rekindling memories from her past. Admiral Cornwell questions Lorca's tactics.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Lethe_(episode)"
},
{
"name": "Magic to Make the Sanest Man Go Mad",
"season": 1,
"number": 7,
"summary": "<p>As the U.S.S. Discovery crew attempts to let loose at a party, an unwelcome visitor comes aboard bringing about a problematic and twisted sequence of events.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Magic_to_Make_the_Sanest_Man_Go_Mad_(episode)"
},
{
"name": "Si Vis Pacem, Para Bellum",
"season": 1,
"number": 8,
"summary": "<p>The U.S.S. Discovery is tasked with a high priority mission to planet Pahvo and learn the science behind the Klingons' cloaking technology.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Si_Vis_Pacem%2C_Para_Bellum_(episode)"
},
{
"name": "Into the Forest I Go",
"season": 1,
"number": 9,
"summary": "<p>Bypassing Starfleet's orders, Lorca uses the U.S.S. Discovery crew's ultimate asset, the ship itself, in an effort to end the war with the Klingons once and for all.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Into_the_Forest_I_Go_(episode)"
},
{
"name": "Despite Yourself",
"season": 1,
"number": 10,
"summary": "<p>While in unfamiliar territory, the U.S.S. Discovery crew is forced to get creative in their next efforts to survive opposing and unprecedented forces and return home.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Despite_Yourself_(episode)"
},
{
"name": "The Wolf Inside",
"season": 1,
"number": 11,
"summary": "<p>The crew continues their guise; Burnham goes on a mission in hopes of helping the U.S.S. Discovery return home; Tilly works to restore Stamets</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Wolf_Inside_(episode)"
},
{
"name": "Vaulting Ambition",
"season": 1,
"number": 12,
"summary": "<p>Burnham heads to the ISS Charon with a special \"gift\" for the Emperor. With the help of an unexpected source, Stamets gains clarity while trapped inside the mycelial network. Saru asks for L'Rell's help.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Vaulting_Ambition_(episode)"
},
{
"name": "What's Past Is Prologue",
"season": 1,
"number": 13,
"summary": "<p>Lorca plans to move forward with a coup against the Emperor, propelling Burnham to make a quick decision to save not only herself, but the U.S.S. Discovery.</p>",
"url": "https://memory-alpha.fandom.com/wiki/What's_Past_Is_Prologue_(episode)"
},
{
"name": "The War Without, the War Within",
"season": 1,
"number": 14,
"summary": "<p>Back on the USS Discovery, Michael Burnham and the crew are faced with the harsh reality of the war during their absence. In order to move forward, Starfleet must use unconventional tactics and sources to take their next action against the Klingons.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_War_Without%2C_The_War_Within_(episode)"
},
{
"name": "Will You Take My Hand?",
"season": 1,
"number": 15,
"summary": "<p>With Georgiou at the helm of the plan to end the Klingon war once and for all, the U.S.S. Discovery crew struggles to fathom and tolerate her hostile tactics. Memories of past hardships are rekindled within Burnham.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Will_You_Take_My_Hand%3F_(episode)"
},
{
"name": "Brother",
"season": 2,
"number": 1,
"summary": "<p>After answering a distress signal from the U.S.S. Enterprise, the U.S.S. Discovery welcomes aboard Captain Christopher Pike and begins a new mission to investigate the meaning behind seven mysterious red signals. Michael Burnham grapples with her past growing up on Vulcan with her foster parents and brother Spock.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Brother_(episode)"
},
{
"name": "New Eden",
"season": 2,
"number": 2,
"summary": "<p>A new signal appears, prompting Stamets' emotional return to the mycelial network and leading Burnham, Pike and Owosekun to a pre-warp planet, where they face a complex ethical dilemma. Tilly's overeagerness lands her in trouble but when the planet – and Discovery's landing party – are threatened, her curiosity may be the one thing that can save them.</p>",
"url": "https://memory-alpha.fandom.com/wiki/New_Eden_(episode)"
},
{
"name": "Point of Light",
"season": 2,
"number": 3,
"summary": "<p>A surprise visitor to the U.S.S. Discovery brings shocking news about Spock and dredges up past regrets for Burnham. Following the asteroid incident, Tilly struggles to keep a grip on her reality. L'Rell's authority on Qo'noS is threatened.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Point_of_Light_(episode)"
},
{
"name": "An Obol for Charon",
"season": 2,
"number": 4,
"summary": "<p>A mysterious sphere threatens the U.S.S. Discovery even as May, in her original form, implements a plan that puts Tilly's life in danger. Saru and Burnham's bond grows when Saru is forced to acknowledge a deeply unsettling Kelpien truth. Pike receives new intel on Spock from a loyal friend.</p>",
"url": "https://memory-alpha.fandom.com/wiki/An_Obol_for_Charon_(episode)"
},
{
"name": "Saints of Imperfection",
"season": 2,
"number": 5,
"summary": "<p>Burnham and the crew navigate a dangerous alien landscape in a race against time to save Tilly's life, but Stamets is not at all prepared for what they find in the process. Section 31 is assigned to help track down Spock, much to Pike's dismay.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Saints_of_Imperfection_(episode)"
},
{
"name": "The Sounds of Thunder",
"season": 2,
"number": 6,
"summary": "<p>When a new signal appears over Saru's home planet, Burnham, Saru and the crew embark on a perilous mission that puts Saru in danger and raises questions about the Red Angel's intentions. Hugh struggles to come to terms with his new reality.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Sound_of_Thunder_(episode)"
},
{
"name": "Light and Shadows",
"season": 2,
"number": 7,
"summary": "<p>Burnham goes to Vulcan in search of Spock, where she unearths surprising family secrets. In researching what is left of the Red Angel's signal over Kaminar, Pike and Tyler end up in battle with time itself. Georgiou has a few tricks up her sleeve for Leland and Section 31.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Light_and_Shadows_(episode)"
},
{
"name": "If Memory Serves",
"season": 2,
"number": 8,
"summary": "<p>Spock and Burnham head to Talos IV, where the process of healing Spock forces the siblings to confront their troubled past. Stamets desperately tries to reconnect with an increasingly disconnected Hugh, while Tyler struggles to shed the crew's suspicions of him due to his past as Voq.</p>",
"url": "https://memory-alpha.fandom.com/wiki/If_Memory_Serves_(episode)"
},
{
"name": "Project Daedalus",
"season": 2,
"number": 9,
"summary": "<p>When the Discovery crew infiltrates Section 31's headquarters, suspicions arise that the crew may have a traitor in their midst. Burnham tries to help Spock but her efforts don't go as planned.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Project_Daedalus_(episode)"
},
{
"name": "The Red Angel",
"season": 2,
"number": 10,
"summary": "<p>Burnham is stunned when she learns her ties to Section 31 run deeper than she ever fathomed. Armed with the identity of the Red Angel, the U.S.S. Discovery goes to work on its most critical mission to date.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Red_Angel_(episode)"
},
{
"name": "Perpetual Infinity",
"season": 2,
"number": 11,
"summary": "<p>Burnham receives the reunion she's been longing for, but it doesn't go quite as she imagined. Georgiou and Tyler sense a disturbing change in Leland.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Perpetual_Infinity_(episode)"
},
{
"name": "Through the Valley of Shadows",
"season": 2,
"number": 12,
"summary": "<p>A fourth signal leads the U.S.S. Discovery to an insular world, where Pike is forced to make a life-changing choice. Burnham and Spock investigate a Section 31 ship gone rogue, leading to a discovery with catastrophic consequences.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Through_the_Valley_of_Shadows_(episode)"
},
{
"name": "Such Sweet Sorrow",
"season": 2,
"number": 13,
"summary": "<p>When the U.S.S. Discovery's crucial mission does not go according to plan, Burnham realizes what must ultimately be done. The crew prepares for the battle of a lifetime as Leland's Control ships get closer.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Such_Sweet_Sorrow_(episode)"
},
{
"name": "Such Sweet Sorrow, Part 2",
"season": 2,
"number": 14,
"summary": "<p>The U.S.S. Discovery battles against Control in a fight not only for their lives but for the future, with a little help from some unexpected friends. Spock and Burnham discern vital new connections between the red signals while Burnham faces one of life's harshest truths: the right decisions are often the hardest to make.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Such_Sweet_Sorrow%2C_Part_2_(episode)"
}
],
"ENT": [
{
"name": "Broken Bow (1)",
"season": 1,
"number": 1,
"summary": "<p>Captain Archer takes command of Earth's first warp-speed space vessel and volunteers to return an injured alien to his home planet over the objections of Earth's Vulcan allies, who do not believe the humans are ready for interstellar travel.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Broken_Bow_(episode)"
},
{
"name": "Broken Bow (2)",
"season": 1,
"number": 2,
"summary": "<p>Captain Archer takes command of Earth's first warp-speed space vessel and volunteers to return an injured alien to his home planet over the objections of Earth's Vulcan allies, who do not believe the humans are ready for interstellar travel.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Broken_Bow_(episode)"
},
{
"name": "Fight or Flight",
"season": 1,
"number": 3,
"summary": "<p>The crew is restless after two weeks without contact with sentient life, but an encounter with an alien vessel soon alleviates the boredom as the away team discovers the ship is littered with corpses.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Fight_or_Flight_(episode)"
},
{
"name": "Strange New World",
"season": 1,
"number": 4,
"summary": "<p>The discovery of an Earthlike world proves irresistible to Trip, who persuades Archer to allow his survey team to camp on the planet's surface -- unaware of a gathering storm. After relocating into nearby caves, members of the crew become convinced they are being watched.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Strange_New_World_(episode)"
},
{
"name": "Unexpected",
"season": 1,
"number": 5,
"summary": "<p>After discovering the presence of a damaged alien vessel, Archer dispatches Trip to its aid, but the engineer's encounter with a Xyrillian female has an unexpected side effect.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Unexpected_(episode)"
},
{
"name": "Terra Nova",
"season": 1,
"number": 6,
"summary": "<p>Archer's determination to solve the mystery of Terra Nova, a legendary lost deep-space colony, leads to a tense encounter with a tribe of human-hating cave-dwellers.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Terra_Nova_(episode)"
},
{
"name": "The Andorian Incident",
"season": 1,
"number": 7,
"summary": "<p>Archer's curiosity about an ancient monastery unwittingly places his crew in the midst of a long-standing interstellar conflict between the Vulcans and their arch rivals, the Andorians.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Andorian_Incident_(episode)"
},
{
"name": "Breaking the Ice",
"season": 1,
"number": 8,
"summary": "<p>Archer's probe of an unusual comet is disrupted by the sudden appearance of a Vulcan starship. The vessel is receiving coded messages from a guarded T'Pol, who reluctantly takes Trip into her confidence after he learns the content of her communiqués.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Breaking_the_Ice_(episode)"
},
{
"name": "Civilization",
"season": 1,
"number": 9,
"summary": "<p>Disguised as locals, Archer and his expedition explore a civilization bedeviled by a virulent ailment possibly linked to a covert -- and anomalous -- nuclear reactor. Determined to find the truth, the captain teams up with a local apothecary, leading to a close encounter between the two.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Civilization_(episode)"
},
{
"name": "Fortunate Son",
"season": 1,
"number": 10,
"summary": "<p>Enterprise answers a distress signal from a damaged Earth freighter whose acting commander thirsts for revenge against the Nausicaan pirates who attacked his ship and wounded the captain.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Fortunate_Son_(episode)"
},
{
"name": "Cold Front",
"season": 1,
"number": 11,
"summary": "<p>Archer invites a group of alien stargazers to witness a stellar event aboard Enterprise, not realizing the Suliban agent Silik is among the guests.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Cold_Front_(episode)"
},
{
"name": "Silent Enemy",
"season": 1,
"number": 12,
"summary": "<p>The ship is attacked by an unidentified vessel. In other events, Archer wants to give Reed a personalized birthday present.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Silent_Enemy_(episode)"
},
{
"name": "Dear Doctor",
"season": 1,
"number": 13,
"summary": "<p>The fascination with human behavior and culture expressed by Dr. Phlox in his letter to a peer is contrasted by his dissenting view of the crew's treatment of a dying alien race.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Dear_Doctor_(episode)"
},
{
"name": "Sleeping Dogs",
"season": 1,
"number": 14,
"summary": "<p>Archer dispatches a shuttle to the aid of a disabled Klingon vessel, whose leader orchestrates an ambush that leaves Reed, T'Pol and Hoshi stranded aboard the aliens' unstable ship.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Sleeping_Dogs_(episode)"
},
{
"name": "Shadows of P'Jem",
"season": 1,
"number": 15,
"summary": "<p>T'Pol's sudden transfer from the Enterprise startles Archer, who can't tell if he is more upset with the order or by her indifferent attitude about the reassignment. The captain's frustrations are soon multiplied when both he and T'Pol are taken captive by militant Andorians.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Shadows_of_P'Jem_(episode)"
},
{
"name": "Shuttlepod One",
"season": 1,
"number": 16,
"summary": "<p>Trip and Reed are dispatched on a shuttle mission to investigate an asteroid field and are cut off from Enterprise, thereby becoming convinced the starship has been destroyed and that their days are numbered.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Shuttlepod_One_(episode)"
},
{
"name": "Fusion",
"season": 1,
"number": 17,
"summary": "<p>En route to the eye-catching Arachnid Nebula, the crew encounters an obsolete Vulcan vessel manned by the Vahklas, a Vulcan sect that embraces emotional impulses. Despite her misgivings, T'Pol allows her curiosity about their lifestyle to get the best of her.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Fusion_(episode)"
},
{
"name": "Rogue Planet",
"season": 1,
"number": 18,
"summary": "<p>The crew explores a jungle planet that's been turned into a hunting ground by a race of stalkers called the Eska. There, a shadowy woman makes contact with Archer.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Rogue_Planet_(episode)"
},
{
"name": "Acquisition",
"season": 1,
"number": 19,
"summary": "<p>The Enterprise is invaded by Ferengi marauders, who knock out the crew with sleeping gas and pillage the ship for gold, equipment and slaves.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Acquisition_(episode)"
},
{
"name": "Oasis",
"season": 1,
"number": 20,
"summary": "<p>After hearing of a supposedly haunted alien ship, Archer decides to cannibalize the ship's husk to replenish Enterprise's supplies and discovers the vessel is inhabited after all.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Oasis_(episode)"
},
{
"name": "Detained",
"season": 1,
"number": 21,
"summary": "<p>Archer and Mayweather are held in a Tandaran prison alongside detained Sulibans, leading to a clash of wills between Archer and the commandant.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Detained_(episode)"
},
{
"name": "Vox Sola",
"season": 1,
"number": 22,
"summary": "<p>Following a series of misunderstandings that sent a group of visiting aliens off the Enterprise in a huff, an unidentifiable alien parasite boards the ship to feed off the crew's bodies. It falls to an insecure Hoshi to save her comrades by communicating with the creature.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Vox_Sola_(episode)"
},
{
"name": "Fallen Hero",
"season": 1,
"number": 23,
"summary": "<p>Duty interferes with the crew's first shore leave when the Enterprise is sent to the planet Mazar to fetch a distinguished Vulcan ambassador accused of criminal misconduct. The mission disturbs T'Pol, who's a great admirer of the diplomat.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Fallen_Hero_(episode)"
},
{
"name": "Desert Crossing",
"season": 1,
"number": 24,
"summary": "<p>When Archer and Trip repair a vessel belonging to an alien leader, the Earthmen are repaid with an invitation to their new friend's volatile world.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Desert_Crossing_(episode)"
},
{
"name": "Two Days and Two Nights",
"season": 1,
"number": 25,
"summary": "<p>T'Pol talks Archer into joining the shore-leave party on the planet Risa, where he encounters a troubled alien beauty; Hoshi learns a new language from a local man; a pair of aliens take advantage of Trip and Reed; Dr. Phlox's hibernation is disrupted by Mayweather's injury.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Two_Days_and_Two_Nights_(episode)"
},
{
"name": "Shockwave (1)",
"season": 1,
"number": 26,
"summary": "<p>Archer blames himself when the destruction of an alien colony prompts Starfleet to recall the Enterprise to Earth.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Shockwave_(episode)"
},
{
"name": "Shockwave (2)",
"season": 2,
"number": 1,
"summary": "<p>The sinister Suliban insist that Archer be turned over to them -- and with Archer nowhere to be found aboard the ship. He's stuck in the 31st century, in a decimated city with Daniels, whose intent is to save the future by protecting the past -- and Archer.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Shockwave%2C_Part_II_(episode)"
},
{
"name": "Carbon Creek",
"season": 2,
"number": 2,
"summary": "<p>T'Pol entertains Archer and Trip with the tale of a crash-landed Vulcan ship, whose stranded crew lived in disguise among the denizens of a Pennsylvania mining town circa 1957.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Carbon_Creek_(episode)"
},
{
"name": "Minefield",
"season": 2,
"number": 3,
"summary": "<p>Archer's awkward breakfast with Reed is interrupted when the Enterprise enters a minefield and Reed has to defuse an explosive affixed to the hull.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Minefield_(episode)"
},
{
"name": "Dead Stop",
"season": 2,
"number": 4,
"summary": "<p>Following the ordeal in the minefield, the crew links up with an automated repair vessel that troubles Archer when its computer steals information from the Enterprise's data banks.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Dead_Stop_(episode)"
},
{
"name": "A Night in Sickbay",
"season": 2,
"number": 5,
"summary": "<p>Archer is fuming after the Kreetassans refuse to part with parts for Enterprise because of a diplomatic gaffe involving his dog, Porthos, who then falls ill with a mysterious disorder. But Dr. Phlox thinks there's more to Archer's rants than meets the ear.</p>",
"url": "https://memory-alpha.fandom.com/wiki/A_Night_in_Sickbay_(episode)"
},
{
"name": "Marauders",
"season": 2,
"number": 6,
"summary": "<p>Archer and Trip visit an alien colony seeking deuterium fuel, but their suspicions are aroused when the planet's drillers prove reluctant to deal with them. Aboard Enterprise, Mayweather's sensors detect an approaching Klingon vessel.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Marauders_(episode)"
},
{
"name": "The Seventh",
"season": 2,
"number": 7,
"summary": "<p>A disturbing incident from T'Pol's past prompts her to seek Archer's help in apprehending a renegade undercover Vulcan agent wanted for smuggling biotoxins used to make weapons.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Seventh_(episode)"
},
{
"name": "The Communicator",
"season": 2,
"number": 8,
"summary": "<p>Archer and Reed go undercover on a preatomic-era alien world to retrieve a communicator Reed left behind on a previous visit, and they're captured and held as spies.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Communicator_(episode)"
},
{
"name": "Singularity",
"season": 2,
"number": 9,
"summary": "<p>As the Enterprise nears a black hole, members of the crew are exposed to radiation, which causes them to become increasingly obsessed with mundane tasks. Trip, for example, can't stop tinkering with the captain's chair, while Phlox is fiercely determined to find the cause of Mayweather's headache.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Singularity_(episode)"
},
{
"name": "Vanishing Point",
"season": 2,
"number": 10,
"summary": "<p>Hoshi is convinced her body's molecules are destabilizing after enduring a traumatic trip through the Enterprise transporter to escape a sudden storm on a primitive planet.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Vanishing_Point_(episode)"
},
{
"name": "Precious Cargo",
"season": 2,
"number": 11,
"summary": "<p>Trip discovers a kidnapped Krios royal aboard an alien freighter, but her haughty behavior interferes with Trip's rescue efforts when the pair must share a cramped pod.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Precious_Cargo_(episode)"
},
{
"name": "The Catwalk",
"season": 2,
"number": 12,
"summary": "<p>After rescuing a group of stranded aliens, the Enterprise is caught in a perilous ion storm, compelling the crew to retire to the safety of the ship's reinforced -- but cramped -- catwalk.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Catwalk_(episode)"
},
{
"name": "Dawn",
"season": 2,
"number": 13,
"summary": "<p>Trip is marooned after his shuttle is downed by an Arkonian pilot whose ship crashes on the same moon, while Archer's search is stalled by the Arkonians' distrust of T'Pol.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Dawn_(episode)"
},
{
"name": "Stigma",
"season": 2,
"number": 14,
"summary": "<p>T'Pol's health is jeopardized by a rare illness associated with mind melders, because that sect is ostracized by Vulcan society, she tries to keep her disease a secret, while Dr. Phlox researches methods of treatment.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Stigma_(episode)"
},
{
"name": "Cease Fire",
"season": 2,
"number": 15,
"summary": "<p>The Enterprise is caught in the midst of an age-old feud when Archer is ordered to mediate a bloody planetary dispute between the Andorians and their long-time Vulcan nemeses.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Cease_Fire_(episode)"
},
{
"name": "Future Tense",
"season": 2,
"number": 16,
"summary": "<p>Archer's interest in a human body recovered from a crashed spacecraft takes a backseat to threats posed by the Suliban and the Tholians, both of whom seek the craft.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Future_Tense_(episode)"
},
{
"name": "Canamar",
"season": 2,
"number": 17,
"summary": "<p>Following a seemingly successful first contact mission, Archer and Trip are charged with smuggling and imprisoned aboard a penal vessel, where several inmates plot escape.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Canamar_(episode)"
},
{
"name": "The Crossing",
"season": 2,
"number": 18,
"summary": "<p>Trip and several other members of the Enterprise crew are possessed by ghostly beings after the ship is swallowed up by a massive alien vessel.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Crossing_(episode)"
},
{
"name": "Judgment",
"season": 2,
"number": 19,
"summary": "<p>Archer is put on trial by the Klingons and accused by a disgraced Klingon officer of having his battle-cruiser crippled by the Enterprise in a firefight, and of aiding rebels of the Empire, but he finds a friend in his defender, Kolos.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Judgment_(episode)"
},
{
"name": "Horizon",
"season": 2,
"number": 20,
"summary": "<p>Mayweather is granted leave to visit his family after the sudden death of his father, a cargo-ship captain. But his return to the old vessel is complicated by family tension. Meanwhile, Archer and Trip invite a reluctant T'Pol to see a movie.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Horizon_(episode)"
},
{
"name": "The Breach",
"season": 2,
"number": 21,
"summary": "<p>The rescue of a damaged transport prompts the Denobulan Phlox to confront his prejudices when he treats an Antaran, whose people are sworn enemies of Phlox's. Other Denobulans are holed up in an underground cave, where Trip, Reed and Mayweather are dispatched to retrieve them.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Breach_(episode)"
},
{
"name": "Cogenitor",
"season": 2,
"number": 22,
"summary": "<p>Enterprise's first contact with the Vissian race proves mutually rewarding until Trip befriends an alien couple's congenitor -- a being used for breeding purposes only.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Cogenitor_(episode)"
},
{
"name": "Regeneration",
"season": 2,
"number": 23,
"summary": "<p>Enterprise searches for a party of missing scientific researchers who vanished from the Arctic after discovering a crashed spacecraft and its dormant cybernetic crew.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Regeneration_(episode)"
},
{
"name": "First Flight",
"season": 2,
"number": 24,
"summary": "<p>Stunned by the death of a former Starfleet rival, Archer grudgingly recalls their competitive relationship to T'Pol as they probe a nebula during a shuttle voyage.</p>",
"url": "https://memory-alpha.fandom.com/wiki/First_Flight_(episode)"
},
{
"name": "Bounty",
"season": 2,
"number": 25,
"summary": "<p>A crafty Tellarite tricks Archer into boarding his ship to collect a bounty from the Klingons; T'Pol's mating cycle is kick-started after she is contaminated by a stray microbe while exploring a desert planet.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Bounty_(episode)"
},
{
"name": "The Expanse",
"season": 2,
"number": 26,
"summary": "<p>The Enterprise is recalled to Earth after a mysterious alien probe kills millions. Complicating matters are the machinations of a vengeful Klingon.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Expanse_(episode)"
},
{
"name": "The Xindi",
"season": 3,
"number": 1,
"summary": "<p>The Enterprise hunts the Xindi who attacked Earth, but Archer and Trip's zeal to capture a Xindi leads them into a trap.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Xindi_(episode)"
},
{
"name": "Anomaly",
"season": 3,
"number": 2,
"summary": "<p>Distortions within the Delphic Expanse disrupt the Enterprise's computer systems, leaving its stores vulnerable to Ventaxian pirates who loot critical supplies.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Anomaly_(episode)"
},
{
"name": "Extinction",
"season": 3,
"number": 3,
"summary": "<p>The crew's ongoing pursuit of the Xindi leads them to a tropical world where Archer, Hoshi and Reed are exposed to a virus that morphs them into the planet's native beings. As Phlox searches for a cure, Trip and T'Pol negotiate with aliens determined to kill all those infected.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Extinction_(episode)"
},
{
"name": "Rajiin",
"season": 3,
"number": 4,
"summary": "<p>Archer, Trip and Reed return from an alien barter town with a surprise guest -- an alluring woman whose beguiling sensuality proves irresistible to the crew.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Rajiin_(episode)"
},
{
"name": "Impulse",
"season": 3,
"number": 5,
"summary": "<p>After answering a distress signal from a Vulcan starship, Archer, T'Pol, Reed and Hawkins arrive on board to find its crew in a deranged, raging state that quickly manifests in T'Pol as well.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Impulse_(episode)"
},
{
"name": "Exile",
"season": 3,
"number": 6,
"summary": "<p>A powerful telepath named Tarquin becomes smitten with Hoshi and offers to part with key intelligence on the Xindi if she's allowed to visit his planet. But when Enterprise returns to pick up Hoshi, Tarquin refuses to let her go.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Exile_(episode)"
},
{
"name": "The Shipment",
"season": 3,
"number": 7,
"summary": "<p>Archer, Reed and MACO Major Hayes infiltrate a Xindi-Sloth plant that is creating the explosive material for the Xindi super-weapon. The trio kidnaps the plant foreman, who forms an alliance with them once he learns of the Xindi council's attack on Earth. Elsewhere, Trip, T'Pol and Dr. Phlox test captured Xindi firearms in hopes of creating better defenses against them.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Shipment_(episode)"
},
{
"name": "Twilight",
"season": 3,
"number": 8,
"summary": "<p>Archer suffers a puzzling form of amnesia that distorts his long-term memories. He is further confused to find himself in the future aboard an Enterprise commanded by T'Pol.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Twilight_(episode)"
},
{
"name": "North Star",
"season": 3,
"number": 9,
"summary": "<p>The crew investigates a world within the Delphic Expanse with a civilization closely resembling America's 19th-century Wild West.</p>",
"url": "https://memory-alpha.fandom.com/wiki/North_Star_(episode)"
},
{
"name": "Similitude",
"season": 3,
"number": 10,
"summary": "<p>To heal a critically injured Trip, Dr. Phlox creates a clone of the engineer using an exotic creature in his lab. But the clone's rapid growth and replication of Trip's behavior alarms the crew.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Similitude_(episode)"
},
{
"name": "Carpenter Street",
"season": 3,
"number": 11,
"summary": "<p>Acting on a tip from Daniels, Archer and T'Pol time-travel to the year 2004, where the Xindi are using an abandoned Detroit factory to build a secret weapon.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Carpenter_Street_(episode)"
},
{
"name": "Chosen Realm",
"season": 3,
"number": 12,
"summary": "<p>The crew is taken hostage by alien religious zealots who plot to use the Enterprise to punish unbelievers after Archer rescues them from their crippled vessel.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Chosen_Realm_(episode)"
},
{
"name": "Proving Ground",
"season": 3,
"number": 13,
"summary": "<p>Andorian Imperial Guard Commander Shran proposes an alliance to Archer, offering to help steal the Xindi's superweapon. Elsewhere, Lt. Talas, an Andorian officer with her own agenda, helps Lt. Reed repair the Enterprise's damaged weapons systems.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Proving_Ground_(episode)"
},
{
"name": "Stratagem",
"season": 3,
"number": 14,
"summary": "<p>Archer seeks to destroy a superweapon under construction by the Xindi by tricking its designer, Degra, into revealing its hiding place.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Stratagem_(episode)"
},
{
"name": "Harbinger",
"season": 3,
"number": 15,
"summary": "<p>A dying alien refuses to disclose his motives for exploring a spatial anomaly; Trip's interest in a pretty corporal sparks a heated exchange with T'Pol; Reed quarrels with a colleague over training drills.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Harbinger_(episode)"
},
{
"name": "Doctor's Orders",
"season": 3,
"number": 16,
"summary": "<p>Archer places Dr. Phlox in control of the Enterprise when the crew requires sedation to survive a mind-altering section of the Expanse lethal to humanoids. But Phlox's Denobulan physiology doesn't entirely shield him from its effects.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Doctor's_Orders_(episode)"
},
{
"name": "Hatchery",
"season": 3,
"number": 17,
"summary": "<p>The discovery of unhatched Xindi eggs inside a crashed vessel brings out the paternal side of Archer, who alarms the crew with his obsessive determination to save the embryos.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Hatchery_(episode)"
},
{
"name": "Azati Prime",
"season": 3,
"number": 18,
"summary": "<p>After pinpointing the site of the Xindi doomsday weapon, Archer prepares to undertake a suicidal mission to destroy it, until the time-traveling Daniels gives him pause.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Azati_Prime_(episode)"
},
{
"name": "Damage",
"season": 3,
"number": 19,
"summary": "<p>Archer considers compromising his morals to restore Enterprise's warp capacity after a fleet of Xindi-controlled warships cripple the vessel's engine; and T'Pol grows increasingly volatile, prompting her to confide a troubling secret to Phlox.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Damage_(episode)"
},
{
"name": "The Forgotten",
"season": 3,
"number": 20,
"summary": "<p>Archer persuades Degra to examine evidence of the plot to pit the Xindi against Earth, while Trip wrestles with the death of a subordinate .</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Forgotten_(episode)"
},
{
"name": "E²",
"season": 3,
"number": 21,
"summary": "<p>The crew encounters its descendants when it enters a wormhole and discovers a future version of the ship captained by T'Pol's son, who warns Archer of an alien attack.</p>",
"url": "https://memory-alpha.fandom.com/wiki/E%C2%B2_(episode)"
},
{
"name": "The Council",
"season": 3,
"number": 22,
"summary": "<p>Degra's fleet ushers the Enterprise to a tense conference with Xindi council as T'Pol and Reed embark on a desperate mission to gather data on the doomsday weapon.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Council_(episode)"
},
{
"name": "Countdown",
"season": 3,
"number": 23,
"summary": "<p>Newly allied with the Xindi, Archer turns his attentions to destroying the doomsday device as the Reptilians attempt to brainwash Hoshi into cracking the weapon's code.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Countdown_(episode)"
},
{
"name": "Zero Hour",
"season": 3,
"number": 24,
"summary": "<p>Archer tries to coax a traumatized Hoshi into using her decryption skills to disable the doomsday weapon before the Reptilians can use it to destroy Earth as the Enterprise embarks on a desperate mission of its own to cripple the rest of the spheres.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Zero_Hour_(episode)"
},
{
"name": "Storm Front (1)",
"season": 4,
"number": 1,
"summary": "<p>Archer awakens in the U.S. circa 1944 as a prisoner of Nazis controlling New York City. But he escapes with the help of an insurgent. Back aboard Enterprise, the crew seeks answers for their journey back in time and the changes to Earth's history.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Storm_Front_(episode)"
},
{
"name": "Storm Front (2)",
"season": 4,
"number": 2,
"summary": "<p>Frustrated by the limitations of Nazi technology, Vosk offers to return Trip and Mayweather to the Enterprise if Archer assists in the creation of a time machine. Meanwhile, Alicia's comrades in Nazi-occupied New York learn of Archer's space vessel on the eve of an Allied counterattack.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Storm_Front%2C_Part_II_(episode)"
},
{
"name": "Home",
"season": 4,
"number": 3,
"summary": "<p>The Enterprise returns to Earth with great fanfare, but the novelty quickly wears off for Archer, who is forced to take a vacation after a heated exchange with a Vulcan official. Also, Trip accompanies T'Pol to Vulcan, where he meets her mother; Reed worries about Phlox's safety on Earth in the aftermath of the Xindi scare.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Home_(episode)"
},
{
"name": "Borderland",
"season": 4,
"number": 4,
"summary": "<p>The Klingons threaten war after genetic mutants hijack one of their ships, leading Archer to call on the mutants' \"father\" -- criminal scientist Arik Soong -- for help in taking them down.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Borderland_(episode)"
},
{
"name": "Cold Station 12",
"season": 4,
"number": 5,
"summary": "<p>Soong realizes just how ruthless his \"children\" have become when the fugitive Augments raid a research facility to retrieve genetically enhanced embryos left over from the Eugenics Wars.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Cold_Station_12_(episode)"
},
{
"name": "The Augments",
"season": 4,
"number": 6,
"summary": "<p>Malik's rash proposal to safeguard the Augments from Starfleet interference leads to a rift with Soong as the Enterprise cautiously enters Klingon space in dogged pursuit.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Augments_(episode)"
},
{
"name": "The Forge",
"season": 4,
"number": 7,
"summary": "<p>The crew joins forces with Vulcan authorities to investigate a deadly bombing of Earth's embassy, which may be the work of a sect devoted to the logical teachings of Surak, the father of Vulcan philosophy.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Forge_(episode)"
},
{
"name": "Awakening",
"season": 4,
"number": 8,
"summary": "<p>The Syrranites subject Archer to a potentially lethal mind-meld after learning that information about Surak was placed in his head. Meanwhile, Vulcan officials plot the dissidents' destruction.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Awakening_(episode)"
},
{
"name": "Kir'Shara",
"season": 4,
"number": 9,
"summary": "<p>As Vulcan prepares for war, V'Las sends a commando team to eliminate Archer, T'Pol and T'Pau, while Soval risks his sanity to warn the Andorians of the impending attack.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Kir'Shara_(episode)"
},
{
"name": "Daedalus",
"season": 4,
"number": 10,
"summary": "<p>Emory Erickson, the inventor of the transporter, enlists Archer's help in a daring experiment, but a crew member's death forces him to reveal the real purpose of his test.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Daedalus_(episode)"
},
{
"name": "Observer Effect",
"season": 4,
"number": 11,
"summary": "<p>Curious aliens inhabit various members of the crew to observe aspects of humanity; and Phlox works feverishly to cure a lethal virus contracted by Trip and Hoshi during an away mission.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Observer_Effect_(episode)"
},
{
"name": "Babel One",
"season": 4,
"number": 12,
"summary": "<p>While escorting a Tellarite ambassador to a neutral planet for a peace conference with the Andorians, the Enterprise is attacked after answering a distress call from Shran.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Babel_One_(episode)"
},
{
"name": "United",
"season": 4,
"number": 13,
"summary": "<p>A desire for vengeance interferes with Archer's attempts to ally Shran and the Tellarites as Trip and Reed probe the inner workings of an unmanned warship.</p>",
"url": "https://memory-alpha.fandom.com/wiki/United_(episode)"
},
{
"name": "The Aenar",
"season": 4,
"number": 14,
"summary": "<p>Archer and Shran visit a civilization populated by Andorian offshoots in search of a telepath who could gain control of the renegade drone vessels.</p>",
"url": "https://memory-alpha.fandom.com/wiki/The_Aenar_(episode)"
},
{
"name": "Affliction",
"season": 4,
"number": 15,
"summary": "<p>As Trip prepares the Columbia, Enterprise's sister vessel, for its maiden voyage, Phlox is shanghaied by alien kidnappers, who require his skills to kill a mutated virus.</p>",
"url": "https://memory-alpha.fandom.com/wiki/Affliction_(episode)"
},