forked from sstklen/trump-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx_truth_full_comparison.json
More file actions
1574 lines (1574 loc) · 54.7 KB
/
Copy pathx_truth_full_comparison.json
File metadata and controls
1574 lines (1574 loc) · 54.7 KB
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
{
"metadata": {
"timestamp": "2026-03-15T05:53:52Z",
"analysis_version": "2.0",
"x_source": "X embed API (cdn.syndication.twimg.com)",
"truth_source": "clean_president.json (Truth Social archive)"
},
"summary": {
"x_total": 37,
"truth_total": 5306,
"matched": 10,
"x_only": 27,
"truth_only": 5296,
"truth_only_ratio": 99.8,
"x_selection_rate": 0.19
},
"matched_pairs": [
{
"x_id": "1890831570535055759",
"truth_id": "114009179225169296",
"x_text": "He who saves his Country does not violate any Law.",
"truth_text": "He who saves his Country does not violate any Law.",
"x_time": "2025-02-15T18:32:31.000Z",
"truth_time": "2025-02-15T17:53:36.986Z",
"x_likes": 716285,
"truth_likes": 53237
},
{
"x_id": "1908300360810479821",
"truth_id": "114281864005346951",
"x_text": "These Houthis gathered for instructions on an attack. Oops, there will be no attack by these Houthis! \n\nThey will never sink our ships again! https://t.co/lEzfyDgWP5",
"truth_text": "These Houthis gathered for instructions on an attack. Oops, there will be no attack by these Houthis! They will never sink our ships again!Â",
"x_time": "2025-04-04T23:27:15.000Z",
"truth_time": "2025-04-04T21:40:56.527Z",
"x_likes": 457449,
"truth_likes": 17488
},
{
"x_id": "1921008311492624867",
"truth_id": "114480839195032975",
"x_text": "Today, I signed an Executive Order to launch the first-ever self-deportation program. Illegal aliens who stay in America face punishments, including—sudden deportation, in a place and manner solely of",
"truth_text": "Today, I signed an Executive Order to launch the first-ever self-deportation program. Illegal aliens who stay in America face punishments, including—sudden deportation, in a place and manner solely of",
"x_time": "2025-05-10T01:04:06.000Z",
"truth_time": "2025-05-10T01:02:57.056Z",
"x_likes": 472113,
"truth_likes": 1422
},
{
"x_id": "1925548216243703820",
"truth_id": "114551462787614405",
"x_text": "“THE ONE, BIG, BEAUTIFUL BILL” has PASSED the House of Representatives! This is arguably the most significant piece of Legislation that will ever be signed in the History of our Country! The Bill incl",
"truth_text": "“THE ONE, BIG, BEAUTIFUL BILL” has PASSED the House of Representatives! This is arguably the most significant piece of Legislation that will ever be signed in the History of our Country! The Bill incl",
"x_time": "2025-05-22T13:44:04.000Z",
"truth_time": "2025-05-22T12:23:27.477Z",
"x_likes": 351249,
"truth_likes": 19394
},
{
"x_id": "1965947311718269341",
"truth_id": "115182892535295750",
"x_text": "TO MY GREAT FELLOW AMERICANS… https://t.co/oRsrE5TTHr",
"truth_text": "TO MY GREAT FELLOW AMERICANS…",
"x_time": "2025-09-11T01:15:39.000Z",
"truth_time": "2025-09-11T00:44:20.881Z",
"x_likes": 1301762,
"truth_likes": 117273
},
{
"x_id": "1978148814776046046",
"truth_id": "115373650611754631",
"x_text": "Don’t forget to get a copy of my son Eric’s book, “UNDER SIEGE,” which is breaking records everywhere. It’s a phenomenal book, that’s a must read for everyone—Congratulations Eric, you deserve it!!! h",
"truth_text": "Don't forget to get a copy of my son Eric's book, \"UNDER SIEGE,\" which is breaking records everywhere. It's a phenomenal book, that's a must read for everyone—Congratulations Eric, you deserve it!!! h",
"x_time": "2025-10-14T17:20:04.000Z",
"truth_time": "2025-10-14T17:16:38.055Z",
"x_likes": 384539,
"truth_likes": 18503
},
{
"x_id": "1994272683387687053",
"truth_id": "115625429081411360",
"x_text": "A very Happy Thanksgiving salutation to all of our Great American Citizens and Patriots who have been so nice in allowing our Country to be divided, disrupted, carved up, murdered, beaten, mugged, and",
"truth_text": "A very Happy Thanksgiving salutation to all of our Great American Citizens and Patriots who have been so nice in allowing our Country to be divided, disrupted, carved up, murdered, beaten, mugged, and",
"x_time": "2025-11-28T05:10:34.000Z",
"truth_time": "2025-11-28T04:27:12.616Z",
"x_likes": 543276,
"truth_likes": 39232
},
{
"x_id": "1994438728237064270",
"truth_id": "115617700844849134",
"x_text": "The United States did not attend the G20 in South Africa, because the South African Government refuses to acknowledge or address the horrific Human Right Abuses endured by Afrikaners, and other descen",
"truth_text": "The United States did not attend the G20 in South Africa, because the South African Government refuses to acknowledge or address the horrific Human Right Abuses endured by Afrikaners, and other descen",
"x_time": "2025-11-28T16:10:22.000Z",
"truth_time": "2025-11-26T19:41:49.085Z",
"x_likes": 524724,
"truth_likes": 47154
},
{
"x_id": "2004012442427277591",
"truth_id": "115777270368444049",
"x_text": "Merry Christmas to all, including the Radical Left Scum that is doing everything possible to destroy our Country, but are failing badly. We no longer have Open Borders, Men in Women’s Sports, Transgen",
"truth_text": "Merry Christmas to all, including the Radical Left Scum that is doing everything possible to destroy our Country, but are failing badly. We no longer have Open Borders, Men in Women's Sports, Transgen",
"x_time": "2025-12-25T02:12:53.000Z",
"truth_time": "2025-12-25T00:02:26.827Z",
"x_likes": 800865,
"truth_likes": 16644
},
{
"x_id": "2014772963719991311",
"truth_id": "115945837215795716",
"x_text": "COUNTDOWN: 7 Days until the World will witness an unforgettable, behind-the-scenes, look at one of the most important events of our time.\n\nMELANIA: TWENTY DAYS TO HISTORY:\nhttps://t.co/rjwd5Appkv http",
"truth_text": "COUNTDOWN: 7 Days until the World will witness an unforgettable, behind-the-scenes, look at one of the most important events of our time.MELANIA: TWENTY DAYS TO HISTORY:https://www.amazon.com/salp/mel",
"x_time": "2026-01-23T18:51:21.000Z",
"truth_time": "2026-01-23T18:31:12.817Z",
"x_likes": 394706,
"truth_likes": 13999
}
],
"x_only_posts": [
{
"id": "1862127644222832894",
"text": "Happy Thanksgiving to all, including to the Radical Left Lunatics who have worked so hard to destroy our Country, but who have miserably failed, and will always fail, because their ideas and policies ",
"created_at": "2024-11-28T13:33:21.000Z",
"likes": 821248,
"topics": [
"celebration/holiday"
]
},
{
"id": "1862281187600793830",
"text": "https://t.co/FhHeS8WdrK",
"created_at": "2024-11-28T23:43:29.000Z",
"likes": 426291,
"topics": [
"other"
]
},
{
"id": "1872051253846614426",
"text": "https://t.co/dt3qNahL3Q",
"created_at": "2024-12-25T22:46:14.000Z",
"likes": 1011019,
"topics": [
"other"
]
},
{
"id": "1880446012168249386",
"text": "My NEW Official Trump Meme is HERE! It’s time to celebrate everything we stand for: WINNING! Join my very special Trump Community. GET YOUR $TRUMP NOW. Go to https://t.co/GX3ZxT5xyq — Have Fun! https:",
"created_at": "2025-01-18T02:44:00.000Z",
"likes": 397677,
"topics": [
"other"
]
},
{
"id": "1892242622623699357",
"text": "https://t.co/PMcrOwXejI",
"created_at": "2025-02-19T15:59:32.000Z",
"likes": 610199,
"topics": [
"other"
]
},
{
"id": "1894126415932526802",
"text": "https://t.co/9pZeARuStB",
"created_at": "2025-02-24T20:45:03.000Z",
"likes": 296953,
"topics": [
"other"
]
},
{
"id": "1895566669281636846",
"text": "https://t.co/Ja8HQTFpf7",
"created_at": "2025-02-28T20:08:06.000Z",
"likes": 752511,
"topics": [
"other"
]
},
{
"id": "1905689237749727368",
"text": "https://t.co/i1rW9HroWn",
"created_at": "2025-03-28T18:31:34.000Z",
"likes": 293383,
"topics": [
"other"
]
},
{
"id": "1907782254572470670",
"text": "https://t.co/ZoSf5TdLqo",
"created_at": "2025-04-03T13:08:29.000Z",
"likes": 174210,
"topics": [
"other"
]
},
{
"id": "1920519130941170088",
"text": "https://t.co/0sUAawNN8S",
"created_at": "2025-05-08T16:40:16.000Z",
"likes": 95039,
"topics": [
"other"
]
},
{
"id": "1921174163848401313",
"text": "https://t.co/lRPhZpugBV",
"created_at": "2025-05-10T12:03:09.000Z",
"likes": 989597,
"topics": [
"other"
]
},
{
"id": "1921699954696855934",
"text": "https://t.co/ifaRjPPHvv",
"created_at": "2025-05-11T22:52:27.000Z",
"likes": 347661,
"topics": [
"other"
]
},
{
"id": "1921911904429088892",
"text": "https://t.co/9uLRtPVKpp",
"created_at": "2025-05-12T12:54:40.000Z",
"likes": 443985,
"topics": [
"other"
]
},
{
"id": "1923793069138178293",
"text": "🇶🇦🇺🇸 https://t.co/v1NwTQPWLO",
"created_at": "2025-05-17T17:29:44.000Z",
"likes": 320652,
"topics": [
"other"
]
},
{
"id": "1924523182909747657",
"text": "https://t.co/q5CPyHZkLD",
"created_at": "2025-05-19T17:50:57.000Z",
"likes": 461055,
"topics": [
"other"
]
},
{
"id": "1925201677914603580",
"text": "https://t.co/ZuagVWL4KS",
"created_at": "2025-05-21T14:47:03.000Z",
"likes": 546627,
"topics": [
"other"
]
},
{
"id": "1928797140408533377",
"text": "https://t.co/ttc8fsXNVF",
"created_at": "2025-05-31T12:54:08.000Z",
"likes": 451449,
"topics": [
"other"
]
},
{
"id": "1934008938334228752",
"text": "https://t.co/8C5WxKK3nc",
"created_at": "2025-06-14T22:03:57.000Z",
"likes": 310835,
"topics": [
"other"
]
},
{
"id": "1936573183634645387",
"text": "https://t.co/wu9mMkxtUg",
"created_at": "2025-06-21T23:53:21.000Z",
"likes": 1249401,
"topics": [
"other"
]
},
{
"id": "1937917613989859810",
"text": "https://t.co/dQgHNdzAXb",
"created_at": "2025-06-25T16:55:38.000Z",
"likes": 476192,
"topics": [
"other"
]
},
{
"id": "1941244891578904902",
"text": "https://t.co/PTPGtD7bjV",
"created_at": "2025-07-04T21:17:03.000Z",
"likes": 140186,
"topics": [
"other"
]
},
{
"id": "1941341699374186746",
"text": "HAPPY 4TH OF JULY!\n🎇🎆🇺🇸🦅https://t.co/54aoHX14mj",
"created_at": "2025-07-05T03:41:44.000Z",
"likes": 486902,
"topics": [
"celebration/holiday"
]
},
{
"id": "1968134929080082432",
"text": "https://t.co/gZgTprtUvt",
"created_at": "2025-09-17T02:08:27.000Z",
"likes": 317106,
"topics": [
"other"
]
},
{
"id": "1972822596397003159",
"text": "https://t.co/JzQYLShOCt",
"created_at": "2025-09-30T00:35:34.000Z",
"likes": 458913,
"topics": [
"other"
]
},
{
"id": "1973218518893207825",
"text": "https://t.co/2yyuRkm9r8",
"created_at": "2025-10-01T02:48:50.000Z",
"likes": 272535,
"topics": [
"other"
]
},
{
"id": "2027651077865157033",
"text": "https://t.co/BZuJDudLej",
"created_at": "2026-02-28T07:44:23.000Z",
"likes": 1003338,
"topics": [
"other"
]
},
{
"id": "2028505632123326484",
"text": "https://t.co/uAxTGrJisv",
"created_at": "2026-03-02T16:20:05.000Z",
"likes": 584236,
"topics": [
"other"
]
}
],
"truth_only_sample": [
{
"id": "116225502010036899",
"text": "The Fake News Media hates to report how well the United States Military has done against Iran, which is totally defeated and wants a deal - But not a deal that I would accept! Thank you for your atten",
"created_at": "2026-03-14T03:53:38.890Z",
"likes": 14302,
"topics": [
"tariff/trade",
"iran/military",
"fake news/media"
]
},
{
"id": "116224634088762061",
"text": "Kevin Hern, from the Wonderful State of Oklahoma (where I won all 77 out of 77 Counties, in 2016, 2020, and 2024!), is a Great Patriot, and FANTASTIC Congressman! A true friend of MAGA, Kevin is now r",
"created_at": "2026-03-14T00:12:55.424Z",
"likes": 7762,
"topics": [
"iran/military",
"border/immigration",
"economy/markets",
"endorsement",
"foreign policy",
"energy"
]
},
{
"id": "116224631824988888",
"text": "Trump Investment Surge: Trillions Pour Into America As Economic Revival Accelerates: https://thenevadaglobe.com/articles/trump-investment-surge-trillions-pour-into-america-as-economic-revival-accelera",
"created_at": "2026-03-14T00:12:20.884Z",
"likes": 7882,
"topics": [
"other"
]
},
{
"id": "116224630912933489",
"text": "US Olympic bobsledder surprises Trump, awards him prestigious Order of Ikkos medal: https://nypost.com/2026/03/12/us-news/trump-awarded-prestigious-order-of-ikkos-medal-by-us-olympian-bobsledder/",
"created_at": "2026-03-14T00:12:06.964Z",
"likes": 8573,
"topics": [
"iran/military"
]
},
{
"id": "116224629259359835",
"text": "Trump honors Virginia mom, farmer at White House Women's History Month event: https://wjla.com/news/local/president-donald-trump-honors-virginia-mom-farmer-white-house-womens-history-month-event-first",
"created_at": "2026-03-14T00:11:41.732Z",
"likes": 7495,
"topics": [
"other"
]
},
{
"id": "116224627869912229",
"text": "Baltimore woman honored by President Trump during Women's History Month: https://www.wbal.com/baltimore-woman-honored-by-president-trump-during-womens-history-month",
"created_at": "2026-03-14T00:11:20.531Z",
"likes": 7188,
"topics": [
"other"
]
},
{
"id": "116224518730089644",
"text": "Iran had plans of taking over the entire Middle East, and completely obliterating Israel. JUST LIKE IRAN ITSELF, THOSE PLANS ARE NOW DEAD! President DONALD J. TRUMP",
"created_at": "2026-03-13T23:43:35.190Z",
"likes": 23836,
"topics": [
"iran/military"
]
},
{
"id": "116224324444349237",
"text": "Moments ago, at my direction, the United States Central Command executed one of the most powerful bombing raids in the History of the Middle East, and totally obliterated every MILITARY target in Iran",
"created_at": "2026-03-13T22:54:10.624Z",
"likes": 29839,
"topics": [
"iran/military",
"fake news/media",
"energy"
]
},
{
"id": "116224183027304989",
"text": "It is my Great Honor to endorse America First Patriot, Jon Maples, who is running to represent the wonderful people of Florida's 87th State House District. Jon is a very successful Businessman and Civ",
"created_at": "2026-03-13T22:18:12.775Z",
"likes": 7344,
"topics": [
"iran/military",
"border/immigration",
"economy/markets",
"endorsement"
]
},
{
"id": "116224179318558161",
"text": "After meeting with Governor Gretchen Whitmer, and hearing from our GREAT Republican Candidate for the United States Senate, Mike Rogers, I approved $100 Million Dollars in Public Assistance to support",
"created_at": "2026-03-13T22:17:16.181Z",
"likes": 8705,
"topics": [
"tariff/trade",
"endorsement",
"foreign policy"
]
},
{
"id": "116223896071757407",
"text": "Thank you to Highly Respected America First Congresswoman, Stephanie Bice, of the Great State of Oklahoma, for deciding, because of her love for her Constituents, and for America, itself, to run for R",
"created_at": "2026-03-13T21:05:14.178Z",
"likes": 10539,
"topics": [
"endorsement"
]
},
{
"id": "116223780884576729",
"text": "I am pleased to announce that Matt Floca, subject to the approval of the Board of Directors, will be named the Chief Operating Officer and Executive Director, of THE TRUMP KENNEDY CENTER where, as Vic",
"created_at": "2026-03-13T20:35:56.563Z",
"likes": 9666,
"topics": [
"china",
"endorsement"
]
},
{
"id": "116223767250350057",
"text": "Maggot Hagerman, just another SLEAZEBAG writer for The Failing New York Times, insists on writing false stories about me, even though she fully knows and understands that the exact opposite of anythin",
"created_at": "2026-03-13T20:32:28.520Z",
"likes": 24557,
"topics": [
"fake news/media",
"legal/court"
]
},
{
"id": "116223220117412692",
"text": "RT: https://truthsocial.com/users/realDonaldTrump/statuses/116223216183546905",
"created_at": "2026-03-13T18:13:19.935Z",
"likes": 8058,
"topics": [
"other"
]
},
{
"id": "116223100937937927",
"text": "Two renderings of the new, highly improved, TRUMP KENNEDY CENTER!",
"created_at": "2026-03-13T17:43:01.403Z",
"likes": 10661,
"topics": [
"other"
]
},
{
"id": "116222200536303389",
"text": "Cuba confirms talks with Trump officials, raising hopes for US deal: https://www.usatoday.com/story/news/world/2026/03/13/cuba-confirms-talks-trump-economic-deal/89132765007/",
"created_at": "2026-03-13T13:54:02.360Z",
"likes": 14371,
"topics": [
"tariff/trade"
]
},
{
"id": "116222199294615751",
"text": "Retired Army general: Iran regime 'fundamentally miscalculated' Trump: https://thehill.com/policy/defense/5777128-jack-keane-iran-regime-trump-administration/",
"created_at": "2026-03-13T13:53:43.416Z",
"likes": 12103,
"topics": [
"iran/military"
]
},
{
"id": "116220000279270929",
"text": "https://truthsocial.com/@DanScavino/116207137060584916",
"created_at": "2026-03-13T04:34:29.141Z",
"likes": 11646,
"topics": [
"other"
]
},
{
"id": "116219996530067941",
"text": "We are totally destroying the terrorist regime of Iran, militarily, economically, and otherwise, yet, if you read the Failing New York Times, you would incorrectly think that we are not winning. Iran'",
"created_at": "2026-03-13T04:33:31.893Z",
"likes": 29152,
"topics": [
"iran/military",
"fake news/media",
"endorsement"
]
},
{
"id": "116219148622456831",
"text": "At Military Academy with my parents, Fred and Mary!",
"created_at": "2026-03-13T00:57:53.919Z",
"likes": 34392,
"topics": [
"iran/military"
]
},
{
"id": "116218706168761876",
"text": "The United States of America looks very much forward to hosting the FIFA World Cup. Ticket sales are \"through the roof!\" It will be the Greatest and Safest Sporting Event in American History. All Play",
"created_at": "2026-03-12T23:05:22.581Z",
"likes": 20986,
"topics": [
"iran/military"
]
},
{
"id": "116217763545289031",
"text": "Where is the Federal Reserve Chairman, Jerome \"Too Late\" Powell, today? He should be dropping Interest Rates, IMMEDIATELY, not waiting for the next meeting! President DONALD J. TRUMP",
"created_at": "2026-03-12T19:05:39.289Z",
"likes": 27384,
"topics": [
"economy/markets",
"fake news/media"
]
},
{
"id": "116216801278101254",
"text": "The Iran National Soccer Team is welcome to The World Cup, but I really don't believe it is appropriate that they be there, for their own life and safety. Thank you for your attention to this matter! ",
"created_at": "2026-03-12T15:00:56.255Z",
"likes": 31030,
"topics": [
"iran/military"
]
},
{
"id": "116216383667242591",
"text": "The United States is the largest Oil Producer in the World, by far, so when oil prices go up, we make a lot of money. BUT, of far greater interest and importance to me, as President, is stoping an evi",
"created_at": "2026-03-12T13:14:44.021Z",
"likes": 43952,
"topics": [
"tariff/trade",
"iran/military",
"energy"
]
},
{
"id": "116215762486759617",
"text": "Ex-FBI agent says he witnessed politicization of bureau, warned about improper surveillance: https://justthenews.com/government/federal-agencies/ex-fbi-official-says-he-witness-politicization-bureau-w",
"created_at": "2026-03-12T10:36:45.522Z",
"likes": 17898,
"topics": [
"iran/military",
"economy/markets"
]
},
{
"id": "116213176186506012",
"text": "Gavin Newscum's interview weeks ago was, perhaps, the most self destructive interview I've ever seen. In one fell swoop, he took himself out of even being considered as the Presidential Nominee of the",
"created_at": "2026-03-11T23:39:01.711Z",
"likes": 29298,
"topics": [
"china"
]
},
{
"id": "116213141577677778",
"text": "Marty Jackley has been a tremendous Attorney General of South Dakota, a place I love and WON BIG, six times, including Primaries, in 2016, 2020, and 2024! An America First Patriot, and true friend of ",
"created_at": "2026-03-11T23:30:13.621Z",
"likes": 17075,
"topics": [
"iran/military",
"border/immigration",
"economy/markets",
"endorsement",
"energy"
]
},
{
"id": "116213139152922657",
"text": "It is my Great Honor to endorse Colonel Laurie Buckhout, who is running to represent the incredible people of North Carolina's 1st Congressional District. Laurie is running against a Radical Left Demo",
"created_at": "2026-03-11T23:29:36.626Z",
"likes": 15635,
"topics": [
"iran/military",
"border/immigration",
"economy/markets",
"endorsement",
"energy"
]
},
{
"id": "116213110990414470",
"text": "Today I am endorsing America First Patriot, Brandon Herrera, who is running to represent the wonderful people of Texas' 23rd Congressional District. Brandon is strongly supported by many Highly Respec",
"created_at": "2026-03-11T23:22:26.934Z",
"likes": 15959,
"topics": [
"iran/military",
"border/immigration",
"economy/markets",
"endorsement",
"energy"
]
},
{
"id": "116212852948843659",
"text": "Top DOJ prosecutor says tens of thousands of noncitizens on voter rolls, dozens illegally voted: https://justthenews.com/politics-policy/elections/wedelection-bombshell-top-doj-prosecutor-says-tens-th",
"created_at": "2026-03-11T22:16:49.533Z",
"likes": 17936,
"topics": [
"iran/military",
"border/immigration"
]
},
{
"id": "116211753106602288",
"text": "I am on my way to the Great State of Ohio, which I love and WON BIG three times, to visit Thermo Fisher, a Pharmaceutical Manufacturing Company, that is investing $2 Billion Dollars in U.S. Manufactur",
"created_at": "2026-03-11T17:37:07.272Z",
"likes": 36343,
"topics": [
"tariff/trade",
"economy/markets"
]
},
{
"id": "116211737655789420",
"text": "The Republican Party's Worst \"Congressman,\" EVER, Thomas Massie, is attacking GREAT Navy Seal Hero, Ed Gallrein, who is running against him in the Primary, saying that Ed became an Independent for a p",
"created_at": "2026-03-11T17:33:11.511Z",
"likes": 20478,
"topics": [
"tariff/trade",
"iran/military",
"endorsement"
]
},
{
"id": "116211112963892984",
"text": "PUNXSUTAWNEY PHIL SEES ZERO MORE YEARS OF SUMMERS.Summers To Resign From Teaching Appointments, Relinquish University Professorship Over Epstein Ties:https://www.thecrimson.com/article/2026/2/25/summe",
"created_at": "2026-03-11T14:54:19.469Z",
"likes": 15192,
"topics": [
"other"
]
},
{
"id": "116211091235254854",
"text": "Trump targeted by four FBI code-named counterintel probes that ensnared hundreds of Americans: https://justthenews.com/government/federal-agencies/trump-targeted-four-consecutive-fbi-counterintel-prob",
"created_at": "2026-03-11T14:48:47.914Z",
"likes": 12974,
"topics": [
"economy/markets"
]
},
{
"id": "116211089985611564",
"text": "Trump right to revisit the 2020 elections: https://www.washingtontimes.com/news/2026/feb/19/trump-right-revisit-2020-elections/",
"created_at": "2026-03-11T14:48:28.844Z",
"likes": 15338,
"topics": [
"other"
]
},
{
"id": "116211088596192977",
"text": "Hillary Clinton should've heeded my 'reality Czech' to save the West: https://nypost.com/2026/02/18/opinion/hillary-clinton-shouldve-heeded-my-reality-czech-to-save-the-west/",
"created_at": "2026-03-11T14:48:07.645Z",
"likes": 11496,
"topics": [
"other"
]
},
{
"id": "116211077818747356",
"text": "Harvard should not hire this misfit!https://freebeacon.com/campus/meet-the-next-chair-of-the-harvard-history-dept-who-called-trump-narcissist-white-supremacist-habitual-liar-lunatic/",
"created_at": "2026-03-11T14:45:23.196Z",
"likes": 11151,
"topics": [
"other"
]
},
{
"id": "116210369394250268",
"text": "I predict that \"Representative\"Thomas Massie will go down as the WORST Republican Congressman in the long and fabled history of the United States Congress, even worse than Crazy Liz Chaney, Cryin' Ada",
"created_at": "2026-03-11T11:45:13.460Z",
"likes": 20948,
"topics": [
"other"
]
},
{
"id": "116210278812822198",
"text": "Clay Fuller is going to be a fantastic Congressman in representing the Great State of Georgia. Now we have to be careful and finish it off. MAKE AMERICA GREAT AGAIN!!! President DJT",
"created_at": "2026-03-11T11:22:11.300Z",
"likes": 16324,
"topics": [
"other"
]
},
{
"id": "116208498011933842",
"text": "Congratulations to Clay Fuller, of Georgia's 14th Congressional District, on getting such a high percentage of the vote with 12 Republicans running. We want to make the next vote \"TOO BIG TO RIG.\" Cla",
"created_at": "2026-03-11T03:49:18.471Z",
"likes": 19509,
"topics": [
"celebration/holiday"
]
},
{
"id": "116208389014489575",
"text": "Trump targeted by four FBI code-named counterintel probes that ensnared hundreds of Americans: https://justthenews.com/government/federal-agencies/trump-targeted-four-consecutive-fbi-counterintel-prob",
"created_at": "2026-03-11T03:21:35.302Z",
"likes": 13973,
"topics": [
"economy/markets"
]
},
{
"id": "116208344727934829",
"text": "THE SAVE AMERICA ACT is by far the most popular Bill of its kind ever put before Congress! President DJT",
"created_at": "2026-03-11T03:10:19.503Z",
"likes": 24363,
"topics": [
"other"
]
},
{
"id": "116207822892067202",
"text": "Trump targeted by four FBI code-named counterintel probes that ensnared hundreds of Americans: https://justthenews.com/government/federal-agencies/trump-targeted-four-consecutive-fbi-counterintel-prob",
"created_at": "2026-03-11T00:57:36.958Z",
"likes": 12183,
"topics": [
"economy/markets"
]
},
{
"id": "116207821606085249",
"text": "52% of US Likely Voters support Trump's decision to strike Iran: Poll: https://justthenews.com/politics-policy/polling/52-us-likely-voters-support-trumps-decision-strike-iran-poll",
"created_at": "2026-03-11T00:57:17.335Z",
"likes": 14373,
"topics": [
"iran/military"
]
},
{
"id": "116207697653886877",
"text": "The incredible people of Kentucky's 4th Congressional District, who want desperately to get rid of Thomas Massie, the Worst \"Republican\" Congressman we have had in many years, gave us a mandate to, MA",
"created_at": "2026-03-11T00:25:46.006Z",
"likes": 16205,
"topics": [
"iran/military",
"border/immigration",
"economy/markets",
"endorsement",
"energy"
]
},
{
"id": "116207676745815880",
"text": "One of the many criminals picked up in Memphis, Tennessee. He will not be allowed to kill again!",
"created_at": "2026-03-11T00:20:26.972Z",
"likes": 11612,
"topics": [
"other"
]
},
{
"id": "116206971915527868",
"text": "Just two of the many brutal criminals we have captured in Memphis, making it 50% safer than it was just two months ago — More to follow!",
"created_at": "2026-03-10T21:21:12.049Z",
"likes": 17265,
"topics": [
"other"
]
},
{
"id": "116206958726200848",
"text": "America is returning to REAL ENERGY DOMINANCE! Today I am proud to announce that America First Refining is opening the FIRST new U.S. Oil Refinery in 50 YEARS in Brownsville, Texas. THIS IS A HISTORIC",
"created_at": "2026-03-10T21:17:50.795Z",
"likes": 21471,
"topics": [
"tariff/trade",
"economy/markets",
"energy"
]
},
{
"id": "116206732840510472",
"text": "I am pleased to report that within the last few hours, we have hit, and completely destroyed, 10 inactive mine laying boats and/or ships, with more to follow! President DONALD J. TRUMP",
"created_at": "2026-03-10T20:20:24.052Z",
"likes": 25183,
"topics": [
"other"
]
},
{
"id": "116206683370194686",
"text": "If Iran has put out any mines in the Hormuz Strait, and we have no reports of them doing so, we want them removed, IMMEDIATELY! If for any reason mines were placed, and they are not removed forthwith,",
"created_at": "2026-03-10T20:07:49.233Z",
"likes": 38120,
"topics": [
"tariff/trade",
"iran/military",
"fake news/media"
]
},
{
"id": "116206575952434485",
"text": "If Iran has put out any mines in the Hormuz Strait, and we have no reports of them doing so, we want them removed, IMMEDIATELY! If for any reason mines were placed, and they are not removed forthwith,",
"created_at": "2026-03-10T19:40:30.169Z",
"likes": 3187,
"topics": [
"iran/military",
"fake news/media"
]
},
{
"id": "116206229876653286",
"text": "I'm working with Governor Gretchen Whitmer on trying to save The Great Lakes from the rather violent and destructive Asian Carp, which is rapidly taking over Lake Michigan, and all of the beautiful su",
"created_at": "2026-03-10T18:12:29.501Z",
"likes": 16989,
"topics": [
"foreign policy",
"celebration/holiday"
]
},
{
"id": "116202054617775180",
"text": "If Iran does anything that stops the flow of Oil within the Strait of Hormuz, they will be hit by the United States of America TWENTY TIMES HARDER than they have been hit thus far. Additionally, we wi",
"created_at": "2026-03-10T00:30:40.041Z",
"likes": 35923,
"topics": [
"china",
"iran/military",
"fake news/media",
"energy"
]
},
{
"id": "116202053313332968",
"text": "52% of US Likely Voters support Trump's decision to strike Iran: Poll: https://justthenews.com/politics-policy/polling/52-us-likely-voters-support-trumps-decision-strike-iran-poll",
"created_at": "2026-03-10T00:30:20.135Z",
"likes": 22403,
"topics": [
"iran/military"
]
},
{
"id": "116201913738494775",
"text": "Nolte: Cassidy 'Trump Attacked Secret Service Agent' Hutchinson Referred for Criminal Charges: https://www.breitbart.com/politics/2026/03/06/nolte-cassidy-trump-attacked-secret-service-agent-hutchinso",
"created_at": "2026-03-09T23:54:50.395Z",
"likes": 19217,
"topics": [
"other"
]
},
{
"id": "116200375013104800",
"text": "Donald's Bible: https://youtu.be/SSL7_QV4960?feature=shared",
"created_at": "2026-03-09T17:23:31.305Z",
"likes": 19174,
"topics": [
"other"
]
},
{
"id": "116200371638821370",
"text": "Kim Clement prophesying about Donald Trump, 2007:https://www.youtube.com/watch?v=eFfFtq1fljY",
"created_at": "2026-03-09T17:22:39.820Z",
"likes": 23100,
"topics": [
"other"
]
},
{
"id": "116200253375013431",
"text": "THE SAVE AMERICA ACT!1. ALL VOTERS MUST SHOW VOTER I.D. (IDENTIFICATION!).2. ALL VOTERS MUST SHOW PROOF OF CITIZENSHIP IN ORDER TO VOTE.3. NO MAIL-IN BALLOTS (EXCEPT FOR ILLNESS, DISABILITY, MILITARY,",
"created_at": "2026-03-09T16:52:35.295Z",
"likes": 34747,
"topics": [
"iran/military"
]
},
{
"id": "116200217053294630",
"text": "Many important meetings and phone calls taking place today while I am at Trump National Doral, in Miami. Additionally, I will be going to Speaker Mike Johnson's (who is doing a fantastic job!) fundrai",
"created_at": "2026-03-09T16:43:21.068Z",
"likes": 23354,
"topics": [
"tariff/trade",
"china"
]
},
{
"id": "116200028617921781",
"text": "I just spoke to Prime Minister Anthony Albanese, of Australia, concerning the Iranian National Women's Soccer Team. He's on it! Five have already been taken care of, and the rest are on their way. Som",
"created_at": "2026-03-09T15:55:25.773Z",
"likes": 25945,
"topics": [
"iran/military"
]
},
{
"id": "116199696068251039",
"text": "ASYLUM!",
"created_at": "2026-03-09T14:30:51.497Z",
"likes": 20827,
"topics": [
"other"
]
},
{
"id": "116199640636892669",
"text": "Australia is making a terrible humanitarian mistake by allowing the Iran National Woman's Soccer team to be forced back to Iran, where they will most likely be killed. Don't do it, Mr. Prime Minister,",
"created_at": "2026-03-09T14:16:45.612Z",
"likes": 49520,
"topics": [
"iran/military"
]
},
{
"id": "116199384958218035",
"text": "Great!!!FBI secretly seizes election records from Arizona's largest county as voting probe expands: https://justthenews.com/politics-policy/elections/monfbi-secretly-seizes-election-records-arizonas-l",
"created_at": "2026-03-09T13:11:44.304Z",
"likes": 19726,
"topics": [
"other"
]
},
{
"id": "116196711651701576",
"text": "It's not the Save Act, it's The Save America Act! A MUCH better, and more important, name!!! President DJT",
"created_at": "2026-03-09T01:51:52.849Z",
"likes": 35069,
"topics": [
"tariff/trade"
]
},
{
"id": "116196014942465383",
"text": "Short term oil prices, which will drop rapidly when the destruction of the Iran nuclear threat is over, is a very small price to pay for U.S.A., and World, Safety and Peace. ONLY FOOLS WOULD THINK DIF",
"created_at": "2026-03-08T22:54:41.907Z",
"likes": 39578,
"topics": [
"iran/military",
"energy"