-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathrss_latency_log.json
More file actions
1276 lines (1276 loc) · 46.1 KB
/
rss_latency_log.json
File metadata and controls
1276 lines (1276 loc) · 46.1 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
[
{
"post_id": "116263751750331124",
"pub_time": "2026-03-20T22:01:03+00:00",
"detect_time": "2026-03-21T12:35:00.503444+00:00",
"latency_sec": 52437.5,
"content_preview": "The Great State of Colorado, and a pathetic RINO District Attorney, together wit"
},
{
"post_id": "116263563453969628",
"pub_time": "2026-03-20T21:13:10+00:00",
"detect_time": "2026-03-21T12:35:00.503856+00:00",
"latency_sec": 55310.5,
"content_preview": "We are getting very close to meeting our objectives as we consider winding down "
},
{
"post_id": "116262998779773636",
"pub_time": "2026-03-20T18:49:34+00:00",
"detect_time": "2026-03-21T12:35:00.504388+00:00",
"latency_sec": 63926.5,
"content_preview": ""
},
{
"post_id": "116261847910261480",
"pub_time": "2026-03-20T13:56:53+00:00",
"detect_time": "2026-03-21T12:35:00.505480+00:00",
"latency_sec": 81487.5,
"content_preview": "I met with Hope Scheppelman and her husband Steven, of the Radical Left State of"
},
{
"post_id": "116261796648776538",
"pub_time": "2026-03-20T13:43:51+00:00",
"detect_time": "2026-03-21T12:35:00.507220+00:00",
"latency_sec": 82269.5,
"content_preview": "Without the U.S.A., NATO IS A PAPER TIGER! They didn’t want to join the fight to"
},
{
"post_id": "116261732231179804",
"pub_time": "2026-03-20T13:27:28+00:00",
"detect_time": "2026-03-21T12:35:00.508041+00:00",
"latency_sec": 83252.5,
"content_preview": "THE SAVE AMERICA ACT MUST BE PASSED BY THE SENATE. THERE IS NOTHING THAT IS MORE"
},
{
"post_id": "116261712648536578",
"pub_time": "2026-03-20T13:22:29+00:00",
"detect_time": "2026-03-21T12:35:00.509339+00:00",
"latency_sec": 83551.5,
"content_preview": "CONGRESS, PASS THE FARM BILL, NOW! President DJT"
},
{
"post_id": "116257915423728314",
"pub_time": "2026-03-19T21:16:48+00:00",
"detect_time": "2026-03-21T12:35:00.510557+00:00",
"latency_sec": 141492.5,
"content_preview": "They Threw Everything They Had at Donald Trump. He’s Still Standing. America Is "
},
{
"post_id": "116257827130389641",
"pub_time": "2026-03-19T20:54:21+00:00",
"detect_time": "2026-03-21T12:35:00.511832+00:00",
"latency_sec": 142839.5,
"content_preview": "GAVIN M. WAX: Trump Quietly Set Up Future Of American Manufacturing With Stroke "
},
{
"post_id": "116257826369374629",
"pub_time": "2026-03-19T20:54:09+00:00",
"detect_time": "2026-03-21T12:35:00.513026+00:00",
"latency_sec": 142851.5,
"content_preview": "You Should Be Terrified by What JPMorgan Did to Trump:"
},
{
"post_id": "116257824115129532",
"pub_time": "2026-03-19T20:53:35+00:00",
"detect_time": "2026-03-21T12:35:00.514238+00:00",
"latency_sec": 142885.5,
"content_preview": "Ex-police chief says Trump told him 'thank goodness you're stopping' Epstein in "
},
{
"post_id": "116257685258900412",
"pub_time": "2026-03-19T20:18:16+00:00",
"detect_time": "2026-03-21T12:35:00.515480+00:00",
"latency_sec": 145004.5,
"content_preview": ""
},
{
"post_id": "116256226651705916",
"pub_time": "2026-03-19T14:07:19+00:00",
"detect_time": "2026-03-21T12:35:00.516880+00:00",
"latency_sec": 167261.5,
"content_preview": "Passing The Save America Act Is Indispensable To Preserve Representative Democra"
},
{
"post_id": "116256225070534165",
"pub_time": "2026-03-19T14:06:55+00:00",
"detect_time": "2026-03-21T12:35:00.518255+00:00",
"latency_sec": 167285.5,
"content_preview": "Michael Whatley is so Great! Running against a really bad former Governor who se"
},
{
"post_id": "116256221612685192",
"pub_time": "2026-03-19T14:06:02+00:00",
"detect_time": "2026-03-21T12:35:00.519755+00:00",
"latency_sec": 167338.5,
"content_preview": "Britain had meltdown when China hacked voter files, but U.S. intel kept it secre"
},
{
"post_id": "116256220292711449",
"pub_time": "2026-03-19T14:05:42+00:00",
"detect_time": "2026-03-21T12:35:00.521023+00:00",
"latency_sec": 167358.5,
"content_preview": "President Trump Has Prevented Another Holocaust:"
},
{
"post_id": "116256219531850396",
"pub_time": "2026-03-19T14:05:31+00:00",
"detect_time": "2026-03-21T12:35:00.522229+00:00",
"latency_sec": 167369.5,
"content_preview": "Asia-Pacific Allies Ink $56 Billion in Deals with US Companies at Tokyo Forum, B"
},
{
"post_id": "116256218451397252",
"pub_time": "2026-03-19T14:05:14+00:00",
"detect_time": "2026-03-21T12:35:00.523858+00:00",
"latency_sec": 167386.5,
"content_preview": "The Left Is Petrified That Trump Will Succeed in Iran and Expose Them As Mind-Tw"
},
{
"post_id": "116256217083523012",
"pub_time": "2026-03-19T14:04:53+00:00",
"detect_time": "2026-03-21T12:35:00.524892+00:00",
"latency_sec": 167407.5,
"content_preview": "Khamenei’s Unforced Errors Proved Fatal:"
},
{
"post_id": "116256215639879243",
"pub_time": "2026-03-19T14:04:31+00:00",
"detect_time": "2026-03-21T12:35:00.526275+00:00",
"latency_sec": 167429.5,
"content_preview": "MORNING GLORY: Why Trump must finish what he started with Iran’s regime:"
},
{
"post_id": "116256214426681641",
"pub_time": "2026-03-19T14:04:13+00:00",
"detect_time": "2026-03-21T12:35:00.527598+00:00",
"latency_sec": 167447.5,
"content_preview": "From Douglas MacKinnon: “This is a photo from yesterday on the drive from LA to "
},
{
"post_id": "116256204305007898",
"pub_time": "2026-03-19T14:01:38+00:00",
"detect_time": "2026-03-21T12:35:00.528985+00:00",
"latency_sec": 167602.5,
"content_preview": "Jon McNaughton working on The Forgotten Man in The Eisenhower Executive Office B"
},
{
"post_id": "116256171120186590",
"pub_time": "2026-03-19T13:53:12+00:00",
"detect_time": "2026-03-21T12:35:00.530239+00:00",
"latency_sec": 168108.5,
"content_preview": ""
},
{
"post_id": "116255809955960965",
"pub_time": "2026-03-19T12:21:21+00:00",
"detect_time": "2026-03-21T12:35:00.531481+00:00",
"latency_sec": 173619.5,
"content_preview": "Media, lawmakers downplay threat from the Iran regime, but evidence shows the tr"
},
{
"post_id": "116253527175738987",
"pub_time": "2026-03-19T02:40:48+00:00",
"detect_time": "2026-03-21T12:35:00.532787+00:00",
"latency_sec": 208452.5,
"content_preview": "Graham tears into European allies over Strait of Hormuz reluctance:"
},
{
"post_id": "116253388303392718",
"pub_time": "2026-03-19T02:05:29+00:00",
"detect_time": "2026-03-21T12:35:00.534069+00:00",
"latency_sec": 210571.5,
"content_preview": "Israel, out of anger for what has taken place in the Middle East, has violently "
},
{
"post_id": "116252861649863261",
"pub_time": "2026-03-18T23:51:33+00:00",
"detect_time": "2026-03-21T12:35:00.535456+00:00",
"latency_sec": 218607.5,
"content_preview": "FREE TINA PETERS, A 73-YEAR-OLD WOMAN, WITH CANCER, GIVEN A NINE YEAR DEATH SENT"
},
{
"post_id": "116252749732465975",
"pub_time": "2026-03-18T23:23:06+00:00",
"detect_time": "2026-03-21T12:35:00.536726+00:00",
"latency_sec": 220314.5,
"content_preview": ""
},
{
"post_id": "116252723144189442",
"pub_time": "2026-03-18T23:16:20+00:00",
"detect_time": "2026-03-21T12:35:00.538002+00:00",
"latency_sec": 220720.5,
"content_preview": ""
},
{
"post_id": "116252627848707423",
"pub_time": "2026-03-18T22:52:06+00:00",
"detect_time": "2026-03-21T12:35:00.539290+00:00",
"latency_sec": 222174.5,
"content_preview": ""
},
{
"post_id": "116250298165333422",
"pub_time": "2026-03-18T12:59:38+00:00",
"detect_time": "2026-03-21T12:35:00.540614+00:00",
"latency_sec": 257722.5,
"content_preview": "RT: https://truthsocial.com/users/realDonaldTrump/statuses/116250297283069512"
},
{
"post_id": "116250297283069512",
"pub_time": "2026-03-18T12:59:24+00:00",
"detect_time": "2026-03-21T12:35:00.541985+00:00",
"latency_sec": 257736.5,
"content_preview": ""
},
{
"post_id": "116250236426568567",
"pub_time": "2026-03-18T12:43:56+00:00",
"detect_time": "2026-03-21T12:35:00.543267+00:00",
"latency_sec": 258664.5,
"content_preview": "US allies need to get a grip – step up and help open the Strait of Hormuz:"
},
{
"post_id": "116250207334512491",
"pub_time": "2026-03-18T12:36:32+00:00",
"detect_time": "2026-03-21T12:35:00.544700+00:00",
"latency_sec": 259108.5,
"content_preview": ""
},
{
"post_id": "116250206644518855",
"pub_time": "2026-03-18T12:36:21+00:00",
"detect_time": "2026-03-21T12:35:00.546145+00:00",
"latency_sec": 259119.5,
"content_preview": ""
},
{
"post_id": "116250205888594298",
"pub_time": "2026-03-18T12:36:10+00:00",
"detect_time": "2026-03-21T12:35:00.547498+00:00",
"latency_sec": 259130.5,
"content_preview": ""
},
{
"post_id": "116250204937254737",
"pub_time": "2026-03-18T12:35:55+00:00",
"detect_time": "2026-03-21T12:35:00.549022+00:00",
"latency_sec": 259145.5,
"content_preview": ""
},
{
"post_id": "116250203405172359",
"pub_time": "2026-03-18T12:35:32+00:00",
"detect_time": "2026-03-21T12:35:00.550354+00:00",
"latency_sec": 259168.6,
"content_preview": "I wonder what would happen if we “finished off” what’s left of the Iranian Terro"
},
{
"post_id": "116250143939100110",
"pub_time": "2026-03-18T12:20:24+00:00",
"detect_time": "2026-03-21T12:35:00.551772+00:00",
"latency_sec": 260076.6,
"content_preview": "For all of the Fake News out there, it’s called THE SAVE AMERICA ACT, not the SA"
},
{
"post_id": "116250115423447200",
"pub_time": "2026-03-18T12:13:09+00:00",
"detect_time": "2026-03-21T12:35:00.553328+00:00",
"latency_sec": 260511.6,
"content_preview": "When is “Too Late” Powell lowering INTEREST RATES? President DJT"
},
{
"post_id": "116250068528701090",
"pub_time": "2026-03-18T12:01:14+00:00",
"detect_time": "2026-03-21T12:35:00.554998+00:00",
"latency_sec": 261226.6,
"content_preview": "Remember, for all of those absolute “fools” out there, Iran is considered, by ev"
},
{
"post_id": "116249915914904632",
"pub_time": "2026-03-18T11:22:25+00:00",
"detect_time": "2026-03-21T12:35:00.556662+00:00",
"latency_sec": 263555.6,
"content_preview": "I wonder what would happen if we “finished off” what’s left of the Iranian Terro"
},
{
"post_id": "116249873076369025",
"pub_time": "2026-03-18T11:11:31+00:00",
"detect_time": "2026-03-21T12:35:00.558632+00:00",
"latency_sec": 264209.6,
"content_preview": "The Democrat’s purposeful DHS SHUTDOWN is causing chaos at the airports. These L"
},
{
"post_id": "116249447962443816",
"pub_time": "2026-03-18T09:23:25+00:00",
"detect_time": "2026-03-21T12:35:00.559973+00:00",
"latency_sec": 270695.6,
"content_preview": "Britain had meltdown when China hacked voter files, but U.S. intel kept it secre"
},
{
"post_id": "116249435067996399",
"pub_time": "2026-03-18T09:20:08+00:00",
"detect_time": "2026-03-21T12:35:00.561362+00:00",
"latency_sec": 270892.6,
"content_preview": "Trump steamrolls over California’s anti-fossil fuel crusade to get oil flowing f"
},
{
"post_id": "116247928951810982",
"pub_time": "2026-03-18T02:57:06+00:00",
"detect_time": "2026-03-21T12:35:00.562843+00:00",
"latency_sec": 293874.6,
"content_preview": "STATEHOOD!!! President DJT"
},
{
"post_id": "116247522086271962",
"pub_time": "2026-03-18T01:13:38+00:00",
"detect_time": "2026-03-21T12:35:00.564225+00:00",
"latency_sec": 300082.6,
"content_preview": ""
},
{
"post_id": "116245182325726375",
"pub_time": "2026-03-17T15:18:36+00:00",
"detect_time": "2026-03-21T12:35:00.565763+00:00",
"latency_sec": 335784.6,
"content_preview": "The United States has been informed by most of our NATO “Allies” that they don’t"
},
{
"post_id": "116244486426312346",
"pub_time": "2026-03-17T12:21:38+00:00",
"detect_time": "2026-03-21T12:35:00.567304+00:00",
"latency_sec": 346402.6,
"content_preview": "The Save America Act is one of the most IMPORTANT & CONSEQUENTIAL pieces of "
},
{
"post_id": "116243698779273101",
"pub_time": "2026-03-17T09:01:19+00:00",
"detect_time": "2026-03-21T12:35:00.568828+00:00",
"latency_sec": 358421.6,
"content_preview": "The US-Israeli strategy against Iran is working. Here is why:"
},
{
"post_id": "116242335330134909",
"pub_time": "2026-03-17T03:14:34+00:00",
"detect_time": "2026-03-21T12:35:00.570219+00:00",
"latency_sec": 379226.6,
"content_preview": "Wow! Venezuela defeated Italy tonight, 4-2, in the WBC (Baseball!) Semifinal. Th"
},
{
"post_id": "116242184760039996",
"pub_time": "2026-03-17T02:36:17+00:00",
"detect_time": "2026-03-21T12:35:00.571729+00:00",
"latency_sec": 381523.6,
"content_preview": ""
},
{
"post_id": "116241961295404159",
"pub_time": "2026-03-17T01:39:27+00:00",
"detect_time": "2026-03-21T12:35:00.573283+00:00",
"latency_sec": 384933.6,
"content_preview": "“Hang Out with Sean Hannity” is a GREAT New Podcast, Streaming Now!!! Sean is a"
},
{
"post_id": "116241562639922898",
"pub_time": "2026-03-16T23:58:04+00:00",
"detect_time": "2026-03-21T12:35:00.574915+00:00",
"latency_sec": 391016.6,
"content_preview": "Prez Trump Draws Massive Crowd Reaction At CFP Title Game In Miami:"
},
{
"post_id": "116241561679397928",
"pub_time": "2026-03-16T23:57:49+00:00",
"detect_time": "2026-03-21T12:35:00.576432+00:00",
"latency_sec": 391031.6,
"content_preview": "WATCH: Trump Cheered During National Anthem at College Football National Champio"
},
{
"post_id": "116241559915911661",
"pub_time": "2026-03-16T23:57:23+00:00",
"detect_time": "2026-03-21T12:35:00.578088+00:00",
"latency_sec": 391057.6,
"content_preview": "WATCH: Crowd Goes WILD for Trump During National Anthem at the College Football "
},
{
"post_id": "116241557993544867",
"pub_time": "2026-03-16T23:56:53+00:00",
"detect_time": "2026-03-21T12:35:00.579665+00:00",
"latency_sec": 391087.6,
"content_preview": "Jack Smith targeted then-House Speaker McCarthy’s private phone records in J6 pr"
},
{
"post_id": "116241557064413752",
"pub_time": "2026-03-16T23:56:39+00:00",
"detect_time": "2026-03-21T12:35:00.581263+00:00",
"latency_sec": 391101.6,
"content_preview": "Jack Smith meeting with then-FBI Director Wray recorded as ‘significant case not"
},
{
"post_id": "116241553340894634",
"pub_time": "2026-03-16T23:55:42+00:00",
"detect_time": "2026-03-21T12:35:00.582875+00:00",
"latency_sec": 391158.6,
"content_preview": "NATO long warned of Russian, Chinese threats to Greenland, now rejects Trump’s o"
},
{
"post_id": "116241548802837887",
"pub_time": "2026-03-16T23:54:33+00:00",
"detect_time": "2026-03-21T12:35:00.584442+00:00",
"latency_sec": 391227.6,
"content_preview": "Clay County Sheriff Michelle Cook honored by President Trump at Women’s History "
},
{
"post_id": "116239674084445278",
"pub_time": "2026-03-16T15:57:47+00:00",
"detect_time": "2026-03-21T12:35:00.585958+00:00",
"latency_sec": 419833.6,
"content_preview": "Susie Wiles is an incredible Chief of Staff, a great person, and one of the stro"
},
{
"post_id": "116239050427498715",
"pub_time": "2026-03-16T13:19:11+00:00",
"detect_time": "2026-03-21T12:35:00.587959+00:00",
"latency_sec": 429349.6,
"content_preview": "News Conference today, prior to Trump Kennedy Center Board Meeting. Thank you!"
},
{
"post_id": "116239040439932874",
"pub_time": "2026-03-16T13:16:38+00:00",
"detect_time": "2026-03-21T12:35:00.589226+00:00",
"latency_sec": 429502.6,
"content_preview": "The crazed Democrats are not allowing TSA Agents to get paid. The deal was made "
},
{
"post_id": "116238791857146568",
"pub_time": "2026-03-16T12:13:25+00:00",
"detect_time": "2026-03-21T12:35:00.591743+00:00",
"latency_sec": 433295.6,
"content_preview": ""
},
{
"post_id": "116238790930991351",
"pub_time": "2026-03-16T12:13:11+00:00",
"detect_time": "2026-03-21T12:35:00.593359+00:00",
"latency_sec": 433309.6,
"content_preview": ""
},
{
"post_id": "116238700372346046",
"pub_time": "2026-03-16T11:50:09+00:00",
"detect_time": "2026-03-21T12:35:00.595477+00:00",
"latency_sec": 434691.6,
"content_preview": "Michael Whatley is so Great! Running against a really bad former Governor who se"
},
{
"post_id": "116236850873003597",
"pub_time": "2026-03-16T03:59:48+00:00",
"detect_time": "2026-03-21T12:35:00.597104+00:00",
"latency_sec": 462912.6,
"content_preview": ""
},
{
"post_id": "116236561191626050",
"pub_time": "2026-03-16T02:46:08+00:00",
"detect_time": "2026-03-21T12:35:00.598688+00:00",
"latency_sec": 467332.6,
"content_preview": "The Courts treat Republicans, and me, so unfairly, always seeming to protect tho"
},
{
"post_id": "116236559151421767",
"pub_time": "2026-03-16T02:45:37+00:00",
"detect_time": "2026-03-21T12:35:00.601201+00:00",
"latency_sec": 467363.6,
"content_preview": "The decision that mattered most to me was TARIFFS! The Court knew where I stood,"
},
{
"post_id": "116236498017197393",
"pub_time": "2026-03-16T02:30:04+00:00",
"detect_time": "2026-03-21T12:35:00.603069+00:00",
"latency_sec": 468296.6,
"content_preview": "Mark Levin, a truly Great American Patriot, is somewhat under siege by other peo"
},
{
"post_id": "116235861005528220",
"pub_time": "2026-03-15T23:48:04+00:00",
"detect_time": "2026-03-21T12:35:00.604803+00:00",
"latency_sec": 478016.6,
"content_preview": "Iran has long been known as a Master of Media Manipulation and Public Relations."
},
{
"post_id": "116229166794959253",
"pub_time": "2026-03-14T19:25:39+00:00",
"detect_time": "2026-03-21T12:35:00.606679+00:00",
"latency_sec": 580161.6,
"content_preview": "McLaughlin: Strong Majority Backs Trump in Stopping Iran's Nuclear Ambitions:"
},
{
"post_id": "116229058692001771",
"pub_time": "2026-03-14T18:58:09+00:00",
"detect_time": "2026-03-21T12:35:00.607752+00:00",
"latency_sec": 581811.6,
"content_preview": "The United States of America has beaten and completely decimated Iran, both Mili"
},
{
"post_id": "116228130264134892",
"pub_time": "2026-03-14T15:02:02+00:00",
"detect_time": "2026-03-21T12:35:00.609542+00:00",
"latency_sec": 595978.6,
"content_preview": ""
},
{
"post_id": "116227904143399817",
"pub_time": "2026-03-14T14:04:32+00:00",
"detect_time": "2026-03-21T12:35:00.611191+00:00",
"latency_sec": 599428.6,
"content_preview": "Many Countries, especially those who are affected by Iran’s attempted closure of"
},
{
"post_id": "116227789768118115",
"pub_time": "2026-03-14T13:35:27+00:00",
"detect_time": "2026-03-21T12:35:00.613100+00:00",
"latency_sec": 601173.6,
"content_preview": "Yet again, an intentionally misleading headline by the Fake News Media about the"
},
{
"post_id": "116227449614232103",
"pub_time": "2026-03-14T12:08:56+00:00",
"detect_time": "2026-03-21T12:35:00.615379+00:00",
"latency_sec": 606364.6,
"content_preview": "Thank you to Johnny Jones and all of our GREAT TSA Agents who are going to work "
},
{
"post_id": "116225502010036899",
"pub_time": "2026-03-14T03:53:38+00:00",
"detect_time": "2026-03-21T12:35:00.617050+00:00",
"latency_sec": 636082.6,
"content_preview": "The Fake News Media hates to report how well the United States Military has done"
},
{
"post_id": "116224969922841857",
"pub_time": "2026-03-14T01:38:19+00:00",
"detect_time": "2026-03-21T12:35:00.618903+00:00",
"latency_sec": 644201.6,
"content_preview": "RT @realDonaldTrump"
},
{
"post_id": "116224969784331828",
"pub_time": "2026-03-14T01:38:17+00:00",
"detect_time": "2026-03-21T12:35:00.620222+00:00",
"latency_sec": 644203.6,
"content_preview": "RT @realDonaldTrumpIran had plans of taking over the entire Middle East, and com"
},
{
"post_id": "116224969438347868",
"pub_time": "2026-03-14T01:38:12+00:00",
"detect_time": "2026-03-21T12:35:00.622056+00:00",
"latency_sec": 644208.6,
"content_preview": "RT @realDonaldTrumpMoments ago, at my direction, the United States Central Comma"
},
{
"post_id": "116224927432061954",
"pub_time": "2026-03-14T01:27:31+00:00",
"detect_time": "2026-03-21T12:35:00.624572+00:00",
"latency_sec": 644849.6,
"content_preview": "RT @jmclghlnStrong Majority backs @realDonaldTrump stopping Iran from getting Nu"
},
{
"post_id": "116224905719469197",
"pub_time": "2026-03-14T01:22:00+00:00",
"detect_time": "2026-03-21T12:35:00.625779+00:00",
"latency_sec": 645180.6,
"content_preview": ""
},
{
"post_id": "116224689822209648",
"pub_time": "2026-03-14T00:27:05+00:00",
"detect_time": "2026-03-21T12:35:00.627571+00:00",
"latency_sec": 648475.6,
"content_preview": "RT @realDonaldTrumpIran had plans of taking over the entire Middle East, and com"
},
{
"post_id": "116224689504709938",
"pub_time": "2026-03-14T00:27:01+00:00",
"detect_time": "2026-03-21T12:35:00.629499+00:00",
"latency_sec": 648479.6,
"content_preview": "RT @realDonaldTrumpMoments ago, at my direction, the United States Central Comma"
},
{
"post_id": "116224689141094171",
"pub_time": "2026-03-14T00:26:55+00:00",
"detect_time": "2026-03-21T12:35:00.633059+00:00",
"latency_sec": 648485.6,
"content_preview": ""
},
{
"post_id": "116224679946844145",
"pub_time": "2026-03-14T00:24:35+00:00",
"detect_time": "2026-03-21T12:35:00.634851+00:00",
"latency_sec": 648625.6,
"content_preview": "RT @realDonaldTrumpIran had plans of taking over the entire Middle East, and com"
},
{
"post_id": "116224679791927248",
"pub_time": "2026-03-14T00:24:32+00:00",
"detect_time": "2026-03-21T12:35:00.636762+00:00",
"latency_sec": 648628.6,
"content_preview": "RT @realDonaldTrumpMoments ago, at my direction, the United States Central Comma"
},
{
"post_id": "116224678781425626",
"pub_time": "2026-03-14T00:24:17+00:00",
"detect_time": "2026-03-21T12:35:00.639305+00:00",
"latency_sec": 648643.6,
"content_preview": ""
},
{
"post_id": "116224677710108561",
"pub_time": "2026-03-14T00:24:01+00:00",
"detect_time": "2026-03-21T12:35:00.640533+00:00",
"latency_sec": 648659.6,
"content_preview": ""
},
{
"post_id": "116224645615624276",
"pub_time": "2026-03-14T00:15:51+00:00",
"detect_time": "2026-03-21T12:35:00.642393+00:00",
"latency_sec": 649149.6,
"content_preview": ""
},
{
"post_id": "116224634088762061",
"pub_time": "2026-03-14T00:12:55+00:00",
"detect_time": "2026-03-21T12:35:00.644299+00:00",
"latency_sec": 649325.6,
"content_preview": "Kevin Hern, from the Wonderful State of Oklahoma (where I won all 77 out of 77 C"
},
{
"post_id": "116224631824988888",
"pub_time": "2026-03-14T00:12:20+00:00",
"detect_time": "2026-03-21T12:35:00.646355+00:00",
"latency_sec": 649360.6,
"content_preview": "Trump Investment Surge: Trillions Pour Into America As Economic Revival Accelera"
},
{
"post_id": "116224630912933489",
"pub_time": "2026-03-14T00:12:06+00:00",
"detect_time": "2026-03-21T12:35:00.648112+00:00",
"latency_sec": 649374.6,
"content_preview": "US Olympic bobsledder surprises Trump, awards him prestigious Order of Ikkos med"
},
{
"post_id": "116224629259359835",
"pub_time": "2026-03-14T00:11:41+00:00",
"detect_time": "2026-03-21T12:35:00.650025+00:00",
"latency_sec": 649399.7,
"content_preview": "Trump honors Virginia mom, farmer at White House Women's History Month event:"
},
{
"post_id": "116224627869912229",
"pub_time": "2026-03-14T00:11:20+00:00",
"detect_time": "2026-03-21T12:35:00.651908+00:00",
"latency_sec": 649420.7,
"content_preview": "Baltimore woman honored by President Trump during Women’s History Month:"
},
{
"post_id": "116224518730089644",
"pub_time": "2026-03-13T23:43:35+00:00",
"detect_time": "2026-03-21T12:35:00.653962+00:00",
"latency_sec": 651085.7,
"content_preview": "Iran had plans of taking over the entire Middle East, and completely obliteratin"
},
{
"post_id": "116224324444349237",
"pub_time": "2026-03-13T22:54:10+00:00",
"detect_time": "2026-03-21T12:35:00.655909+00:00",
"latency_sec": 654050.7,
"content_preview": "Moments ago, at my direction, the United States Central Command executed one of "
},
{
"post_id": "116224183027304989",
"pub_time": "2026-03-13T22:18:12+00:00",
"detect_time": "2026-03-21T12:35:00.658794+00:00",
"latency_sec": 656208.7,
"content_preview": "It is my Great Honor to endorse America First Patriot, Jon Maples, who is runnin"
},
{
"post_id": "116224179318558161",
"pub_time": "2026-03-13T22:17:16+00:00",
"detect_time": "2026-03-21T12:35:00.660193+00:00",
"latency_sec": 656264.7,
"content_preview": "After meeting with Governor Gretchen Whitmer, and hearing from our GREAT Republi"
},
{
"post_id": "116267892671497457",
"pub_time": "2026-03-21T15:34:09+00:00",
"detect_time": "2026-03-21T15:35:23.988986+00:00",
"latency_sec": 75.0,
"content_preview": "If the Radical Left Democrats don’t immediately sign an agreement to let our Cou"
},
{
"post_id": "116268200625887787",
"pub_time": "2026-03-21T16:52:28+00:00",
"detect_time": "2026-03-21T16:55:15.939148+00:00",
"latency_sec": 167.9,
"content_preview": "Highly Respected America First Congresswoman, Julia Letlow, of the wonderful Sta"
},
{
"post_id": "116268334535345382",
"pub_time": "2026-03-21T17:26:31+00:00",
"detect_time": "2026-03-21T17:30:39.035072+00:00",
"latency_sec": 248.0,
"content_preview": "Robert Mueller just died. Good, I’m glad he’s dead. He can no longer hurt innoce"
},
{
"post_id": "116268396341038197",
"pub_time": "2026-03-21T17:42:14+00:00",
"detect_time": "2026-03-21T17:45:18.427878+00:00",
"latency_sec": 184.4,
"content_preview": "The Radical Left Democrats have hurt so many people with their vicious and uncar"
},
{
"post_id": "116268706178346879",
"pub_time": "2026-03-21T19:01:02+00:00",
"detect_time": "2026-03-21T19:05:10.947229+00:00",
"latency_sec": 248.9,
"content_preview": "In the early days of Mar-a-Lago!"
},
{
"post_id": "116269463539535135",
"pub_time": "2026-03-21T22:13:38+00:00",
"detect_time": "2026-03-21T22:15:16.327600+00:00",
"latency_sec": 98.3,
"content_preview": "The Democrats want to give our Country away to the illegals who they allowed to "
},
{
"post_id": "116272810363139207",
"pub_time": "2026-03-22T12:24:47+00:00",
"detect_time": "2026-03-22T13:14:09.380956+00:00",
"latency_sec": 2962.4,
"content_preview": "Now with the death of Iran, the greatest enemy America has is the Radical Left, "
},
{
"post_id": "116272781567092047",
"pub_time": "2026-03-22T12:17:27+00:00",
"detect_time": "2026-03-22T13:14:09.416651+00:00",
"latency_sec": 3402.4,
"content_preview": "https://truthsocial.com/users/CrazyCatRescuer/statuses/116268355575900202"
},
{
"post_id": "116272771861671364",
"pub_time": "2026-03-22T12:14:59+00:00",
"detect_time": "2026-03-22T13:14:09.420576+00:00",
"latency_sec": 3550.4,
"content_preview": "https://truthsocial.com/@IStandWithTrump47/116269851029760378"
},
{
"post_id": "116272769184615047",
"pub_time": "2026-03-22T12:14:18+00:00",
"detect_time": "2026-03-22T13:14:09.424668+00:00",
"latency_sec": 3591.4,
"content_preview": "https://truthsocial.com/@IStandWithTrump47/116272413318941729"
},
{
"post_id": "116272764873568314",
"pub_time": "2026-03-22T12:13:12+00:00",
"detect_time": "2026-03-22T13:14:09.428999+00:00",
"latency_sec": 3657.4,
"content_preview": "https://truthsocial.com/@IStandWithTrump47/116164006155671847"
},
{
"post_id": "116272758840855213",
"pub_time": "2026-03-22T12:11:40+00:00",
"detect_time": "2026-03-22T13:14:09.433505+00:00",
"latency_sec": 3749.4,
"content_preview": "RT @IStandWithTrump47"
},
{
"post_id": "116272718379902051",
"pub_time": "2026-03-22T12:01:23+00:00",
"detect_time": "2026-03-22T13:14:09.437035+00:00",
"latency_sec": 4366.4,
"content_preview": "RT @realDonaldTrumpThe Radical Left Democrats have hurt so many people with thei"
},
{
"post_id": "116272717021267123",
"pub_time": "2026-03-22T12:01:02+00:00",
"detect_time": "2026-03-22T13:14:09.439510+00:00",
"latency_sec": 4387.4,
"content_preview": "RT @realDonaldTrumpThe Democrats want to give our Country away to the illegals w"
},
{
"post_id": "116272713025328785",
"pub_time": "2026-03-22T12:00:01+00:00",
"detect_time": "2026-03-22T13:14:09.448098+00:00",
"latency_sec": 4448.4,
"content_preview": "On Monday, ICE will be going to airports to help our wonderful TSA Agents who ha"
},
{
"post_id": "116270371600659894",
"pub_time": "2026-03-22T02:04:34+00:00",
"detect_time": "2026-03-22T13:14:09.452668+00:00",
"latency_sec": 40175.5,
"content_preview": "Tina Peters, a 73-year-old woman with cancer, was given a nine year jail sentenc"
},
{
"post_id": "116269822349947644",
"pub_time": "2026-03-21T23:44:53+00:00",
"detect_time": "2026-03-22T13:14:09.459355+00:00",
"latency_sec": 48556.5,
"content_preview": "If Iran doesn’t FULLY OPEN, WITHOUT THREAT, the Strait of Hormuz, within 48 HOUR"
},
{
"post_id": "116269555618597105",
"pub_time": "2026-03-21T22:37:03+00:00",
"detect_time": "2026-03-22T13:14:09.464939+00:00",
"latency_sec": 52626.5,
"content_preview": "The United States has blown Iran off of the map, and yet their lightweight analy"
},
{
"post_id": "116268359334496973",
"pub_time": "2026-03-21T17:32:49+00:00",
"detect_time": "2026-03-22T13:14:09.469613+00:00",
"latency_sec": 70880.5,
"content_preview": ""
},
{
"post_id": "116273083861419785",
"pub_time": "2026-03-22T13:34:20+00:00",
"detect_time": "2026-03-22T13:35:31.482809+00:00",
"latency_sec": 71.5,
"content_preview": "THE LIES OF ROBERT MUELLER AND HIS CRIMINAL GANG:"
},
{
"post_id": "116273082320286134",
"pub_time": "2026-03-22T13:33:56+00:00",
"detect_time": "2026-03-22T13:35:31.492216+00:00",
"latency_sec": 95.5,
"content_preview": "SAVE America Act Hits the Achilles Heel of Democrats’ Fraud Scheme:"
},
{
"post_id": "116273130324592463",
"pub_time": "2026-03-22T13:46:09+00:00",
"detect_time": "2026-03-22T13:50:16.441402+00:00",
"latency_sec": 247.4,
"content_preview": "RT: https://truthsocial.com/users/realDonaldTrump/statuses/116273127672345044"
},
{
"post_id": "116273127672345044",
"pub_time": "2026-03-22T13:45:28+00:00",
"detect_time": "2026-03-22T13:50:16.450856+00:00",
"latency_sec": 288.5,
"content_preview": ""
},
{
"post_id": "116273344803042793",
"pub_time": "2026-03-22T14:40:41+00:00",
"detect_time": "2026-03-22T14:45:36.829796+00:00",
"latency_sec": 295.8,
"content_preview": "Schumer got “discombobulated” in the Senate yesterday, and said, “WE MUST FUND I"
},
{
"post_id": "116273343074887409",
"pub_time": "2026-03-22T14:40:15+00:00",
"detect_time": "2026-03-22T14:46:07.412649+00:00",
"latency_sec": 352.4,
"content_preview": "The Democrat running in Texas, James Talarico, turns out to be a FRAUD! It showe"
},
{
"post_id": "116273404107454540",
"pub_time": "2026-03-22T14:55:46+00:00",
"detect_time": "2026-03-22T15:00:20.307137+00:00",
"latency_sec": 274.3,
"content_preview": ""
},
{
"post_id": "116275668825285445",
"pub_time": "2026-03-23T00:31:43+00:00",
"detect_time": "2026-03-23T00:35:13.695747+00:00",
"latency_sec": 210.7,
"content_preview": "I don’t think we should make any deal with the Crazy, Country Destroying, Radica"
},
{
"post_id": "116276442445755599",
"pub_time": "2026-03-23T03:48:28+00:00",
"detect_time": "2026-03-23T03:50:19.112727+00:00",
"latency_sec": 111.1,
"content_preview": "PEACE THROUGH STRENGTH, TO PUT IT MILDLY!!!"
},
{
"post_id": "116276442445755599",
"pub_time": "2026-03-23T03:48:28+00:00",
"detect_time": "2026-03-23T09:49:40.402039+00:00",
"latency_sec": 21672.4,
"content_preview": "PEACE THROUGH STRENGTH, TO PUT IT MILDLY!!!"
},
{
"post_id": "116278159912794855",
"pub_time": "2026-03-23T11:05:14+00:00",
"detect_time": "2026-03-23T11:10:19.762584+00:00",
"latency_sec": 305.8,
"content_preview": "I AM PLEASE TO REPORT THAT THE UNITED STATES OF AMERICA, AND THE COUNTRY OF IRAN"
},
{
"post_id": "116278232362967212",
"pub_time": "2026-03-23T11:23:40+00:00",
"detect_time": "2026-03-23T11:25:34.623828+00:00",
"latency_sec": 114.6,
"content_preview": "I AM PLEASED TO REPORT THAT THE UNITED STATES OF AMERICA, AND THE COUNTRY OF IRA"
},
{
"post_id": "116278600245530358",
"pub_time": "2026-03-23T12:57:13+00:00",
"detect_time": "2026-03-23T13:00:06.968723+00:00",
"latency_sec": 174.0,
"content_preview": "I am a BIG proponent of ICE wearing masks as they search for, and are forced to "
},
{
"post_id": "116278886833581746",
"pub_time": "2026-03-23T14:10:06+00:00",
"detect_time": "2026-03-23T14:10:17.018713+00:00",
"latency_sec": 11.0,
"content_preview": "Trump administration cancels $109M in environmentally focused transportation gra"
},
{
"post_id": "116278885275457312",
"pub_time": "2026-03-23T14:09:42+00:00",
"detect_time": "2026-03-23T14:10:17.028262+00:00",
"latency_sec": 35.0,
"content_preview": "Questions Grow as Lt. Michael Byrd, Who Shot Ashli Babbitt on Jan. 6, Operates a"
},
{
"post_id": "116278883659138389",
"pub_time": "2026-03-23T14:09:18+00:00",
"detect_time": "2026-03-23T14:10:17.033772+00:00",
"latency_sec": 59.0,
"content_preview": "https://www.theepochtimes.com/us/oklahoma-black-lives-matter-leader-indicted-ove"
},
{
"post_id": "116278882455205480",
"pub_time": "2026-03-23T14:08:59+00:00",
"detect_time": "2026-03-23T14:10:47.446161+00:00",
"latency_sec": 108.4,
"content_preview": "Kelsey Grammer calls Trump ‘one of the greatest presidents we’ve ever had’ at Ke"
},
{
"post_id": "116278900381351124",
"pub_time": "2026-03-23T14:13:33+00:00",
"detect_time": "2026-03-23T14:15:22.691962+00:00",
"latency_sec": 109.7,
"content_preview": ""
},
{
"post_id": "116278899551484414",
"pub_time": "2026-03-23T14:13:20+00:00",
"detect_time": "2026-03-23T14:15:22.703442+00:00",
"latency_sec": 122.7,
"content_preview": ""
},
{
"post_id": "116278898617605808",
"pub_time": "2026-03-23T14:13:06+00:00",
"detect_time": "2026-03-23T14:15:53.138295+00:00",
"latency_sec": 167.1,
"content_preview": ""
},
{
"post_id": "116278897972103626",
"pub_time": "2026-03-23T14:12:56+00:00",
"detect_time": "2026-03-23T14:15:53.194671+00:00",
"latency_sec": 177.2,
"content_preview": ""
},
{
"post_id": "116278895739918982",
"pub_time": "2026-03-23T14:12:22+00:00",
"detect_time": "2026-03-23T14:15:53.223797+00:00",
"latency_sec": 211.2,
"content_preview": ""
},
{
"post_id": "116278894937641301",
"pub_time": "2026-03-23T14:12:10+00:00",
"detect_time": "2026-03-23T14:15:53.230725+00:00",
"latency_sec": 223.2,
"content_preview": ""
},
{
"post_id": "116278893457439623",
"pub_time": "2026-03-23T14:11:47+00:00",
"detect_time": "2026-03-23T14:16:24.252240+00:00",
"latency_sec": 277.3,