-
Notifications
You must be signed in to change notification settings - Fork 1
/
322328.json
4177 lines (4177 loc) · 158 KB
/
322328.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
[
{
"auth": false,
"ott_launch_date": 1450887120,
"auth_expiration_date": 1682481540,
"tms_id": "",
"rating": 4.8239985,
"description": "Special edition of \"Kentucky Nightmare\"--with commentary provided by the show producers' mothers.",
"title_suggest": {
"input": [
"Momentary"
]
},
"type": "episode",
"title": "Momentary",
"expiration_date": 1756871940,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 600.3670337,
"episode_number": "6",
"original_air_date": 1009773000,
"clip_order": null,
"auth_launch_date": 1668315600,
"modified": 1715181952,
"media_id": "60f88b422a5643f0c475b7d6c912a60799a4125c",
"airing_id": "RADS1005082400069079",
"id": "-w5jAZ4iQwmXjYolSVezHQ",
"slug": "momentary",
"views": 21023,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/1_204201157389-sgc2c_2106.jpg",
"created": 1402945476,
"title_id": "411004",
"season_number": "7",
"tv_rating": "tv-pg-l",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1715181952,
"tags": [
"space ghost c2c episode 82 mommentary part 1"
],
"rating_count": 125,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1715227200,
"poster": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/2_204201157389-sgc2c_2106.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1450888080,
"auth_expiration_date": 1675832340,
"tms_id": "EP001022180073",
"rating": 5.797546,
"description": "The creators of Space Ghost Coast to Coast did not have enough time to finish the show. So, here, watch this rough cut.",
"title_suggest": {
"input": [
"Live at the Filmore",
"at the Filmore",
"the Filmore",
"Filmore"
]
},
"type": "episode",
"title": "Live at the Filmore",
"expiration_date": 1739941140,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 641.6006006,
"episode_number": "2",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": 1667970000,
"modified": 1718215058,
"airing_id": "RADS1006122400075174",
"media_id": "9aeefbc951ed10ef45ba81a8de2d48c6007ae9f5",
"id": "0CgjXBxgRkGPriCubw7YJQ",
"slug": "live-at-the-filmore",
"views": 16258,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/1_20420121391-sgc2c_2402_dst_cid-9281918.jpg",
"created": 1402945476,
"title_id": "542886",
"season_number": "9",
"tv_rating": "tv-14-l",
"active": false,
"ott_expiration_date": null,
"published": 1718215058,
"tags": [
"space ghost c2c sg episode 89 live at the filmore"
],
"rating_count": 163,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1718251200,
"poster": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/2_20420121391-sgc2c_2402_dst_cid-9281918.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449258300,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180015",
"rating": 7.512195,
"description": "Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin! Evil Twin!",
"title_suggest": {
"input": [
"Switcheroo"
]
},
"type": "episode",
"title": "Switcheroo",
"expiration_date": 1749009540,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 943.2335669,
"episode_number": "8",
"original_air_date": 900732600,
"clip_order": null,
"auth_launch_date": 1668056400,
"modified": 1728315268,
"airing_id": "RADS1010072400096781",
"media_id": "8ce2817a06fec618cf2271904d6b0cd288111f14",
"id": "0UXyxQVgQJyYpaPjBL6nhg",
"slug": "switcheroo",
"views": 24879,
"exclude_from_search": false,
"thumbnail": "",
"created": 1402945476,
"title_id": "322767",
"season_number": "3",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1728315268,
"tags": [
"space ghost coast to coast episode 26 switcheroo evil twin susan olsen elvira"
],
"rating_count": 123,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1728360000,
"poster": "https://i.cdn.turner.com/adultswim/big/video/switcheroo/sgc2c_9608_dst_cid-9112594-201104191445049145.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1450888140,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180021",
"rating": 8.152814,
"description": "Space Ghost's obsession with hair care products finally gets him into trouble when he lathers up with Chambraigne, the shampoo for your brain. Despite limb loss, Space Ghost tries to convince Bob Costas and the world that Chambraigne truly is an intelli-hancer. Then Carl explodes.",
"title_suggest": {
"input": [
"Chambraigne"
]
},
"type": "episode",
"title": "Chambraigne",
"expiration_date": 1740891540,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 700.6339673,
"episode_number": "1",
"original_air_date": 939438000,
"clip_order": null,
"auth_launch_date": 1680062400,
"modified": 1709742776,
"airing_id": "RADS1003062400058448",
"media_id": "e87e4a58a573a77efd45756ecf951e1693f69a64",
"id": "2P-Gsxz5RDCOmGiWNAGTXg",
"slug": "chambraigne",
"views": 36813,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/1_204201150503-sgc2c_9901_air.jpg",
"created": 1402945476,
"title_id": "332367",
"season_number": "6",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1709742776,
"tags": [
"Space Ghost episode 69 Chambraigne"
],
"rating_count": 373,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1709787600,
"poster": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/2_204201150503-sgc2c_9901_air.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449258480,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180080",
"rating": 7.4570136,
"description": "Performance artist Laurie Anderson riles Space Ghost by revealing that she never watches television, then waxes conspiratorial about cyberspace. A disengaged Space Ghost invisos out, missing much of their remaining conversation. Next, Space Ghost endeavors to understand members of the performance troupe Stomp.",
"title_suggest": {
"input": [
"Art Show",
"Show"
]
},
"type": "episode",
"title": "Art Show",
"expiration_date": 1752033540,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 726.8341675,
"episode_number": "14",
"original_air_date": 908595000,
"clip_order": null,
"auth_launch_date": 1670389200,
"modified": 1730495345,
"airing_id": "RADS1011012400001236",
"media_id": "0101f6d01038f397cb4b165a08e8f20f2c7df88f",
"id": "2rRTwZdqRre3KR65buuoew",
"slug": "art-show",
"views": 39534,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_20417101335-sgc2c_9614_dst_cid-9137639.jpg",
"created": 1402945476,
"title_id": "322772",
"season_number": "3",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1730495345,
"tags": [
"space ghost coast to coast episode 32 art show laurie anderson stomp"
],
"rating_count": 221,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1730520000,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_20417101335-sgc2c_9614_dst_cid-9137639.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1450890000,
"auth_expiration_date": 1684814340,
"tms_id": "EP001022180045",
"rating": 7.811321,
"description": "Moltar gets his chance to host the show while Space Ghost illegally copies the new Radiohead album. Later, it is revealed that Space Ghost is married to Bjork. Space Ghost ends the episode by knocking her off of a cliff.",
"title_suggest": {
"input": [
"Knifin' Around",
"Around"
]
},
"type": "episode",
"title": "Knifin' Around",
"expiration_date": 1745380740,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 726.0667334,
"episode_number": "3",
"original_air_date": 999487800,
"clip_order": null,
"auth_launch_date": 1684296000,
"modified": 1714043906,
"media_id": "3962fa305f7e3c58fba951217067f198f90d73e4",
"airing_id": "RADS1004252400066526",
"id": "32fDmW7-Q-CFfRawAGyoYg",
"slug": "knifin-around",
"views": 42141,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/1_204201154440-sgc2c_2103.jpg",
"created": 1402945476,
"title_id": "344201",
"season_number": "7",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1714043906,
"tags": [
"space ghost c2c episode 79 knifin' around"
],
"rating_count": 371,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1714104000,
"poster": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/2_204201154440-sgc2c_2103.jpg",
"cma_id": "1465669"
},
{
"auth": false,
"ott_launch_date": 1449870960,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180095",
"rating": 9.060607,
"description": "Desperate for a new gig, Space Ghost kisses up to \"Talk Soup\" host John Henson and \"Entertainment Tonight\" host Bob Goen by telling each that they are \"pretty men.\" Space Ghost even offers to set Henson up with his \"sister\" Judy. Brak spoils the affair by spilling gravy all over the set.",
"title_suggest": {
"input": [
"Suckup"
]
},
"type": "episode",
"title": "Suckup",
"expiration_date": 1734843540,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 712.4337671,
"episode_number": "19",
"original_air_date": 975301200,
"clip_order": null,
"auth_launch_date": 1677646800,
"modified": 1707329071,
"airing_id": "RADS1002072400052350",
"media_id": "a452865d62ea61ad07b7b718b518975b90b1d932",
"id": "6Q4q9jrQTdqM-8UXLBAJmQ",
"slug": "suckup",
"views": 52189,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/1_204201138375-sgc2c_9719_dst_cid-9131518.jpg",
"created": 1402945476,
"title_id": "322329",
"season_number": "4",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1707329071,
"tags": [
"space ghost coast to coast sgc2c episode 52 suckup talk soup john henson bob goen"
],
"rating_count": 132,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1707368400,
"poster": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/2_204201138375-sgc2c_9719_dst_cid-9131518.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449532200,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180109",
"rating": 8.80734,
"description": "After revealing that contractual squabbles before the premiere of \"Space Ghost Coast to Coast\" resulted in an aborted test shoot starring rival superhero Birdman, host Lokar presents exclusive glimpses of this \"lost\" pilot.",
"title_suggest": {
"input": [
"Pilot"
]
},
"type": "episode",
"title": "Pilot",
"expiration_date": 1756267140,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 643.8675342,
"episode_number": "6",
"original_air_date": 923713200,
"clip_order": null,
"auth_launch_date": 1674622800,
"modified": 1730294869,
"airing_id": "RADS1010302400000404",
"media_id": "3acb33e58a50920d5472e4195358a5f27016a7d1",
"id": "6lPxT9CaSNWu00olRAiaBQ",
"slug": "pilot",
"views": 33841,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_204171016152-sgc2c_9706_air_cid-9127473.jpg",
"created": 1402945476,
"title_id": "322341",
"season_number": "4",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1730294869,
"tags": [
"sgc2c space ghost coast to coast episode 39 pilot lokar birdman american gladiators"
],
"rating_count": 109,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1730347200,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_204171016152-sgc2c_9706_air_cid-9127473.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449257820,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180079",
"rating": 7.5,
"description": "Sonic Youth's Thurston Moore stars as Fred Cracklin in a 15-minute showcase for late musician Sonny Sharrock. Sharrock was the man behind the \"Space Ghost Coast to Coast\" theme music.",
"title_suggest": {
"input": [
"Sharrock"
]
},
"type": "episode",
"title": "Sharrock",
"expiration_date": 1747195140,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 694.7674341,
"episode_number": "5",
"original_air_date": 946877400,
"clip_order": null,
"auth_launch_date": 1668056400,
"modified": 1727108687,
"airing_id": "RADS1009232400092940",
"media_id": "f010866884eef307c897c96b23f4c5533fb2cd4e",
"id": "7OEF6XgaQuOtY5cpPIm1KA",
"slug": "sharrock",
"views": 42706,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_20417956280-sgc2c_9605_dst_cid-9105378.jpg",
"created": 1402945476,
"title_id": "322642",
"season_number": "3",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1727108687,
"tags": [],
"rating_count": 230,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1727150400,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_20417956280-sgc2c_9605_dst_cid-9105378.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449532140,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180044",
"rating": 8.833333,
"description": "Zorak is zapped until he can apparently no longer regenerate, leaving Space Ghost without a bandleader. Moltar is instructed to fill in for his dearly departed friend by singing renditions of German folk songs, which puts Beck, the show's lone guest, to sleep.",
"title_suggest": {
"input": [
"Edelweiss"
]
},
"type": "episode",
"title": "Edelweiss",
"expiration_date": 1732251540,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 723.7674341,
"episode_number": "3",
"original_air_date": 889849800,
"clip_order": null,
"auth_launch_date": 1672808400,
"modified": 1710039834,
"airing_id": "RADS1003102400058969",
"media_id": "b5deff72e12a7ba7bd8485cd4b32a57037c13194",
"id": "9R-50kToSPK0QDH5dhjymw",
"slug": "edelweiss",
"views": 43203,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_20417104289-sgc2c_9703_dst_cid-9128089.jpg",
"created": 1402945476,
"title_id": "322355",
"season_number": "4",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1710039834,
"tags": [
"sgc2c space ghost coast to coast episode 36 edelweiss zorak bandleader beck"
],
"rating_count": 132,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1710046800,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_20417104289-sgc2c_9703_dst_cid-9128089.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1448046900,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180030",
"rating": 8.589406,
"description": "Space Ghost welcomes two talk-show experts, Bill Carter and Joe Franklin. Carter, author of \"The Late Shift,\"explains why Space Ghost was excluded from his book. Franklin, the world's first TV talk show host, gives him a few pointers. Moltar introduces his fascination with the television series \"CHiPs,\"a theme that will resurface again and again.",
"title_suggest": {
"input": [
"CHiPs"
]
},
"type": "episode",
"title": "CHiPs",
"expiration_date": 1763528340,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 635.0667334,
"episode_number": "4",
"original_air_date": 895894200,
"clip_order": null,
"auth_launch_date": 1667970000,
"modified": 1730122591,
"airing_id": "RADS1010282400099541",
"media_id": "6aa85edc65bcd91f400f6e2a568b63bf53fa3696",
"id": "9WZFQoNXT3Sba6St7XLX1w",
"slug": "c-hi-ps",
"views": 44944,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_2041794630-sgc2c_9404_dst_cid-9122680.jpg",
"created": 1402945476,
"title_id": "322736",
"season_number": "1",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1730122591,
"tags": [
"space ghost c2c sg episode 4 chips bill carter joe franklin"
],
"rating_count": 151,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1730174400,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_2041794630-sgc2c_9404_dst_cid-9122680.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449870840,
"auth_expiration_date": 1684900799,
"tms_id": "EP001022180020",
"rating": 9.497584,
"description": "Grandpa Space Ghost, whose physique is identical to his grandson's and whose voice is identical to WCW wrestler \"Macho Man\" Randy Savage, gives an \"OOOO-YEEAAAHHH!\" performance despite being clubbed with a chair by Zorak. Grandpa Ghostal interviews kid actress Raven Symone.",
"title_suggest": {
"input": [
"Piledriver"
]
},
"type": "episode",
"title": "Piledriver",
"expiration_date": 1734238740,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 632.8,
"episode_number": "18",
"original_air_date": 909199800,
"clip_order": null,
"auth_launch_date": 1677042000,
"modified": 1706743133,
"airing_id": "RADS1001312400051636",
"media_id": "3a79d317719736a471c0368e39c19aeb94ea0241",
"id": "AHVmtcYwRxeQQXC0SQndIQ",
"slug": "piledriver",
"views": 45541,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/1_20420113803-sgc2c_9718.jpg",
"created": 1402945476,
"title_id": "322344",
"season_number": "4",
"tv_rating": "tv-pg",
"active": false,
"ott_expiration_date": null,
"published": 1706743133,
"tags": [
"space ghost coast to coast sgc2c episode 51 piledriver macho man randy savage grandpa leonard ghostal raven symone"
],
"rating_count": 207,
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1706763600,
"poster": "https://media.cdn.adultswim.com/uploads/20200420/thumbnails/2_20420113803-sgc2c_9718.jpg",
"cma_id": ""
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "No one sings the blues like Zorak. From the 1997 album Space Ghost's Musical Bar-B-Que.",
"title_suggest": {
"input": [
"Zorak: Zingor",
"Zingor"
]
},
"expiration_date": null,
"type": "clip",
"title": "Zorak: Zingor",
"platforms": [
"android",
"ios",
"roku",
"fire-tv",
"online-exclusive"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 88.4671338,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "me6e48973fd79ad0460ac0e93e9ff3cd32223fca19",
"modified": 1565893337,
"slug": "zorak-zingor",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15216603383053.png",
"created": 1521660083,
"season_number": "",
"title_id": "428763",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1565893337,
"tags": [],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "Justin Gardner",
"launch_date": 1521604800,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15216603383053.png",
"id": "AWJKAjyQHAeP4-pUPd5J",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180100",
"description": "After model Cyndi Guyer, the female Fabio, explains what she looks for in a man, the Jerky Boys arrive and promptly threaten to punch Space Ghost in the mouth. The undertow of violence subsides with the appearance of model Dian Parkinson.",
"title_suggest": {
"input": [
"Punch"
]
},
"title": "Punch",
"expiration_date": 1738126740,
"type": "episode",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 677.1097,
"episode_number": "7",
"original_air_date": "898488000",
"auth_launch_date": null,
"clip_order": null,
"airing_id": "RADS1004172400065656",
"media_id": "c27b6753fec456e4e713dcc0c07c9f299690e2c6",
"modified": 1713370437,
"slug": "punch",
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_2041794713-sgc2c_9406_dst_cid-9105370.jpg",
"created": 1689868519,
"season_number": "1",
"title_id": "322738",
"tv_rating": "tv-pg",
"published": 1713370437,
"tags": [
"space ghost coast to coast c2c punch episode 7"
],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1713412800,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_2041794713-sgc2c_9406_dst_cid-9105370.jpg",
"id": "AYl0A0dFOz5CkuTcnwRx",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180028",
"description": "Space Ghost adds a few new twists: a live studio audience, a remarkably versatile applause sign and viewer call-in. The results fall flat and Space Ghost isn't happy. Palmer Mills and Sandra Bernhard come to agree Space Ghost is a jerk.",
"title_suggest": {
"input": [
"Jerk"
]
},
"title": "Jerk",
"expiration_date": 1743566340,
"type": "episode",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 1053.2522,
"episode_number": "7",
"original_air_date": "901337400",
"auth_launch_date": null,
"clip_order": null,
"airing_id": "RADS1005192400070794",
"media_id": "7aded50ef0eca0ecc42ca02145aa9375345936c1",
"modified": 1716146561,
"slug": "jerk",
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_20417952403-sgc2c_9507_dst_cid-9105375.jpg",
"created": 1689871158,
"season_number": "2",
"title_id": "322753",
"tv_rating": "tv-pg",
"published": 1716146561,
"tags": [],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1716177600,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_20417952403-sgc2c_9507_dst_cid-9105375.jpg",
"id": "AYl0K47h2rZC6NyF61-F",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180048",
"description": "Space Ghost pays tribute to Women in the Entertainment Industry. Fran Drescher paralyzes Space Ghost with desire. Carol Channing dispenses advice to soothe his heart but this comfort is ruined by the appearance of rocker Alice Cooper.",
"title_suggest": {
"input": [
"Girlie Show",
"Show"
]
},
"title": "Girlie Show",
"expiration_date": 1741751940,
"type": "episode",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 691.691,
"episode_number": "3",
"original_air_date": "917668800",
"auth_launch_date": null,
"clip_order": null,
"airing_id": "RADS1005082400069080",
"media_id": "39ea1fa437a309b1c184f23f24a2eebeb07e3655",
"modified": 1715182265,
"slug": "girlie-show",
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_2041795122-sgc2c_9503_dst_cid-9112589.jpg",
"created": 1689871047,
"season_number": "2",
"title_id": "322331",
"tv_rating": "tv-pg",
"published": 1715182265,
"tags": [
"space ghost coast to coast c2c girlie show episode 13"
],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1715227200,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_2041795122-sgc2c_9503_dst_cid-9112589.jpg",
"id": "AYl0KdzDOz5CkuTcnwR0",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180029",
"description": "It's mating season on Zorak's home planet. Despite the role the male plays in the love ritual, Zorak gives in to the common of insect impulses and returns home. Space Ghost welcomes Catherine Bach and plays the blues with Matthew Sweet.",
"title_suggest": {
"input": [
"Urges"
]
},
"title": "Urges",
"expiration_date": 1744171140,
"type": "episode",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 995.7281,
"episode_number": "8",
"original_air_date": "898918200",
"auth_launch_date": null,
"clip_order": null,
"airing_id": "RADS1005222400071163",
"media_id": "6215968165cb1ab3cc91af5e1332caed0a9e881e",
"modified": 1716392206,
"slug": "urges",
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_20417953154-sgc2c_9508_dst_cid-9074383.jpg",
"created": 1689871293,
"season_number": "2",
"title_id": "322754",
"tv_rating": "tv-pg",
"published": 1716392206,
"tags": [],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1716436800,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_20417953154-sgc2c_9508_dst_cid-9074383.jpg",
"id": "AYl0LZtU2rZC6NyF61-G",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180012",
"description": "Space Ghost turns to experts for advice on supernatural phenomena such as the disappearance of his phantom cruiser keys. Michael Norman, ghost expert and author of Historic Haunted America, and Bill Nye are all too happy to help him out.",
"title_suggest": {
"input": [
"Boo!"
]
},
"title": "Boo!",
"expiration_date": 1747799940,
"type": "episode",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 648.6814,
"episode_number": "6",
"original_air_date": "909808200",
"auth_launch_date": null,
"clip_order": null,
"airing_id": "RADS1006122400075175",
"media_id": "894344cfdec5faaa403a3b6de8d3a6e9a375a690",
"modified": 1718214139,
"slug": "boo",
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_2041795727-sgc2c_9606_dst_cid-9105379.jpg",
"created": 1689871375,
"season_number": "3",
"title_id": "322643",
"tv_rating": "tv-pg",
"published": 1718214139,
"tags": [],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1718251200,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_2041795727-sgc2c_9606_dst_cid-9105379.jpg",
"id": "AYl0LttSOz5CkuTcnwR2",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180110",
"description": "Space Ghost's sidekicks have hosted a convention behind his back. Moltar and Zorak bring out their own guests Bill Mumy and Mark Hamill. In a jealous rage, Space Ghost announces plans for Space Ghost Con '97, vowing to exclude his co-stars.",
"title_suggest": {
"input": [
"Switcheroo '97",
"'97"
]
},
"title": "Switcheroo '97",
"expiration_date": 1734929940,
"type": "episode",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 746.0786,
"episode_number": "9",
"original_air_date": "895894200",
"auth_launch_date": null,
"clip_order": null,
"airing_id": "RADS1003302400062385",
"media_id": "e69d9bb714cec286a23940342dd39c6f6027edb8",
"modified": 1711845269,
"slug": "switcheroo-97",
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_204171029153-sgc2c_9709_dst_cid-9128085.jpg",
"created": 1689871664,
"season_number": "4",
"title_id": "322778",
"tv_rating": "tv-pg",
"published": 1711845269,
"tags": [
"sgc2c space ghost coast to coast episode 42 switcheroo ii sidekicks bill mumy will robinson lost in space mark hamill con"
],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1711857600,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_204171029153-sgc2c_9709_dst_cid-9128085.jpg",
"id": "AYl0M0abOz5CkuTcnwR4",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180023",
"description": "With Moltar on the run, Space Ghost is forced to recruit Tansut as his fill-in director, who causes problems before bringing out guests Kirk Hammett and James Hetfield of Metallica.",
"title_suggest": {
"input": [
"Jacksonville"
]
},
"title": "Jacksonville",
"expiration_date": 1750219140,
"type": "episode",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "LbVpEFlMR86Yg2sB-nUrrA",
"duration": 792.1247,
"episode_number": "11",
"original_air_date": "896499000",
"auth_launch_date": null,
"clip_order": null,
"airing_id": "RADS1006262400077470",
"media_id": "4943ae0ff4bc91be2f6e1aff7a58242d2b5d385f",
"modified": 1719445403,
"slug": "jacksonville",
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/1_20417959444-sgc2c_9611_dst_cid-9115506.jpg",
"created": 1689871503,
"season_number": "3",
"title_id": "322339",
"tv_rating": "tv-pg",
"published": 1719445403,
"tags": [
"space ghost coast to coast episode 29 jacksonville james hetfield metallica kirk hammett"
],
"collection_title": "Space Ghost Coast to Coast",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1719460800,
"poster": "https://media.cdn.adultswim.com/uploads/20200417/thumbnails/2_20417959444-sgc2c_9611_dst_cid-9115506.jpg",
"id": "AYl0MM-x2rZC6NyF61-H",
"auth": false
},
{
"auth_expiration_date": null,
"tms_id": "EP001022180051",
"description": "Reggae star Jimmy Cliff chats with Space Ghost about his new album and touring in South America. Moltar and mechanic-turned-musician Jack Logan share a creepy conversation about items underneath their beds.",
"title_suggest": {