-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
2621 lines (2621 loc) · 143 KB
/
data.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
[ {
"title" : "Kernspaltung und Schwerwasser-Sabotage",
"tag" : "gag493",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000697649337",
"url_spotify" : "https://open.spotify.com/episode/4cYBmGEXd9PyghDbAEq3Q9"
}, {
"title" : "Die Dreyfus-Affäre",
"tag" : "gag491",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000693716547",
"url_spotify" : "https://open.spotify.com/episode/4w6cJaI1YCPxgy4dGsRPbW"
}, {
"title" : "Eunus und der erste Sklavenkrieg",
"tag" : "gag490",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000691103614",
"url_spotify" : "https://open.spotify.com/episode/4XZRoBAiqQZeS5HZ4JjfFm"
}, {
"title" : "Hokusai und die Große Welle",
"tag" : "gag488",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000685848829",
"url_spotify" : "https://open.spotify.com/episode/2qbnOfXhNDkgLD5LnIPppu"
}, {
"title" : "Professor Porta und das Ende der Welt",
"tag" : "gag486",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000683806667",
"url_spotify" : "https://open.spotify.com/episode/7h5EfEpmXaBiIBEJFUtTOD"
}, {
"title" : "Emil Berliner und die Erfindung der Musikindustrie",
"tag" : "gag484",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000682218521",
"url_spotify" : "https://open.spotify.com/episode/2kC72lwL4qZQu5JlebpU43"
}, {
"title" : "Sarawak und die Dynastie der Weißen Rajahs",
"tag" : "gag482",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000680709654",
"url_spotify" : "https://open.spotify.com/episode/3pvxRGTplNCoAR2fRCwmJh"
}, {
"title" : "Zwei Hochzeiten und zwei Todesfälle",
"tag" : "gag481",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000679892820",
"url_spotify" : "https://open.spotify.com/episode/27vj3Ilu0g9qnymIBvDH3H"
}, {
"title" : "Kein Klecks – die Erfindung des Kugelschreibers",
"tag" : "gag480",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000679071520",
"url_spotify" : "https://open.spotify.com/episode/6RTwYDJ0VMCrhgOFnbwCYs"
}, {
"title" : "Über einen, der alles wusste – Athanasius Kircher",
"tag" : "gag479",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000678326005",
"url_spotify" : "https://open.spotify.com/episode/3IogvYQfAuVscKXoJT9zBo"
}, {
"title" : "Das Königreich Ryukyu",
"tag" : "gag478",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000677459816",
"url_spotify" : "https://open.spotify.com/episode/63OM4XFRSrLasinlEsexUv"
}, {
"title" : "Über Lochkarten, Anzüge und die Faszination Alhambra",
"tag" : "fgag18",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000677216728",
"url_spotify" : "https://open.spotify.com/episode/5fhF9FxtGFgVwA8jkEUcsy"
}, {
"title" : "Kleine Geschichte des Artensterbens",
"tag" : "gag477",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000676694470",
"url_spotify" : "https://open.spotify.com/episode/4ie7NZ0HSV5rVlvUTSx6Zn"
}, {
"title" : "Boabdil und das Ende Granadas",
"tag" : "gag476",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000675439410",
"url_spotify" : "https://open.spotify.com/episode/0PiZi2pnwMditk64bF3uVs"
}, {
"title" : "Eine kleine Geschichte des Anzugs",
"tag" : "gag475",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000674876475",
"url_spotify" : "https://open.spotify.com/episode/77YC7cSXdrBTt1PnIsiGp7"
}, {
"title" : "Eine kleine Geschichte des Zeitreisens",
"tag" : "gag474",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000673994096",
"url_spotify" : "https://open.spotify.com/episode/7wuaIy5fSLwQniquyHbPAV"
}, {
"title" : "Die Erfindung der Lochkarte",
"tag" : "gag473",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000673214924",
"url_spotify" : "https://open.spotify.com/episode/3BmgIb6IC9ZwqJKRRVbogS"
}, {
"title" : "Das Sommerspecial",
"tag" : "fgag17",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000672506772",
"url_spotify" : "https://open.spotify.com/episode/08UIt04hIspLwspdL9mFDw"
}, {
"title" : "Die Antoninische Pest",
"tag" : "gag472",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000672137394",
"url_spotify" : "https://open.spotify.com/episode/73yjOYL2ZT184InxCNCTyf"
}, {
"title" : "Karl XII. und das Ende des Schwedischen Reichs",
"tag" : "gag471",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000671433564",
"url_spotify" : "https://open.spotify.com/episode/2I7mi0Mnb4OXGnXuxmWdtE"
}, {
"title" : "Alexis Soyer – Koch, Innovator und Philanthrop",
"tag" : "gag470",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000670526639",
"url_spotify" : "https://open.spotify.com/episode/2jedkVa6e6VJvigS6npo58"
}, {
"title" : "Diebstahl der Mona Lisa",
"tag" : "gag469",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000669798113",
"url_spotify" : "https://open.spotify.com/episode/0HBpdQoFZEg3OXYJDpY50K"
}, {
"title" : "Arabia Felix oder Die Dänisch Arabische Expedition",
"tag" : "gag468",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000669008245",
"url_spotify" : "https://open.spotify.com/episode/5paOofOmVYIhUJpa2EKOB6"
}, {
"title" : "Das Leben der Lucrezia Borgia",
"tag" : "gag467",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000668218893",
"url_spotify" : "https://open.spotify.com/episode/2E1BeVDi0CK3CAzjBjFLqD"
}, {
"title" : "A chat with Dr. Emma Southon on 21 women who shaped Roman History",
"tag" : "extra-AcwDESo2wwsRH",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000667777552",
"url_spotify" : "https://open.spotify.com/episode/1pmwhJGaVYCFYIBWA5XLVb"
}, {
"title" : "Julia Felix und das Ende Pompejis",
"tag" : "gag466",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000666666516",
"url_spotify" : "https://open.spotify.com/episode/7qPsODMyQhjTM12MfTvXU6"
}, {
"title" : "Wie Aluminium entdeckt wurde",
"tag" : "gag465",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000666044957",
"url_spotify" : "https://open.spotify.com/episode/5yfmrAO9HipHJ3KhgY87Qv"
}, {
"title" : "Die Entstehung des Central Parks",
"tag" : "gag464",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000664810729",
"url_spotify" : "https://open.spotify.com/episode/1XVg8frLjCARbokNY2vGiW"
}, {
"title" : "Die Erfindung der Glühlampe",
"tag" : "gag463",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000664461324",
"url_spotify" : "https://open.spotify.com/episode/7ELvynYSs0Pr1945V6jxLC"
}, {
"title" : "Die Schlacht an den Thermopylen oder Das erste letzte Gefecht der Geschichte",
"tag" : "gag462",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000663791788",
"url_spotify" : "https://open.spotify.com/episode/3bdWMbEpjWS1NcSmv4NAmY"
}, {
"title" : "Das längste Autorennen der Welt",
"tag" : "gag461",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000663130550",
"url_spotify" : "https://open.spotify.com/episode/33cKv4aLWnfnRY3D79s6eK"
}, {
"title" : "Lorenzo Da Ponte oder Wie ein Librettist entsteht",
"tag" : "gag460",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000662404324",
"url_spotify" : "https://open.spotify.com/episode/1n9dO3XyFPSjyFuYPACZST"
}, {
"title" : "Eine Kaiserin für Brasilien",
"tag" : "gag459",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000661700355",
"url_spotify" : "https://open.spotify.com/episode/2IXlpgFsBC8A8YMqy7gNvl"
}, {
"title" : "Über Toilettengang im All, die Métis-Fiddle und Belletristik zu berühmten Hirnen",
"tag" : "fgag16",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000661326636",
"url_spotify" : "https://open.spotify.com/episode/0PLFl9jf7mqDmfRTJ0KbNQ"
}, {
"title" : "Wie wir die Nacht zum Tag machten",
"tag" : "gag458",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000660832286",
"url_spotify" : "https://open.spotify.com/episode/0UEAaIdc6S3nVjmCgppnWR"
}, {
"title" : "Die Ermordung des Burgunderherzogs",
"tag" : "gag457",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000660164683",
"url_spotify" : "https://open.spotify.com/episode/1FupzpcOMhjnB8sk7OeSa2"
}, {
"title" : "Bierkriege – Tatort Geschichte Crossover",
"tag" : "gag456",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000659437681",
"url_spotify" : "https://open.spotify.com/episode/6mSXCvsrhPsLLKBuHp0GeC"
}, {
"title" : "Das Unternehmen Pastorius",
"tag" : "gag455",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000658601659",
"url_spotify" : "https://open.spotify.com/episode/7ykXCRHoRDBhkEBwkMSpXg"
}, {
"title" : "Geniale Gehirne",
"tag" : "gag454",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000657651210",
"url_spotify" : "https://open.spotify.com/episode/670NGn5lHi6QDiKerasnWG"
}, {
"title" : "Pemmikan und der Pelzhandel in Nordamerika",
"tag" : "gag453",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000657038476",
"url_spotify" : "https://open.spotify.com/episode/2XoZum7eNrcfLCJEqsIVZE"
}, {
"title" : "Der GAG-Effekt",
"tag" : "fgag15",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000656758667",
"url_spotify" : "https://open.spotify.com/episode/3v7i1n24EPvDgqcupmXCEM"
}, {
"title" : "Der erste Mensch im All",
"tag" : "gag452",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000656366515",
"url_spotify" : "https://open.spotify.com/episode/2b15qaraQH7Eq8UK9K24AU"
}, {
"title" : "Eine kleine Geschichte der verlorenen Bücher",
"tag" : "gag451",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000655558002",
"url_spotify" : "https://open.spotify.com/episode/0QkfKByAMNwlkkWDslYBsf"
}, {
"title" : "Tudor und der Eishandel",
"tag" : "gag450",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000654795741",
"url_spotify" : "https://open.spotify.com/episode/1ov1eG8on20AVCq6eOyfKA"
}, {
"title" : "Die Wiederentdeckung der Moriori",
"tag" : "gag449",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000653914480",
"url_spotify" : "https://open.spotify.com/episode/4Wmtb61eQ1StjNXTjiZ5Fi"
}, {
"title" : "Die Phenol-Verschwörung",
"tag" : "gag448",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000653384492",
"url_spotify" : "https://open.spotify.com/episode/7MqpioF3kBryzQhshttK7B"
}, {
"title" : "Christina, Hans und Heinrich oder Wie ein Gemälde entsteht",
"tag" : "gag447",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000652601553",
"url_spotify" : "https://open.spotify.com/episode/3AqXpXernJq9n7BQNznFcn"
}, {
"title" : "Ein Duft aus Köln",
"tag" : "gag446",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000651869680",
"url_spotify" : "https://open.spotify.com/episode/75hlZvWmz2oIMNnFPZRAqn"
}, {
"title" : "Über Knopflöcher, Propaganda im frühen Perserreich und zu hohe Fahrräder",
"tag" : "fgag14",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000651666293",
"url_spotify" : "https://open.spotify.com/episode/5WDKeG9fD0sreNbDGUafFL"
}, {
"title" : "Alexandra David-Néel",
"tag" : "gag445",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000651207304",
"url_spotify" : "https://open.spotify.com/episode/18cEudoxSb717DoA1VFkZ1"
}, {
"title" : "Die Erfindung von Heroin und Aspirin",
"tag" : "gag444",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000650484872",
"url_spotify" : "https://open.spotify.com/episode/1equTrRAwUHIrssXg1iLRn"
}, {
"title" : "J.S. Bach oder Wie sich ein Komponist den Lebensunterhalt verdient",
"tag" : "gag443",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000649694604",
"url_spotify" : "https://open.spotify.com/episode/5XHadbN1UnL1Zp2ipDsk1o"
}, {
"title" : "Eine kurze Geschichte des Fahrrads",
"tag" : "gag442",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000648924288",
"url_spotify" : "https://open.spotify.com/episode/7xn0EQD9rnalFiFTSvpjLv"
}, {
"title" : "Jemima Nicholas und die Schlacht von Fishguard",
"tag" : "gag441",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000648088616",
"url_spotify" : "https://open.spotify.com/episode/3UqDAZHrNthDojZSJS07gd"
}, {
"title" : "Eine Giraffe für den König",
"tag" : "gag440",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000647214270",
"url_spotify" : "https://open.spotify.com/episode/1ihRKSFRdS5grkF9Vq6LoH"
}, {
"title" : "Kyros II. und die Entstehung eines Mythos",
"tag" : "gag439",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000646053195",
"url_spotify" : "https://open.spotify.com/episode/07K1lm94M1ua9FHhPNdhDA"
}, {
"title" : "Die Pinkerton-Detektei",
"tag" : "gag438",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000645186516",
"url_spotify" : "https://open.spotify.com/episode/0HAbZ6vA0jQaNahnK9k8SV"
}, {
"title" : "Die holprige Karriere des Reißverschlusses",
"tag" : "gag437",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000644264926",
"url_spotify" : "https://open.spotify.com/episode/5JTAR5GPWF0InVhPElP1nO"
}, {
"title" : "Post aus der Antarktis, Korrekturen zum Deutsch-Französischen Krieg und vieles mehr",
"tag" : "fgag13",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000644055598",
"url_spotify" : "https://open.spotify.com/episode/4wFxsrC2hcsWVeos9RJ2oY"
}, {
"title" : "Die Jagd nach Eldorado",
"tag" : "gag436",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000643573981",
"url_spotify" : "https://open.spotify.com/episode/13NjRiee0mU3uLTQULl6G5"
}, {
"title" : "Die Schlacht bei Carrhae",
"tag" : "gag435",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000642640291",
"url_spotify" : "https://open.spotify.com/episode/494YGqkk4Wq4s6TGG4ZAwS"
}, {
"title" : "Ein willkommener Mörder",
"tag" : "gag434",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000641895496",
"url_spotify" : "https://open.spotify.com/episode/4jvurbgxZhc226qfIGuR0W"
}, {
"title" : "Der Schinderhannes",
"tag" : "gag433",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000641037112",
"url_spotify" : "https://open.spotify.com/episode/76fsJ0DFVQl8oWhkM5XlvD"
}, {
"title" : "Ein bitteres Heilmittel",
"tag" : "gag432",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000640365150",
"url_spotify" : "https://open.spotify.com/episode/0BNvvaAhtn5z9ExySztWa1"
}, {
"tag" : "gag431",
"title" : "Auguste Escoffier, Kaiser der Köche",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000639733434",
"url_spotify" : "https://open.spotify.com/episode/6yL6CF3JX4GS9NhKbYtvwB"
}, {
"tag" : "fgag12",
"title" : "Viel Post, viel Feedback, viel Freude",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000639547729",
"url_spotify" : "https://open.spotify.com/episode/1ftkfPlFJn6KpQwATv90Vm"
}, {
"tag" : "gag430",
"title" : "Gefangene und Königin – Johanna I. von Kastilien",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/id1044844618?i=1000639093010",
"url_spotify" : "https://open.spotify.com/episode/0WqzIuRDvW6heOYa1FpdDX"
}, {
"tag" : "gag429",
"title" : "Der Eimerkrieg",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000638321858",
"url_spotify" : "https://open.spotify.com/episode/27ZzzrEKXRv1EzuPsMtayK"
}, {
"tag" : "gag428",
"title" : "Der Fälscher Konstantinos Simonides",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000637567530",
"url_spotify" : "https://open.spotify.com/episode/7hmH1wzl0iNDo9XNdSg9lu"
}, {
"tag" : "gag427",
"title" : "Das große Erdbeben von Lissabon",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000636791860",
"url_spotify" : "https://open.spotify.com/episode/3Xqud86b5jFoueOM2ztKZU"
}, {
"tag" : "gag426",
"title" : "Die erste Regisseurin – Alice Guy",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000635649882",
"url_spotify" : "https://open.spotify.com/episode/7wSpYESpS2ydF9ck15j76c"
}, {
"tag" : "gag425",
"title" : "Shampooing und die vier Leben des Dean Mahomet",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000634646551",
"url_spotify" : "https://open.spotify.com/episode/4wwdYl0GLqnbmhOJuGuWlM"
}, {
"tag" : "gag424",
"title" : "Die Erfindung der Briefmarke",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000634052837",
"url_spotify" : "https://open.spotify.com/episode/0mujyQEJhgk9a7AzufD3dK"
}, {
"tag" : "gag423",
"title" : "Der Sohn Gottes Hong Xiuquan und sein Aufstand gegen das imperiale China",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000633140328",
"url_spotify" : "https://open.spotify.com/episode/0kxC5sgRVodCu9ykwPOZzT"
}, {
"tag" : "gag422",
"title" : "Eine kleine Geschichte der Parapsychologie",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000632463512",
"url_spotify" : "https://open.spotify.com/episode/5pClVdyRPvDh0lF2CJf66s"
}, {
"tag" : "gag421",
"title" : "Playfair und die Erfindung des Balkendiagramms",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000631577194",
"url_spotify" : "https://open.spotify.com/episode/7Hif8qSW7HBSdqx31OuXmF"
}, {
"tag" : "gag420",
"title" : "Harry Anslinger und der erste \"War on Drugs\"",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000630850131",
"url_spotify" : "https://open.spotify.com/episode/7poDiZofCFHLUd3sYGMlqG"
}, {
"tag" : "gag419",
"title" : "Therese von Thurn und Taxis und das Ende der Reichspost",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000630091149",
"url_spotify" : "https://open.spotify.com/episode/52HKUjBXYIlhiHb49fguP4"
}, {
"tag" : "gag418",
"title" : "Das älteste Gewürz der Welt",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000629174492",
"url_spotify" : "https://open.spotify.com/episode/0h9zUGpJS2hMHBCAlnlc7u"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000628917483",
"url_spotify" : "https://open.spotify.com/episode/0KvgeVhE2e2oIspY5rA7ib",
"title" : "Samuel Pepys, Lady Six Sky und Daniel singt",
"tag" : "fgag11"
}, {
"tag" : "gag417",
"title" : "Auf der Suche nach den Quellen des Nils",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000628503911",
"url_spotify" : "https://open.spotify.com/episode/323apOXR2RCITt7l5KB4Ru"
}, {
"tag" : "gag416",
"title" : "Wie das Münzgeld entstand",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000627490415",
"url_spotify" : "https://open.spotify.com/episode/1Sw43hTkJdXKsfi6Aiye9Q"
}, {
"tag" : "gag415",
"title" : "Polarpionier Fridtjof Nansen",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000626721063",
"url_spotify" : "https://open.spotify.com/episode/3DUJ1LwVcgIhpkkY7IrFLN"
}, {
"tag" : "gag414",
"title" : "Ibn Fadlān und die Reise zur Wolga",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000626087460",
"url_spotify" : "https://open.spotify.com/episode/4j7CKhEsB1FDQOR1p3NIyj"
}, {
"tag" : "gag413",
"title" : "Paracelsus – Arzt und Alchemist",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000625306816",
"url_spotify" : "https://open.spotify.com/episode/7zaLPssTvryNMJA7WEGekZ"
}, {
"tag" : "gag412",
"title" : "Samuel Pepys und das außergewöhnlichste Tagebuch des 17. Jahrhunderts",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000624291170",
"url_spotify" : "https://open.spotify.com/episode/4eEHaoAWheBQUsqDt3bxoY"
}, {
"tag" : "gag411",
"title" : "Der Untergang der Thomas W. Lawson",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000623846225",
"url_spotify" : "https://open.spotify.com/episode/2pVvKDIFV3sWW2h33dxraG"
}, {
"tag" : "gag410",
"title" : "Lady Six Sky und eine kurze Geschichte der Maya",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000623048236",
"url_spotify" : "https://open.spotify.com/episode/7EluT4JIKGxDGV92Wmp1iO"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000622805862",
"url_spotify" : "https://open.spotify.com/episode/3oikpzqnBDECLO9fEDcSJ5",
"title" : "Die Rückkehr, eine Ankündigung und ein Interview",
"tag" : "fgag10"
}, {
"tag" : "gag409",
"title" : "Pferdefotos und ein Mord",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000622298642",
"url_spotify" : "https://open.spotify.com/episode/6BJsa1KOPyNeO3jtDVQDLe"
}, {
"tag" : "gag408",
"title" : "Das kurze und tragische Leben des Évariste Galois",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000621411576",
"url_spotify" : "https://open.spotify.com/episode/1Naq643qaXfN6Z5inbxbde"
}, {
"tag" : "gag407",
"title" : "Das katastrophale Ende einer Kolonie",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000620822300",
"url_spotify" : "https://open.spotify.com/episode/3vLIKH763L6htdAKXGGiA7"
}, {
"tag" : "gag406",
"title" : "Die SMS Wolf und die Piraten des Kaisers",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000619254302",
"url_spotify" : "https://open.spotify.com/episode/4usCnESJcPoug0uPjcclyS"
}, {
"tag" : "gag405",
"title" : "Bonifatius, Apostel der Deutschen",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000618475480",
"url_spotify" : "https://open.spotify.com/episode/3ycfXc6Ik8tA7SEqjLhnQr"
}, {
"tag" : "gag404",
"title" : "Not Found",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000617699118",
"url_spotify" : "https://open.spotify.com/episode/3Ho2Y9H9oAOcMihzd5ltNf"
}, {
"tag" : "gag403",
"title" : "Maxentius – Der letzte Kaiser in Rom",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000616816141",
"url_spotify" : "https://open.spotify.com/episode/6l6YLiTugae4Xfb8uvpi5Y"
}, {
"tag" : "gag402",
"title" : "Die Vegetarian Society und die Begründung des modernen Vegetarismus",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000615868154",
"url_spotify" : "https://open.spotify.com/episode/0h3nKBXgksyErQ0gG1HAR3"
}, {
"tag" : "gag401",
"title" : "Amerika und die Weltkarte von Waldseemüller",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000615045038",
"url_spotify" : "https://open.spotify.com/episode/7pB4E5GbILiABYRx0xi0vQ"
}, {
"tag" : "gag400",
"title" : "GAG X Anno Mundi – Anicia Juliana",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000614272530",
"url_spotify" : "https://open.spotify.com/episode/33ZZ4TvWCe1fmFBEbHOwBV"
}, {
"tag" : "gag399",
"title" : "John Brown und sein gescheiterter Sklavenaufstand",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000613205069",
"url_spotify" : "https://open.spotify.com/episode/071RVIzXd5Y9PXDrLV4KkU"
}, {
"tag" : "gag398",
"title" : "Der Goldene Brief",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000612302102",
"url_spotify" : "https://open.spotify.com/episode/3ESDt2JMHku1Bh7J1OZmUI"
}, {
"tag" : "gag397",
"title" : "Hy Brasil",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000611281335",
"url_spotify" : "https://open.spotify.com/episode/6TIY43fiPvadsBkB91rLIz"
}, {
"tag" : "gag396",
"title" : "Helene Kottannerin und der Raub der Stephanskrone",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000610561792",
"url_spotify" : "https://open.spotify.com/episode/71tzGjiFFzsSlm0x60vIYs"
}, {
"tag" : "gag395",
"title" : "Barbe-Nicole Ponsardin und die Begründung eines Champagnerimperiums",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000609487014",
"url_spotify" : "https://open.spotify.com/episode/7EeFvRdpjZtCmvQCx9aACQ"
}, {
"tag" : "gag394",
"title" : "Die Verurteilung von Sacco und Vanzetti",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000608401258",
"url_spotify" : "https://open.spotify.com/episode/1q9a6eULL6QR9LIzyFMqKg"
}, {
"tag" : "gag393",
"title" : "Die Schlacht von Zama",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000607485890",
"url_spotify" : "https://open.spotify.com/episode/60aAlOr3F4KaCYJ5pBYxh2"
}, {
"tag" : "gag392",
"title" : "Phosphor und der Streik der Streichholzarbeiterinnen",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000606284100",
"url_spotify" : "https://open.spotify.com/episode/7lwYowFINltY7TGhzFCmzF"
}, {
"tag" : "gag391",
"title" : "Celia Cooney, die Banditin mit der Kurzhaarfrisur",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000605061109",
"url_spotify" : "https://open.spotify.com/episode/7j1tlucLVjbJqgnJDN1oyf"
}, {
"tag" : "gag390",
"title" : "Kleopatra Selene und das Ende der Römischen Republik",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000604132418",
"url_spotify" : "https://open.spotify.com/episode/5iMNLFjRiIMEkFWWpOoTqd"
}, {
"tag" : "gag389",
"title" : "Spieglein, Spieglein an der Wand",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000603260848",
"url_spotify" : "https://open.spotify.com/episode/5fL7hb3Li7zSVtGsExTXaM"
}, {
"tag" : "gag388",
"title" : "Marie Tussaud und die Wachsfiguren",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000602099169",
"url_spotify" : "https://open.spotify.com/episode/599lEEoWGsnLWTGMgM2HBT"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000601576673",
"url_spotify" : "https://open.spotify.com/episode/1tVvrum0BdEWRWYi0liruw",
"title" : "Theodor von Neuhoff, Verwirrungen im metrischen System und warum Bletchley Park den Krieg verkürzte",
"tag" : "fgag9"
}, {
"tag" : "gag387",
"title" : "Nurhaci und die Entstehung der Mandschu",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000600930095",
"url_spotify" : "https://open.spotify.com/episode/3DRH31vYzfdsa6hvDSRzqu"
}, {
"tag" : "gag386",
"title" : "Der Wettlauf zum Nordpol",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000599616659",
"url_spotify" : "https://open.spotify.com/episode/4fgXxqWtqe5liPo0nozwbN"
}, {
"tag" : "gag385",
"title" : "Delmonico's und der erste Starkoch der USA",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000598487977",
"url_spotify" : "https://open.spotify.com/episode/0o6gBxeqpYWuNXenT8g8jA"
}, {
"tag" : "gag384",
"title" : "Flaschenpost und die Erforschung der Ozeane",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000597409855",
"url_spotify" : "https://open.spotify.com/episode/6Ow1qsEuVVtww7znhARD5A"
}, {
"tag" : "gag383",
"title" : "Bletchley Park",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000596383457",
"url_spotify" : "https://open.spotify.com/episode/6MqxA6iJO5suy0a6EhfdYz"
}, {
"tag" : "gag382",
"title" : "Der erste Film",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000595069993",
"url_spotify" : "https://open.spotify.com/episode/6EBHq2oNjnX9EIM4wX4vh7"
}, {
"tag" : "gag381",
"title" : "Mau Piailug und die Besiedelung des Pazifiks",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000593499065",
"url_spotify" : "https://open.spotify.com/episode/1yKqQS2C7a1t7ZdyBnSNLn"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000592992416",
"url_spotify" : "https://open.spotify.com/episode/0x56KC9w9Ea5qKdOEZeCHK",
"title" : "In der Stratosphäre",
"tag" : "fgag8"
}, {
"tag" : "gag380",
"title" : "Das Maß aller Dinge",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000592199826",
"url_spotify" : "https://open.spotify.com/episode/3NqmohnX5qZQAAx9lXfpQA"
}, {
"tag" : "gag379",
"title" : "Theodor von Neuhoff - König von Korsika",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000591396639",
"url_spotify" : "https://open.spotify.com/episode/07oRBPofKWIgZypLIzd210"
}, {
"tag" : "gag378",
"title" : "Ein langer Marsch durch Feindesland",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000590784721",
"url_spotify" : "https://open.spotify.com/episode/3njA5iMrsvaLWojTSfRHZq"
}, {
"tag" : "gag377",
"title" : "Aufstieg und Fall des Templerordens",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000590045562",
"url_spotify" : "https://open.spotify.com/episode/645B9arZRseafJ2uHr6ieQ"
}, {
"tag" : "gag376",
"title" : "Nagelmackers und der Orient-Express",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000589118983",
"url_spotify" : "https://open.spotify.com/episode/2YA333ta4eVHBuoV2RhRTX"
}, {
"tag" : "gag375",
"title" : "Sofia Kowalewskaja, \"Königin der Wissenschaft\"",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000587914310",
"url_spotify" : "https://open.spotify.com/episode/4K5f7FA5o1dM5pL1ToGQDY"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000587604551",
"url_spotify" : "https://open.spotify.com/episode/1CjwGUWFlHcTpcK78CX9dP",
"title" : "Bibi & Tina, Casinos in Macau und noch mehr Schiffe in Maisfeldern",
"tag" : "fgag7"
}, {
"tag" : "gag374",
"title" : "Ludwik Fleck und das Fleckfieber",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000587113881",
"url_spotify" : "https://open.spotify.com/episode/6jG9f64ULNBbCttt3vooxu"
}, {
"tag" : "gag373",
"title" : "Morocco und der Kluge Hans",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000586141813",
"url_spotify" : "https://open.spotify.com/episode/7yr8I56gD3roFmTk2JivOv"
}, {
"tag" : "gag372",
"title" : "Wie das Roulette eine Null verlor",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000585556096",
"url_spotify" : "https://open.spotify.com/episode/3BpNw8EOhIPR2Am5OLK95V"
}, {
"tag" : "gag371",
"title" : "Galla Placidia",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000584653958",
"url_spotify" : "https://open.spotify.com/episode/1dWrhLoDZyzDwOSv2C5zFS"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000584353460",
"url_spotify" : "https://open.spotify.com/episode/1PoqBwSRdgJ1C29YCYVxNi",
"title" : "Egostory, Schwesterschiff und ein Freispruch für die Gletscher",
"tag" : "fgag6"
}, {
"tag" : "gag370",
"title" : "Der Kodex des Archimedes",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000583879315",
"url_spotify" : "https://open.spotify.com/episode/74WbADI4ZVPlja4bqQqhsf"
}, {
"tag" : "gag369",
"title" : "Der Struwwelpeter",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000583127588",
"url_spotify" : "https://open.spotify.com/episode/2C7Tzsvke6wOhDsoRlm5cY"
}, {
"tag" : "gag368",
"title" : "Wie das Jod ins Salz kam",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000582320849",
"url_spotify" : "https://open.spotify.com/episode/0BfEJ7iEOyEDbpBYTnRbXz"
}, {
"tag" : "gag367",
"title" : "Untergang und Comeback der VASA",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000581644522",
"url_spotify" : "https://open.spotify.com/episode/5BOJlSWrYotsqydJb19WuV"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000581286573",
"url_spotify" : "https://open.spotify.com/episode/75TQVCDCc9LewnYesM0rqZ",
"title" : "Duke in Paris, Jazzualdo und die Ghost Army",
"tag" : "fgag5"
}, {
"tag" : "gag366",
"title" : "Das Attentat von Anagni",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000580832830",
"url_spotify" : "https://open.spotify.com/episode/4RbsOV1N2fNqhRyX2CpYNx"
}, {
"tag" : "gag365",
"title" : "The Ghost Army",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000580158090",
"url_spotify" : "https://open.spotify.com/episode/3nYr2NgEd8tw3s8OdTA1QB"
}, {
"tag" : "gag364",
"title" : "Mord und Madrigale – Carlo Gesualdo",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000579321767",
"url_spotify" : "https://open.spotify.com/episode/5Z1w9KQ7ZwS1jLr60bbArs"
}, {
"tag" : "gag363",
"title" : "Duke Kahanamoku",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000578556859",
"url_spotify" : "https://open.spotify.com/episode/1jrwqCzBwA7UVL39yVB44U"
}, {
"tag" : "gag362",
"title" : "Bayerns letzte Kurfürstin",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000577840766",
"url_spotify" : "https://open.spotify.com/episode/23eYk7vmb7qd1mroHb393K"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000577536066",
"url_spotify" : "https://open.spotify.com/episode/3bmox23uiYQVag3MzIqM7g",
"title" : "Reinhard und das Reis-Telefon",
"tag" : "fgag4"
}, {
"tag" : "gag361",
"title" : "Gustave Trouvé - der vergessene Erfinder",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000577076144",
"url_spotify" : "https://open.spotify.com/episode/6ypMcsbkeyts9iVkH0odTy"
}, {
"tag" : "gag360",
"title" : "Unglück am Matterhorn",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000576231061",
"url_spotify" : "https://open.spotify.com/episode/1rvwr7vymqXzuVSVDMi8us"
}, {
"tag" : "gag359",
"title" : "Eine kleine Geschichte des Schachspiels",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000575522961",
"url_spotify" : "https://open.spotify.com/episode/0lhKCVm07qi4sMUz1OWfGd"
}, {
"tag" : "gag358",
"title" : "Philipp Reis und die Erfindung des Telefons",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000574812482",
"url_spotify" : "https://open.spotify.com/episode/0DPCPrbqxUmW8pZDRrJZRo"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000574516319",
"url_spotify" : "https://open.spotify.com/episode/0ygbw6NRZ4VVtmUKhNMzwx",
"title" : "Erwin Kreuz - ein Update",
"tag" : "fgag3"
}, {
"tag" : "gag357",
"title" : "Mary Kingsley",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000571226092",
"url_spotify" : "https://open.spotify.com/episode/5JgjPBBVJlj4joOrr9Nbi0"
}, {
"tag" : "gag356",
"title" : "Das DeLorean-Drama",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000570513486",
"url_spotify" : "https://open.spotify.com/episode/3dVoTRNq5ZZYd70J2WAyWT"
}, {
"tag" : "gag355",
"title" : "Der Englische Schweiß",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000569655974",
"url_spotify" : "https://open.spotify.com/episode/1LHUGifx9iOgwve439gwtd"
}, {
"tag" : "gag354",
"title" : "Die Halsbandaffäre",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000568931104",
"url_spotify" : "https://open.spotify.com/episode/0kLRn01YrbTcHolzfoJ2vW"
}, {
"tag" : "gag353",
"title" : "Wallada",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000567988912",
"url_spotify" : "https://open.spotify.com/episode/6lW3iEaZeUNXshmmD0tsnI"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000567587985",
"url_spotify" : "https://open.spotify.com/episode/5DGvoxzoqX6bANdSEEzetJ",
"title" : "Mord auf Ex",
"tag" : "fgag2"
}, {
"tag" : "gag352",
"title" : "Wallace und das Rennen um die Evolutionstheorie",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000567310021",
"url_spotify" : "https://open.spotify.com/episode/3r1kjFzJlkeMDWoBo6wNwr"
}, {
"tag" : "gag351",
"title" : "Die Erfindung des Saxophons - Aufstieg und Fall des Adolphe Sax",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000566381434",
"url_spotify" : "https://open.spotify.com/episode/6bOmMelXYJzAoT4CxPIqgQ"
}, {
"tag" : "gag350",
"title" : "Der Bauernkrieg und die Revolution von 1525",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000565555245",
"url_spotify" : "https://open.spotify.com/episode/4o6bNtUiYX0qXRqa94rk0g"
}, {
"tag" : "gag349",
"title" : "Konstantin Phaulkon im Königreich Ayutthaya",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000564430382",
"url_spotify" : "https://open.spotify.com/episode/1pBUaprompoulevMrhO7PL"
}, {
"tag" : "gag348",
"title" : "Der Anschlag auf die Mosel",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000563378005",
"url_spotify" : "https://open.spotify.com/episode/2O84khezHm2bAEIE5a5Rft"
}, {
"tag" : "gag347",
"title" : "Adrianopel 378",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000561883145",
"url_spotify" : "https://open.spotify.com/episode/3XMHOK1ecTQm02q6uz7poI"
}, {
"tag" : "gag346",
"title" : "Die längste Hängebrücke der Welt",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000560365723",
"url_spotify" : "https://open.spotify.com/episode/5Miu0Yww4t7G5SeeRG5mKD"
}, {
"tag" : "gag345",
"title" : "Suffrajitsu",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000559475571",
"url_spotify" : "https://open.spotify.com/episode/5yZsoqYsVe0YHe7Flaizcb"
}, {
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000559087695",
"url_spotify" : "https://open.spotify.com/episode/5WDO2wTWbl3c3vODs9v4Dm",
"title" : "Atlantropa",
"tag" : "fgag1"
}, {
"tag" : "gag344",
"title" : "Der Artischockenkrieg",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000558836719",
"url_spotify" : "https://open.spotify.com/episode/2XVlQ0WMRRqdUc6RDZfuT0"
}, {
"tag" : "gag343",
"title" : "Phoebus und die geplante Obsoleszenz",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000558127252",
"url_spotify" : "https://open.spotify.com/episode/30b1HpKkZwfOQbY4stTK8C"
}, {
"tag" : "gag342",
"title" : "Das Stockholmer Blutbad",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000557449800",
"url_spotify" : "https://open.spotify.com/episode/72fCjH4KYcZHwBH0YBySKE"
}, {
"tag" : "gag341",
"title" : "Der Exorzismus der Marthe Brossier",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000556392215",
"url_spotify" : "https://open.spotify.com/episode/45fhh5sWBQ0iayg7HnNgBx"
}, {
"tag" : "gag340",
"title" : "Tauben, die Raketen steuern und Kybernetik",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000555683312",
"url_spotify" : "https://open.spotify.com/episode/1otGUTMUFtt7P1LeXKdV82"
}, {
"tag" : "gag339",
"title" : "Der Vocoder",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000554957063",
"url_spotify" : "https://open.spotify.com/episode/7M4gHT16LFGYdRODJryKu6"
}, {
"tag" : "gag338",
"title" : "Eine neue Gesellschaft – Frühsozialist Robert Owen",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000554183534",
"url_spotify" : "https://open.spotify.com/episode/0UtDiqbD3Hd98lkI18sCjK"
}, {
"tag" : "gag337",
"title" : "Über Hummer, Kaviar und wie das Loch in den Donut kam",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000553414266",
"url_spotify" : "https://open.spotify.com/episode/7tK9tHNzF6GHefMaYAokih"
}, {
"tag" : "gag336",
"title" : "George Smith und die Entdeckung des Gilgamesch-Epos",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000552671470",
"url_spotify" : "https://open.spotify.com/episode/6Zch4g9bB5tIZrstCCpZ4J"
}, {
"tag" : "gag335",
"title" : "Aqua Tofana und die Giftmischerinnen des 17. Jahrhunderts",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000551977326",
"url_spotify" : "https://open.spotify.com/episode/61wkJd6BhqNKKPGfSxSgFK"
}, {
"tag" : "gag334",
"title" : "Rachel Carson und der stumme Frühling",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000551255899",
"url_spotify" : "https://open.spotify.com/episode/6KoUzv5BLr96WIWSH4Jtoi"
}, {
"tag" : "gag333",
"title" : "Alexandria",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000550532186",
"url_spotify" : "https://open.spotify.com/episode/2p9RddGLpyneh9qVPikXhN"
}, {
"tag" : "gag332",
"title" : "Wie Gregor MacGregor ein Land verkaufte, das es gar nicht gab",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000549752662",
"url_spotify" : "https://open.spotify.com/episode/0vogVo5htsZLW0ZjBbz8SV"
}, {
"tag" : "gag331",
"title" : "Wie Tetris die Welt eroberte",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000549035712",
"url_spotify" : "https://open.spotify.com/episode/2LeI7kIpznuvLRti6sN5A6"
}, {
"tag" : "gag330",
"title" : "Zum Tode verurteilt – Catharina Linck alias Anastasius Lagrantinus Rosenstengel",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000548325330",
"url_spotify" : "https://open.spotify.com/episode/1dYdoOM6qBwRw04SobOp3v"
}, {
"tag" : "gag329",
"title" : "Wie der Wolf zum Hund wurde",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000547641555",
"url_spotify" : "https://open.spotify.com/episode/0Cuu1cTBT5YB891HDUl85f"
}, {
"tag" : "gag328",
"title" : "P. T. Barnum und die größte Show der Welt",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000546982788",
"url_spotify" : "https://open.spotify.com/episode/3E6nheQGDHrxuxYaTvQJjX"
}, {
"tag" : "gag327",
"title" : "Das große Geburtenrennen von Toronto",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000546403125",
"url_spotify" : "https://open.spotify.com/episode/4pqV9aT8KfBFBujVsmWKyr"
}, {
"tag" : "gag326",
"title" : "Ausgestorbene und außergewöhnliche Berufe",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000545751330",
"url_spotify" : "https://open.spotify.com/episode/6rVekPkZANjxP7O3t1QRhU"
}, {
"tag" : "gag325",
"title" : "Der Große Smog von 1952",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000545025399",
"url_spotify" : "https://open.spotify.com/episode/7s5EMgl5c6Tlv1Ot845OmW"
}, {
"tag" : "gag324",
"title" : "Mit dem Ballon zum Nordpol – Andrées Polarexpedition von 1897",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000544297879",
"url_spotify" : "https://open.spotify.com/episode/1kMtaLBD0qCiATkysn33IW"
}, {
"tag" : "gag323",
"title" : "Die Republik Ezo und das Ende des Shogunats",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000543595979",
"url_spotify" : "https://open.spotify.com/episode/55INRbxYgsGoEpk5en4WzW"
}, {
"tag" : "gag322",
"title" : "Portugal und der Seeweg nach Indien",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000542926944",
"url_spotify" : "https://open.spotify.com/episode/7i4aTThxApd9rRBMayNGC6"
}, {
"tag" : "gag321",
"title" : "Aufstieg und möglicher Fall der Banane",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000542189759",
"url_spotify" : "https://open.spotify.com/episode/433Ta0iBi14pS9AtS3xDf5"
}, {
"tag" : "gag320",
"title" : "In 72 Tagen um die Welt – Journalistin Nellie Bly",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000541320322",
"url_spotify" : "https://open.spotify.com/episode/10c1VBb1PrpWnUvu0jyYtt"
}, {
"tag" : "gag319",
"title" : "Ashoka der Große",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000540601614",
"url_spotify" : "https://open.spotify.com/episode/2C9oVi4J7yNf45092jZhz2"
}, {
"tag" : "gag318",
"title" : "Der Nuklearunfall von Goiânia",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000539861680",
"url_spotify" : "https://open.spotify.com/episode/5S4DpowyY4uAy0s3Y8mqqi"
}, {
"tag" : "gag317",
"title" : "Roger Tichborne – die wundersame Rückkehr des Sohnes",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000539149490",
"url_spotify" : "https://open.spotify.com/episode/3lPJ3bfRHWDBnOTOIHgVly"
}, {
"tag" : "gag316",
"title" : "Die Shakespeare-Unruhen",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000538431068",
"url_spotify" : "https://open.spotify.com/episode/2BRJfJZOSstye79sh3yo0n"
}, {
"tag" : "gag315",
"title" : "Der Mehlkrieg von 1775",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000537706361",
"url_spotify" : "https://open.spotify.com/episode/37O2nSkHJWGFl6CJedKxjy"
}, {
"tag" : "gag314",
"title" : "Eine kurze Geschichte der Cholera",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000536965827",
"url_spotify" : "https://open.spotify.com/episode/3qVR2NIRWhqU0xRl0u7qie"
}, {
"tag" : "gag313",
"title" : "Die Geschwister Herschel",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000536247199",
"url_spotify" : "https://open.spotify.com/episode/6Bw5vncNzYDijOI66EHQMm"
}, {
"tag" : "gag312",
"title" : "Der beste aller Ritter – das Leben von Guillaume le Maréchal",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000535387902",
"url_spotify" : "https://open.spotify.com/episode/3sg79xnYzX0p7f9p1PhL7X"
}, {
"tag" : "gag311",
"title" : "Der Imjin-Krieg",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000534669384",
"url_spotify" : "https://open.spotify.com/episode/1eVkt34mAAt1GPLWYyzbmh"
}, {
"tag" : "gag310",
"title" : "Arbeitskampf, Streik und das Leben der Gewerkschaftspionierin Paula Thiede",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000533962682",
"url_spotify" : "https://open.spotify.com/episode/0acf38Vkr4bY2CuSQxviF3"
}, {
"tag" : "gag309",
"title" : "Die Bestie des Gévaudan",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000533067723",
"url_spotify" : "https://open.spotify.com/episode/64qYMdUQJ2J3o7r8opC8e7"
}, {
"tag" : "gag308",
"title" : "Eine kurze Geschichte des Urlaubs und Reisens",
"url_apple_podcasts" : "https://podcasts.apple.com/de/podcast/geschichten-aus-der-geschichte/id1044844618?i=1000532360410",
"url_spotify" : "https://open.spotify.com/episode/1i3WcPDk4FtbArHSdahwWd"