forked from kagisearch/kite-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
media_data.json
2239 lines (2239 loc) · 127 KB
/
media_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
[
{
"country": "Qatar",
"organization": "Al Jazeera Media Network",
"domains": ["aljazeera.com", "aljazeera.net"],
"description": "Al Jazeera is an international news network headquartered in Doha, Qatar. It provides news coverage across various categories including politics, business, sports, and international affairs, with a particular focus on Middle Eastern and North African affairs.",
"owner": "Qatar Media Corporation (QMC)",
"typology": "State Funded Media"
},
{
"country": "United Kingdom",
"organization": "BBC News",
"domains": ["bbc.com", "bbc.co.uk"],
"description": "BBC News is the news division of the British Broadcasting Corporation (BBC), providing news coverage across various categories including politics, business, sports, and international affairs.",
"owner": "British Broadcasting Corporation (BBC)",
"typology": "State Funded Media"
},
{
"country": "France",
"organization": "France 24",
"domains": ["france24.com"],
"description": "France 24 is a French international news channel that broadcasts in English and French. It provides news coverage across various categories including politics, business, sports, and international affairs.",
"owner": "French Ministry of Europe and Foreign Affairs",
"typology": "State Funded Media"
},
{
"country": "Russia",
"organization": "RT",
"domains": ["rt.com"],
"description": "RT is a Russian international news channel that broadcasts in English. It provides news coverage across various categories including politics, business, sports, and international affairs.",
"owner": "Russian Ministry of Foreign Affairs",
"typology": "State Funded Media"
},
{
"country": "Italy",
"organization": "Rai News",
"domains": ["rainews.it", "rai.it"],
"description": "Rai News is the 24-hour news division and online news portal of RAI (Radiotelevisione Italiana), Italy's national public broadcaster. It provides continuous news coverage through its TV channel Rai News 24, digital platform, and website, offering real-time updates on politics, economy, sports, and current affairs in Italy and internationally.",
"owner": "RAI - Radiotelevisione Italiana S.p.A.",
"typology": "State Funded Media"
},
{
"country": "Germany",
"organization": "Die Bundesregierung",
"domains": ["bundesregierung.de"],
"description": "Die Bundesregierung is the official website and communication platform of the German Federal Government, providing official information, press releases, and updates about government policies, decisions, and activities.",
"owner": "Federal Republic of Germany",
"typology": "State Funded Media"
},
{
"country": "Germany",
"organization": "Tagesschau",
"domains": ["tagesschau.de"],
"description": "Tagesschau is a national television news service and digital news platform operated by ARD-aktuell on behalf of the german public-service broadcaster AFD.",
"owner": "Public broadcaster (German public institutions)",
"typology": "State Funded Media"
},
{
"country": "Germany",
"organization": "Deutschlandfunk",
"domains": ["deutschlandfunk.de", "deutschlandradio.de"],
"description": "Deutschlandfunk is a German public radio broadcaster and part of Deutschlandradio, providing national news, in-depth reporting, analysis and cultural programming.",
"owner": "Public broadcaster (German public institutions)",
"typology": "State Funded Media"
},
{
"country": "Germany",
"organization": "Rundfunk Berlin-Brandenburg",
"domains": ["rbb-online.de", "rbb24.de"],
"description": "Rundfunk Berlin-Brandenburg (RBB) is a public broadcaster serving the German federal states of Berlin and Brandenburg, established in 2003. Its focused on regional news, current affairs, and cultural programming for these two states.",
"owner": "Public broadcaster (German public institutions)",
"typology": "State Funded Media"
},
{
"country": "Russia",
"organization": "TASS",
"domains": ["tass.com", "tass.ru"],
"description": "TASS is Russia's state-owned news agency established in 1904, providing news coverage, analysis, and multimedia content in Russian and English.",
"owner": "Government of Russia",
"typology": "State Funded Media"
},
{
"country": "Australia",
"organization": "Australian Broadcasting Corporation",
"domains": ["abc.net.au"],
"description": "The Australian Broadcasting Corporation (ABC) is Australia's national public broadcaster, providing news, entertainment, and educational content across television, radio, digital and online platforms.",
"owner": "Australian Government",
"typology": "State Funded Media"
},
{
"country": "United States",
"organization": "National Public Radio",
"domains": ["npr.org"],
"description": "NPR is a non-profit media organization providing public radio broadcasting and digital content across the United States through a network of member stations. It produces and distributes news, cultural programming, and podcasts with a focus on journalism, arts, and education.",
"owner": "Non-profit organization",
"typology": "State Funded Media"
},
{
"country": "United States",
"organization": "Voice of America",
"domains": ["voanews.com"],
"description": "Voice of America is an international multimedia broadcaster funded by the U.S. government, providing news, information, and cultural programming.",
"owner": "U.S. Agency for Global Media",
"typology": "State Funded Media"
},
{
"country": "United States",
"organization": "Public Broadcasting Service",
"domains": ["pbs.org"],
"description": "PBS is America's public broadcaster operating through a network of over 350 local stations, offering educational and cultural programming across television and digital platforms.",
"owner": "Corporation for Public Broadcasting (non-profit)",
"typology": "State Funded Media"
},
{
"country": "Germany",
"organization": "Deutsche Welle",
"domains": ["dw.com"],
"description": "Deutsche Welle (DW) is Germany's international public broadcaster providing news, cultural content, and analysis in multiple languages through digital, TV, and radio platforms.",
"owner": "Federal Government of Germany",
"typology": "State Funded Media"
},
{
"country": "Italy",
"organization": "Adnkronos",
"domains": ["adnkronos.com"],
"description": "Adnkronos is a news agency founded in 1963 through the merger of Kronos (founded by Pietro Nenni in 1951) and ADN (founded by Amintore Fanfani in 1959). Based in Rome with offices in Milan, it provides real-time news coverage across multiple sectors including politics, economy, sports, health, and international affairs through its multimedia platform.",
"owner": "Giuseppe Marra Communications (GMC)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Affaritaliani",
"domains": ["affaritaliani.it"],
"description": "Affaritaliani.it is an online news outlet founded in 1996 and based in Milan. It operates as a digital-only daily newspaper covering politics, economics, sports, entertainment and current affairs. It was one of Italy's first online-only news publications.",
"owner": "Uomini e Affari srl",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Agenzia Giornalistica Italia",
"domains": ["agi.it"],
"description": "Agenzia Giornalistica Italia (AGI) is an Italian news agency providing news coverage across multiple categories including politics, economy, foreign affairs, sports, and local news. The agency produces online news content and operates as a primary source of news distribution in Italy.",
"owner": "ENI S.p.A.",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "BuoneNotizie",
"domains": ["buonenotizie.it"],
"description": "BuoneNotizie.it is a digital news platform founded in 2001 that focuses on constructive journalism and positive news coverage. The site operates without advertising and partners with the Italian Association of Constructive Journalism.",
"owner": "Unknown",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Corriere della Sera",
"domains": ["corriere.it", "rcsmediagroup.it"],
"description": "Corriere della Sera is a daily newspaper founded in 1876 by Eugenio Torelli Viollier and based in Milan. It provides comprehensive coverage of national and international news, politics, sports, and current affairs, with a particular focus on Italy's economic and political developments.",
"owner": "Cairo Communication (59.69%)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Fanpage",
"domains": ["fanpage.it"],
"description": "Fanpage is a digital news outlet founded in 2010 that covers general news, politics, sports, entertainment, and technology. The website specializes in real-time news coverage and video journalism, with a significant presence on social media platforms. It is particularly popular among younger Italian readers and known for its investigative journalism, often presenting news from a progressive, left-leaning perspective.",
"owner": "Ciaopeople Media Group S.r.l.",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "La Gazzetta dello Sport",
"domains": ["gazzetta.it"],
"description": "La Gazzetta dello Sport is Italy's primary sports newspaper and digital media platform, founded in 1896. It provides comprehensive coverage of Italian and international sports, with particular focus on football, cycling, motorsports, basketball and tennis. The publication is known for its distinctive pink-colored paper edition and extensive digital sports news coverage.",
"owner": "Cairo Communication SpA",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "HuffPost Italia",
"domains": ["huffingtonpost.it"],
"description": "HuffPost Italia is the Italian edition of HuffPost, operating as a news website and blog that covers politics, economics, current affairs and lifestyle content. Originally launched as a joint venture between BuzzFeed and GEDI Group, it is now fully owned by GEDI and directed by Mattia Feltri since 2020. It provides news coverage from a progressive, left-leaning perspective.",
"owner": "GEDI Gruppo Editoriale",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Il Foglio",
"domains": ["ilfoglio.it"],
"description": "Il Foglio is a daily newspaper with a center-right editorial stance, founded by Giuliano Ferrara and currently directed by Claudio Cerasa, headquartered in Rome. The newspaper provides coverage of national and international news, politics, and current affairs, with a digital presence offering both free and subscription-based content.",
"owner": "Musa Comunicazione (100%)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "il manifesto",
"domains": ["ilmanifesto.it"],
"description": "il manifesto is a national daily newspaper established in 1969 as a monthly review before becoming a daily in 1971. It operates as a publishing cooperative of journalists and workers, known for its radical left-wing and communist editorial stance. The newspaper provides both print and digital news coverage, with recent efforts to expand its reach through an English-language edition.",
"owner": "Publishing cooperative of journalists and workers",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "il Post",
"domains": ["ilpost.it"],
"description": "il Post is a online daily newspaper founded in 2010 by Luca Sofri. It provides free access to news coverage, analysis, and content spanning world events, culture, and current affairs through articles, reviews, blogs, and photos, without requiring user registration.",
"owner": "Luca Sofri",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Il Resto del Carlino",
"domains": ["ilrestodelcarlino.it"],
"description": "Il Resto del Carlino is a major daily newspaper based in Bologna, serving Emilia-Romagna and central-northern Italy since 1885. It provides local and national news coverage through multiple regional editions, focusing particularly on Bologna, Ferrara, Modena, Reggio Emilia, Rimini, and the Marche region. The paper is known for its center-right editorial stance.",
"owner": "Monrif Group",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Il Secolo XIX",
"domains": ["ilsecoloxix.it"],
"description": "Il Secolo XIX is a daily newspaper founded in 1886 and based in Genoa, serving the Liguria region with local, national, and international news coverage. The newspaper had a print circulation of 28,718 copies in 2021, down from 103,223 in 2008, and operates both print and digital platforms.",
"owner": "Blue Media (MSC Group)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Il Sole 24 Ore",
"domains": ["ilsole24ore.com", "gruppo24ore.ilsole24ore.com"],
"description": "Il Sole 24 Ore is Italy's primary financial and business daily newspaper and media group, providing news coverage, analysis, and professional services focused on economics, finance, business, and regulatory matters. The outlet maintains strong ties to the Italian industrial sector through its ownership by Confindustria, reflecting a business-oriented perspective in its coverage.",
"owner": "Confindustria",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Il Tempo",
"domains": ["iltempo.it"],
"description": "Il Tempo is a daily newspaper based in Rome, founded in 1944. It is known for its conservative-leaning editorial stance and primarily covers news, politics, sports, and culture with a focus on Rome and the surrounding Lazio region. The newspaper maintains both print and digital operations through its website iltempo.it.",
"owner": "Editrice Romana Srl",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "La Nazione",
"domains": ["lanazione.it"],
"description": "La Nazione is a daily newspaper founded in 1859, based in Florence and covering news from Tuscany and Umbria regions with 14 different local editions. The newspaper maintains a moderate-conservative editorial stance and publishes daily news covering politics, economy, sports, technology, and local chronicles across its print and digital platforms.",
"owner": "Monrif Group",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "La Stampa",
"domains": ["lastampa.it"],
"description": "La Stampa is a major Italian daily newspaper founded in 1867 in Turin. It is one of Italy's oldest newspapers and has historically been associated with the industrial and business community of northern Italy, particularly the Fiat/FIAT Group. The newspaper provides national and international news coverage, with particular focus on politics, economics, and cultural affairs.",
"owner": "GEDI Gruppo Editoriale (owned by EXOR - Agnelli family)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Mediaset",
"domains": ["tgcom24.mediaset.it", "mediasetinfinity.mediaset.it"],
"description": "Mediaset is Italy's largest commercial broadcaster, operating a streaming platform (Mediaset Infinity) and multiple television channels. The company offers free-to-air and premium content including news, entertainment, sports, and fiction programming through both traditional TV broadcasting and digital streaming services. Under Berlusconi family control, its news coverage consistently aligns with center-right political positions.",
"owner": "MediaForEurope N.V. (majority owned by the Berlusconi family)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "News Mondo",
"domains": ["newsmondo.it"],
"description": "News Mondo is a digital news platform providing 24/7 real-time news coverage and analysis of current events from Italy and around the world. The platform features a team of young professionals and established journalists delivering news content across various categories including current affairs, editorials, and in-depth analysis.",
"owner": "Unknown",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Notizie Italia",
"domains": ["notizie-italia.it"],
"description": "Notizie Italia is a digital news platform established in 2023 that aggregates and publishes national news content primarily sourced from major news agencies. The platform provides coverage across various topics including politics, economics, sports, and current events.",
"owner": "Unknown",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Open",
"domains": ["open.online"],
"description": "Open is a digital news outlet founded by journalist Enrico Mentana, operating as a social enterprise based in Milan. The organization focuses on providing real-time news coverage in a simplified format for online audiences.",
"owner": "Enrico Mentana",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "OrizzonteScuola SRL",
"domains": ["orizzontescuola.it"],
"description": "OrizzonteScuola is a educational news portal and media service focused on providing news, resources, and consultation services for teachers, school administrators, and education staff. The platform covers education policy updates, job opportunities, regulatory changes, and professional development in the Italian education sector.",
"owner": "OrizzonteScuola SRL",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "la Repubblica",
"domains": ["repubblica.it"],
"description": "la Repubblica is a daily newspaper and online news outlet based in Rome, founded in 1976. The publication maintains a center-left political editorial line and covers politics, economics, sports, international news, culture, and science. It is part of GEDI News Network, one of Italy's major media groups.",
"owner": "GEDI Gruppo Editoriale (owned by Exor)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "RTL 102.5",
"domains": ["rtl.it"],
"description": "RTL 102.5 is a radio broadcaster that operates as a multimedia platform combining radio, television, and web streaming services. The station offers news, music programming, and entertainment content through its 'Radiovisione' format, which allows simultaneous radio listening and video viewing across multiple platforms including digital terrestrial TV (channel 36), Sky (channel 736), and web streaming.",
"owner": "Lorenzo Suraci",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Sky TG24",
"domains": ["skytg24.it"],
"description": "Sky TG24 is a 24-hour all-news television channel and digital news platform operated by Sky Italia. It broadcasts news, current affairs, and live coverage on channel 50 of digital terrestrial television in Italy, offering free-to-air news coverage alongside premium content through its Insider subscription service.",
"owner": "Sky Italia (Comcast Corporation)",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Today",
"domains": ["today.it"],
"description": "Today.it is a digital news platform operated by Citynews that provides real-time coverage of national and international news, including politics, economics, sports, entertainment, and local news through a network of city-specific editions. The platform focuses on delivering breaking news and in-depth analysis across multiple Italian cities.",
"owner": "Citynews S.p.A.",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "l'Unità",
"domains": ["unita.it"],
"description": "l'Unità is a daily newspaper founded by Antonio Gramsci in 1924. It provides news coverage of politics, economics, current affairs, justice, and international news through its online platform. Currently directed by Piero Sansonetti, the newspaper has historical ties to the Italian left and continues to publish both daily news and in-depth stories.",
"owner": "Romeo editore srl",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Virgilio",
"domains": ["virgilio.it"],
"description": "Virgilio.it operates as a major Italian news aggregator and digital media platform. The site curates and publishes news content from various Italian and international sources, covering politics, economics, sports, entertainment, and local news. While not producing original journalism, it serves as a news distribution channel in Italy through its content aggregation and syndication services.",
"owner": "Libero Acquisition S.A.r.l.",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Il Fatto Quotidiano",
"domains": ["ilfattoquotidiano.it"],
"description": "Il Fatto Quotidiano is a daily newspaper and digital news outlet founded in 2009, known for its investigative journalism and coverage of politics, justice, economics, and corruption. The publication maintains an independent editorial stance with a strong focus on anti-corruption reporting and government accountability. While editorially independent, it has historically shown alignment with some positions of the Five Star Movement (M5S), particularly on anti-corruption and institutional reform.",
"owner": "Società Editoriale Il Fatto S.p.A.",
"typology": "Private Media"
},
{
"country": "Italy",
"organization": "Avvenire",
"domains": ["avvenire.it"],
"description": "Avvenire is a daily newspaper with a Catholic perspective. The publication covers news, editorials, and analysis on current affairs, culture, religion, politics, economics and world events from a Christian worldview.",
"owner": "Italian Episcopal Conference - Fondazione di Religione \"Santi Francesco d'Assisi e Caterina da Siena\" (75%)",
"typology": "Private Media"
},
{
"country": "India",
"organization": "TecMint",
"domains": ["tecmint.com"],
"description": "TecMint is a technical blog and community website started by Ravi Saive focused on providing Linux tutorials, system administration guides, and open source software documentation.",
"owner": "Ravi Saive",
"typology": "Private Media"
},
{
"country": "India",
"organization": "nixCraft",
"domains": ["cyberciti.biz", "nixcraft.com"],
"description": "nixCraft is a technical blog focused on Linux, Unix, cybersecurity, and system administration tutorials. The site provides detailed guides, tips, and best practices for system administrators and Linux users, with a particular emphasis on command-line operations and server management.",
"owner": "Vivek Gite",
"typology": "Private Media"
},
{
"country": "India",
"organization": "It's FOSS",
"domains": ["itsfoss.com"],
"description": "It's FOSS is a web portal focused on Linux and open source software that provides news, tutorials, tips and educational resources about Linux and open source technologies.",
"owner": "Abhishek Prakash",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "CloudLinux Blog",
"domains": ["cloudlinux.com"],
"description": "Official blog of CloudLinux, a commercial Linux operating system provider specializing in web hosting solutions. The blog provides technical updates, product releases, and documentation for CloudLinux OS, CloudLinux's own distro.",
"owner": "Cloud Linux Software, Inc.",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Linux.com",
"domains": ["linux.com"],
"description": "Linux.com is a web resource providing news, tutorials, certifications, and information focused on Linux and open source technology. The platform offers educational content, professional development resources, discussion forums, and job listings for the open source community.",
"owner": "The Linux Foundation",
"typology": "Private Media"
},
{
"country": "India",
"organization": "OSTechNix",
"domains": ["ostechnix.com"],
"description": "OSTechNix is a technology blog funded by Senthilkumar Palani in 2012, focused on publishing tutorials, how-to articles, news, and tips about open-source software, Linux distributions, Unix systems, and programming.",
"owner": "Senthilkumar Palani",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Phoronix",
"domains": ["phoronix.com", "phoronix-test-suite.com"],
"description": "Phoronix is a leading technology website founded in 2004 that provides daily news coverage focused on Linux, open-source software developments, and hardware reviews. While known for its Phoronix Test Suite benchmarking software, the site's primary focus is delivering comprehensive reporting on Linux kernel updates and general Linux news, hardware compatibility, graphics drivers, and performance analysis across different Linux distributions and open-source technologies.",
"owner": "Michael Larabel",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Slashdot",
"domains": [
"slashdot.org",
"sourceforge.net",
"voipreview.org",
"wirefly.com"
],
"description": "Slashdot is a technology-focused social news website founded in 1997 by by Rob 'CmdrTaco' Malda that allows users to submit and evaluate news stories about science, technology, and politics. Originally known for its 'News for Nerds' tagline, it pioneered user-submitted news and community moderation in tech media, and is notable for the 'Slashdot effect' phenomenon of overwhelming smaller websites through traffic spikes.",
"owner": "BIZX LLC/Slashdot Media",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "Linux Mint Blog",
"domains": ["linuxmint.com", "blog.linuxmint.com"],
"description": "The Linux Mint Blog is the official news and announcement platform for the Linux Mint operating system project, providing updates about development progress, new releases, and community news. It serves as the primary communication channel between the Linux Mint development team and its user community.",
"owner": "Linux Mint Project",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "Manjaro Linux Forum",
"domains": ["manjaro.org"],
"description": "Manjaro Linux Forum is the official community discussion platform and news distribution channel for Manjaro Linux, an Arch Linux-based operating system. The forum provides announcements, technical support, and community discussions for Manjaro users through various channels including RSS feeds for updates and announcements.",
"owner": "Manjaro GmbH & Co. KG",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Linux Journal",
"domains": ["linuxjournal.com"],
"description": "Linux Journal is a monthly technology magazine focused on Linux and open source software, publishing from 1994. It publishes technical articles, tutorials, and news coverage for Linux professionals and enthusiasts.",
"owner": "Linux Journal LCC (1994-2019), Slashdot Media (2019-)",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "LWN.net",
"domains": ["lwn.net"],
"description": "LWN.net is a reader-supported computing webzine focused on Linux, free software, and open source development, providing comprehensive coverage of technical, legal, commercial and security issues in the free software ecosystem. Originally known as Linux Weekly News, it offers both daily and weekly content through a subscription model.",
"owner": "Eklektix, Inc.",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Linux Today",
"domains": ["linuxtoday.com"],
"description": "Linux Today is a contributor-driven news and information resource focused on Linux operating systems, providing tutorials, guides, and technical news coverage for Linux users and IT professionals",
"owner": "TechnologyAdvice",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "SparkyLinux",
"domains": ["sparkylinux.org"],
"description": "SparkyLinux is a Debian-based Linux distribution project that develops and maintains a fast, lightweight operating system. It offers multiple desktop environment options and two main versions: a stable release based on Debian stable and a rolling release based on Debian testing..",
"owner": "Sparky Linux Project",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "SUSE",
"domains": ["suse.com"],
"description": "SUSE is a multinational open-source software company that develops and sells Linux-based enterprise solutions, including SUSE Linux Enterprise Server, cloud technologies, and software-defined storage. The company provides operating systems, infrastructure software, and development tools for business customers.",
"owner": "EQT AB (via Marcel LUX III SARL)",
"typology": "Private Media"
},
{
"country": "Netherlands/Morocco",
"organization": "Unixmen",
"domains": ["unixmen.com"],
"description": "Unixmen is a technology website focused on providing Linux tutorials, how-tos, tips & tricks, and open source news. The site covers popular Linux distributions like Ubuntu, Linux Mint, Fedora, and CentOS, offering technical guides and resources for Linux users and system administrators.",
"owner": "The Eighth Network",
"typology": "Private Media"
},
{
"country": "India",
"organization": "Kali Linux India Blog",
"domains": ["kalilinux.in"],
"description": "An unofficial blog and community resource focused on Kali Linux, providing tutorials, guides, and news related to penetration testing and cybersecurity tools for Indian users. This is not affiliated with the official Kali Linux project (kali.org) maintained by Offensive Security.",
"owner": "",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Linux Magazine",
"domains": ["linux-magazine.com"],
"description": "Linux Magazine is a technical publication focused on Linux and open source software, providing news, tutorials, and in-depth articles about Linux systems administration, security, and development. It offers both print and digital content through its website and RSS feeds, serving the global Linux and open source community.",
"owner": "Linux New Media AG",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "FOSS Linux",
"domains": ["fosslinux.com"],
"description": "FOSS Linux is a technology blog focused on providing news, tutorials, reviews and information about Linux distributions and Free and Open Source Software (FOSS). The website specializes in covering Linux-related topics, distribution reviews, and guides for both beginners and advanced users, with particular emphasis on open-source technologies and solutions.",
"owner": "Vibrant Leaf Media Company",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "LinuxGizmos",
"domains": ["linuxgizmos.com"],
"description": "LinuxGizmos is a technology news website launched in February 2013 that focuses on covering Linux and its derivatives in embedded systems, mobile devices, and IoT applications. The site publishes news, analysis, and technical content about hardware, software, protocols, and standards in the embedded Linux ecosystem.",
"owner": "KCK Media",
"typology": "Private Media"
},
{
"country": "",
"organization": "blackMORE Ops",
"domains": ["blackmoreops.com"],
"description": "blackMORE Ops is a technical blog and educational resource focused on cybersecurity, Kali Linux, information security, and ethical hacking. The site provides tutorials, guides, and technical documentation for security professionals and enthusiasts, with particular emphasis on Kali Linux tools and penetration testing methodologies.",
"owner": "",
"typology": "Private Media"
},
{
"country": "United Kingdom",
"organization": "GamingOnLinux",
"domains": ["gamingonlinux.com"],
"description": "GamingOnLinux is a specialized gaming news website focused on Linux gaming, Steam Deck, and SteamOS coverage. It provides news, reviews, and technical information about gaming on Linux platforms.",
"owner": "Liam Dawe",
"typology": "Private Media"
},
{
"country": "",
"organization": "Kali Linux Blog",
"domains": ["kali.org"],
"description": "Kali Linux is an open-source Debian-based Linux distribution maintained and funded by Offensive Security, specifically designed for digital forensics, penetration testing, and security auditing.",
"owner": "Offensive Security",
"typology": "Private Media"
},
{
"country": "Czech Republic",
"organization": "Lisenet",
"domains": ["lisenet.com"],
"description": "Lisenet is a technical blog focused on Linux systems administration, security, networking, and IT infrastructure. The site provides study guides for professional certifications like RHCE and LPIC, along with practical tutorials and guides on Kubernetes, Docker, and system administration.",
"owner": "Tomas Nevar",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "LXer",
"domains": ["lxer.com"],
"description": "LXer is an independent Linux and open source news website established in 2004 by Dave Whitinger. The site publishes Linux-related news, opinions, reviews, and community discussions, focusing specifically on free and open source software developments and the Linux ecosystem.",
"owner": "Dave Whitinger",
"typology": "Private Media"
},
{
"country": "India",
"organization": "DebugPoint.com",
"domains": ["debugpoint.com"],
"description": "DebugPoint.com is a technology news portal and blog focused primarily on Linux, open source software, and development topics. The site provides tutorials, news coverage, and technical content with a particular emphasis on Linux distributions, software development, and programming tutorials, especially related to Python and system administration.",
"owner": "Arindam Giri",
"typology": "Private Media"
},
{
"country": "",
"organization": "Linux Stans",
"domains": ["linuxstans.com"],
"description": "Linux Stans is a technical blog/website focused on providing Linux tutorials, command-line guides, and system administration content.",
"owner": "",
"typology": "Private Media"
},
{
"country": "Taiwan",
"organization": "DistroWatch",
"domains": ["distrowatch.com"],
"description": "DistroWatch is a website that provides comprehensive information, news, and statistics about Linux distributions and BSD operating systems. It maintains a database of various distributions, tracks their release cycles, features, and popularity through page hit rankings, serving as a key resource for the Linux/BSD community.",
"owner": "Ladislav Bodnar",
"typology": "Private Media"
},
{
"country": "Taiwan/South Africa",
"organization": "DistroWatch",
"domains": ["distrowatch.com"],
"description": "DistroWatch is a website that provides comprehensive news, information, and comparison resources about Linux distributions and BSD operating systems. It maintains distribution rankings based on page hits, offers detailed distribution information pages, and serves as a central hub for tracking releases and updates across the open-source operating system landscape.",
"owner": "Ladislav Bodnar",
"typology": "Private Media"
},
{
"country": "United Kingdom",
"organization": "OMG! Ubuntu/OMG! Linux",
"domains": ["omgubuntu.co.uk", "omglinux.com"],
"description": "OMG! Ubuntu is an independent blog focused on covering Ubuntu Linux distribution, its derivatives, and the broader Linux/open-source ecosystem. The site provides news, tutorials, and updates about Ubuntu and related open-source technologies. OMG! Linux is a similar blog focused on Linux and open-source software news.",
"owner": "Joey-Elijah Sneddon",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "Arch Linux Blog",
"domains": ["archlinux.org"],
"description": "Arch Linux is a lightweight and flexible Linux distribution that provides official news feeds and updates about system changes, package updates, and security advisories for its user base. The project is community-driven and follows a rolling release model, focusing on simplicity, minimalism, and user centrality.",
"owner": "Arch Linux Community",
"typology": "Private Media"
},
{
"country": "",
"organization": "Linuxiac",
"domains": ["linuxiac.com"],
"description": "Linuxiac is a media platform funded by Bobby Borisov in 2020 that publishes news, reviews, and how-to articles focused on Linux and Open Source software. The site provides coverage of Linux distributions, software releases, and community projects.",
"owner": "Bobby Borisov",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "9to5Linux",
"domains": ["9to5linux.com"],
"description": "9to5Linux is a specialized technology news website focused on Linux operating system news, providing coverage of kernel updates, distribution releases, software updates, and technical tutorials. The site regularly reports on major Linux developments including kernel releases, desktop environments, and open-source applications.",
"owner": "Marius Nestor",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "LinuxInsider",
"domains": ["linuxinsider.com"],
"description": "LinuxInsider is a specialized technology news website focused on providing news, analysis, and reviews of Linux and open-source technologies. The platform offers content targeted at developers, system administrators, business executives, and Linux enthusiasts, covering topics from kernel updates to industry trends and community developments.",
"owner": "ECT News Network",
"typology": "Private Media"
},
{
"country": "United Kingdom",
"organization": "LinuxLinks",
"domains": ["linuxlinks.com"],
"description": "LinuxLinks is a Linux-focused web portal that provides curated collections of open source software reviews, tutorials, and resources. It offers comprehensive guides for Linux newcomers, maintains a directory of Linux distributions, and publishes detailed reviews of open source alternatives to proprietary software, with particular emphasis on remote desktop and system administration tools.",
"owner": "Steve Emms",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "EndeavourOS",
"domains": ["endeavouros.com"],
"description": "EndeavourOS is a community-driven Linux distribution based on Arch Linux, created in 2019 as a successor to Antergos. It offers a lightweight, rolling-release operating system with access to the Arch User Repository (AUR), featuring multiple desktop environment options and a terminal-centric approach while maintaining a supportive community focus.",
"owner": "EndavourOS Project",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "System76 Blog",
"domains": ["system76.com"],
"description": "System76 is a Linux-focused computer manufacturer based in Denver, Colorado that produces laptops, desktops, and servers with pre-installed Linux operating systems. Their blog provides company updates, product announcements, technical articles, and community engagement content.",
"owner": "System76",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Reddit",
"domains": ["reddit.com"],
"description": "Reddit is a social news and discussion platform where users submit content and participate in topic-specific communities called subreddits. The platform combines social networking, news aggregation, and forum features, allowing users to vote on content and engage in discussions.",
"owner": "Advance Publications (30%), Tencent (11%), Sam Altman (9%)",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Fedora Magazine",
"domains": ["fedoramagazine.org"],
"description": "Fedora Magazine is the official news and information website of the Fedora Project, publishing guides, tutorials, and news about the Fedora Linux operating system and its ecosystem. The content is contributed by community members and published under Creative Commons licensing.",
"owner": "Fedora Project",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Fedora Project Forum",
"domains": ["fedoraproject.org", "getfedora.org"],
"description": "The Fedora Project Forum is the official community platform for the Fedora Linux distribution, providing news, technical discussions, and community engagement for Fedora users and contributors.",
"owner": "Fedora Project",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "KDE News",
"domains": ["kde.org"],
"description": "KDE News is the official news portal of the KDE Community, providing updates about KDE software development, applications, releases, and community initiatives.",
"owner": "KDE e.V.",
"typology": "Private Media"
},
{
"country": "International",
"organization": "KDE Community Blog",
"domains": ["kde.org"],
"description": "The KDE Community Blog is the official blogging platform of the KDE project, an international free software community that develops open-source software.",
"owner": "KDE e.V.",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "GNOME Foundation",
"domains": ["gnome.org"],
"description": "The GNOME Foundation is a non-profit organization that oversees the development of GNOME, one of the most widely-used open-source desktop environments for Linux and Unix-like systems.",
"owner": "GNOME Foundation",
"typology": "Private Media"
},
{
"country": "Global",
"organization": "openSUSE News",
"domains": ["opensuse.org"],
"description": "openSUSE News is the official news platform for the openSUSE Project, publishing announcements and updates about the openSUSE Linux distribution, its development, community events, and technical changes.",
"owner": "openSUSE Project",
"typology": "Private Media"
},
{
"country": "United Kingdom",
"organization": "Ubuntu Blog",
"domains": ["ubuntu.com"],
"description": "Ubuntu Blog is the official blog of the Ubuntu operating system, providing news, updates, tutorials and insights about Ubuntu's open-source software ecosystem. The blog covers desktop, cloud computing, IoT developments, and technical content related to the Ubuntu distribution and its community.",
"owner": "Canonical Ltd.",
"typology": "Private Media"
},
{
"country": "",
"organization": "Boiling Steam",
"domains": ["boilingsteam.com"],
"description": "Boiling Steam is a specialized gaming blog focused on Linux gaming and Steam Deck coverage with news, podcasts, and analysis.",
"owner": "Ekianjo",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Hacker News",
"domains": ["news.ycombinator.com"],
"description": "Hacker News is a social news website focused on computer science, technology, entrepreneurship and startups. It features user-submitted content that can be voted up or down by the community, including tech news, scientific discoveries, and in-depth articles about programming, business, and technology culture.",
"owner": "Y Combinator",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Cointelegraph",
"domains": ["cointelegraph.com"],
"description": "Established in 2013, Cointelegraph is a digital media platform focused on blockchain technology, cryptocurrency, and fintech news coverage.",
"owner": "Jay Cassano",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Kraken Blog",
"domains": ["kraken.com"],
"description": "Kraken Blog is the official blog of Kraken, a large cryptocurrency exchange. It provides news, updates, and educational content about Kraken's products, cryptocurrency trading, and blockchain technology.",
"owner": "Kraken Global Trading Solutions LLC",
"typology": "Private Media"
},
{
"country": "United Kingdom",
"organization": "CoinJournal",
"domains": ["coinjournal.net"],
"description": "CoinJournal is a cryptocurrency and blockchain news publication that provides news coverage, analysis, and educational content about the crypto economy.",
"owner": "Oliver Carding, Ian DeMartino",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "CoinDesk",
"domains": ["coindesk.com"],
"description": "CoinDesk is a cryptocurrency and digital assets-focused media outlet established in 2013 that provides news coverage, analysis, and data about Bitcoin, blockchain, and the crypto economy.",
"owner": "Bullish Global",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Bloomberg Media",
"domains": ["bloomberg.com", "bloombergmedia.com"],
"description": "Bloomberg Media is a global business and financial news organization. It maintains major editorial hubs in New York, London, Hong Kong, Washington D.C., and Sydney.",
"owner": "Bloomberg L.P.",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "CryptoSlate",
"domains": ["cryptoslate.com"],
"description": "CryptoSlate is a cryptocurrency news and data platform established in 2017 that provides news coverage, market analysis, and insights about digital assets, blockchain technology, and the cryptocurrency industry.",
"owner": "Nate Whitehill, Matthew Blancarte",
"typology": "Private Media"
},
{
"country": "Canada",
"organization": "CryptoCurrencyNews",
"domains": ["cryptocurrencynews.com"],
"description": "CryptoCurrencyNews is a digital media outlet focused on cryptocurrency news, market analysis, and trends. The platform provides coverage of Bitcoin, Ethereum, blockchain technology, and other digital assets, offering market updates, price analysis, and industry developments for cryptocurrency investors and enthusiasts.",
"owner": "Market Jar Media Inc.",
"typology": "Private Media"
},
{
"country": "Hungary",
"organization": "Bitcoinist",
"domains": ["bitcoinist.com"],
"description": "Bitcoinist is a cryptocurrency news portal focused on Bitcoin and blockchain technology, providing 24/7 coverage including price analysis, market updates, technical analysis, and industry news.",
"owner": "Norbert Radoki",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "The Block",
"domains": ["theblock.co"],
"description": "The Block is a New York-based digital media company focused on cryptocurrency and digital assets news, research, and analysis.",
"owner": "Foresight Ventures",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "Decrypt",
"domains": ["decrypt.co"],
"description": "Decrypt is a digital media platform focused on covering cryptocurrency, blockchain technology, Web3, and the decentralized internet. The publication provides news coverage, educational content, and analysis of the cryptocurrency industry and emerging blockchain technologies.",
"owner": "",
"typology": "Private Media"
},
{
"country": "Cyprus",
"organization": "The Currency Analytics",
"domains": ["thecurrencyanalytics.com"],
"description": "The Currency Analytics is a cryptocurrency news and analysis website that provides coverage of crypto markets, blockchain technology, and altcoins.",
"owner": "Sydney Ifergan",
"typology": "Private Media"
},
{
"country": "Argentina",
"organization": "BeInCrypto",
"domains": ["beincrypto.com"],
"description": "BeInCrypto is a cryptocurrency and blockchain industry news website that provides unbiased news coverage, market analysis, and educational content about Bitcoin, altcoins, and blockchain technology.",
"owner": "Alena Afanaseva",
"typology": "Private Media"
},
{
"country": "Saint Kitts and Nevis",
"organization": "Bitcoin.com",
"domains": ["bitcoin.com"],
"description": "Bitcoin.com is a cryptocurrency news portal and digital wallet developer established in 2015 that provides services for buying, selling, and trading cryptocurrencies like Bitcoin (BTC), Bitcoin Cash (BCH), and other digital assets. The platform combines news coverage, educational resources, and cryptocurrency trading tools.",
"owner": "Saint Bitts LLC",
"typology": "Private Media"
},
{
"country": "Bulgaria",
"organization": "CryptoPotato",
"domains": ["cryptopotato.com"],
"description": "CryptoPotato is a cryptocurrency news and analysis website that provides daily coverage of Bitcoin and other digital currencies, including price analysis, trading guides, market updates, and educational content for both beginners and experienced crypto traders.",
"owner": "George Georgiev",
"typology": "Private Media"
},
{
"country": "India",
"organization": "CoinGape",
"domains": ["coingape.com"],
"description": "CoinGape is a cryptocurrency and blockchain technology news website that provides market analysis, price tracking, and coverage of crypto events.",
"owner": "Sunil Sharma",
"typology": "Private Media"
},
{
"country": "United States",
"organization": "The Daily Hodl",
"domains": ["dailyhodl.com"],
"description": "The Daily Hodl is a cryptocurrency and digital assets news website focused on covering Bitcoin, Ethereum, and blockchain technology developments. .",
"owner": "Blake Buford, Laurene Williams",
"typology": "Private Media"
},
{
"country": "United Arab Emirates",
"organization": "crypto.news",
"domains": ["crypto.news"],
"description": "A cryptocurrency news website that covers Bitcoin, Ethereum, Ripple and other blockchain ecosystems, providing news updates, market analysis and industry developments.",
"owner": "",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Die Zeit",
"domains": ["zeit.de"],
"description": "Die Zeit is a weekly newspaper known for its liberal/center-left editorial stance and in-depth analysis. It is considered one of Germany's leading quality media publications by journalists, with coverage of politics, economics, culture, and society.",
"owner": "Dieter von Holtzbrinck Medien (50%), Verlagsgruppe Georg von Holtzbrinck (50%)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "CORRECTIV",
"domains": ["correctiv.org"],
"description": "CORRECTIV is a non-profit investigative newsroom, focusing on investigative journalism, fact-checking, and cross-border investigations.",
"owner": "David Schraven",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Focus",
"domains": ["focus.de", "burda.com"],
"description": "Focus is a German-language news magazine and digital media outlet established in 1993 as an alternative to Der Spiegel. Published by Hubert Burda Media, it operates both as a weekly print magazine headquartered in Berlin and a online news portal through Focus Online, covering politics, business, science, and culture.",
"owner": "Burda family",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Süddeutsche Zeitung",
"domains": ["sueddeutsche.de"],
"description": "Süddeutsche Zeitung is a daily newspaper published in Munich since 1945. Known for its liberal-center-left editorial stance, investigative journalism, and extensive coverage of politics, culture, and economics. The paper has played a significant role in major investigative projects like the Panama Papers and Paradise Papers.",
"owner": "Südwestdeutsche Medien Holding (81.25%), SZ Mitarbeiter KG (18.75%)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Die Tageszeitung",
"domains": ["taz.de"],
"description": "Die Tageszeitung (taz) is a daily newspaper founded in 1978 and based in Berlin. It operates as a cooperative since 1992, known for its left-leaning critical journalism. The newspaper focuses on investigative reporting, analysis, and alternative perspectives.",
"owner": "taz Cooperative - Readers ownership",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Frankfurter Allgemeine Zeitung",
"domains": ["faz.net", "frankfurterallgemeine.de"],
"description": "The Frankfurter Allgemeine Zeitung (FAZ) is a daily newspaper known for its conservative editorial stance. It covers business, politics, and culture.",
"owner": "FAZIT-Stiftung",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Der Spiegel",
"domains": ["spiegel.de"],
"description": "Der Spiegel is a weekly news magazine and digital news platform established in 1947, known for its investigative journalism and political coverage. The online website has a center left-leaning editorial stance and covers politics, culture, and society.",
"owner": "Spiegel Employees (50.5%), Mohn family (25.5%), Augstein family (24%)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Stern",
"domains": ["stern.de"],
"description": "Stern is a weekly news magazine published in Hamburg since 1948 that provides reporting on politics, economy, culture and current affairs. The online website mirrors the print magazine.",
"owner": "Mohn family (74%)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "t-online",
"domains": ["t-online.de"],
"description": "t-online is a digital news portal and email service provider offering comprehensive coverage of news, politics, sports, entertainment, and lifestyle content.",
"owner": "Udo Müller (24%), Dirk Ströer (20%), other shareholders (56%)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Der Tagesspiegel",
"domains": ["tagesspiegel.de", "tagesspiegel-gruppe.de"],
"description": "Der Tagesspiegel is a daily newspaper founded in 1945 as Berlin's first free press publication. It operates as a newspaper with a liberal editorial stance, publishing both print and digital content under the motto 'Rerum cognoscere causas' (Getting to the root of things).",
"owner": "DvH Medien GmbH (Dieter von Holtzbrinck)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Zweites Deutsches Fernsehen (ZDF)",
"domains": ["zdf.de"],
"description": "ZDF is a public-service television broadcaster based in Mainz that has been operating since 1963. ZDF, like ARD, is well-respected as a journalism powerhouse, financially stable, independent, and fully accountable to the public.",
"owner": "Public broadcaster (German public institutions)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "n-tv",
"domains": ["n-tv.de"],
"description": "n-tv is a free-to-air television news channel and digital media outlet that focuses on news, business coverage, and documentaries.",
"owner": "RTL Deutschland",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "RedaktionsNetzwerk Deutschland",
"domains": ["rnd.de"],
"description": "RedaktionsNetzwerk Deutschland (RND) is a Hanover-based joint corporate newsroom that provides news content and services across Germany.",
"owner": "Social Democratic Party of Germany (25%), Sylvia Madsack (19.99%)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Frankfurter Rundschau",
"domains": ["fr.de"],
"description": "Frankfurter Rundschau is a daily newspaper published in Frankfurt. It is known for its left-liberal editorial stance and focuses on political, economic, and cultural coverage with particular emphasis on the Frankfurt Rhine-Main region.",
"owner": "Ippen family",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Handelsblatt Media Group",
"domains": ["handelsblatt.com", "handelsblattgroup.com"],
"description": "Handelsblatt Media Group is a media company based in Düsseldorf that specializes in business and financial information, providing news coverage, analysis, and specialized communication solutions through various digital and print platforms.",
"owner": "Dieter von Holtzbrinck",
"typology": "Private Media"
},
{
"country": "Germany",