-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataset_easy-twitter-search-scraper_2024-10-10_02-26-27-098.json
10533 lines (10533 loc) · 351 KB
/
dataset_easy-twitter-search-scraper_2024-10-10_02-26-27-098.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
[{
"id": "1839287616509722900",
"url": "https://twitter.com/SpeedUpdates1/status/1839287616509722900",
"verified": true,
"images": [
"https://cdn.xcancel.comhttps://pbs.twimg.com/media/GYZ2VT2a8AAQqu_.jpg"
],
"timestamp": "2024-09-26T12:55:00.000Z",
"text": "Indonesian fan makes a memorial poster of Speed when he was in Indonesia ❤️🇮🇩",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 50768,
"replies": 327,
"retweets": 4183,
"quotes": 129,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1618765849770303489/DE_7x4Vh.jpg",
"username": "@SpeedUpdates1",
"userFullName": "Speedy Updates",
"description": "Not Impersonating @ishowspeedsui | Not affiliated with IShowSpeed | @Stake",
"location": "DM for promo",
"website": "stake.com/?offer=stakeclips&…",
"joinDate": "2022-07-26T22:27:00.000Z",
"verified": true,
"totalLikes": 2656,
"totalTweets": 3181,
"totalFollowing": 306,
"totalFollowers": 473258,
"url": "https://twitter.com//SpeedUpdates1"
}
},
{
"id": "1844034158705983798",
"url": "https://twitter.com/aucrum/status/1844034158705983798",
"verified": false,
"timestamp": "2024-10-09T15:16:00.000Z",
"text": "Minister Of Communication And Information, Budi Arie Setiadi Hopes That Internet Speed Can Reach 100 Mbps throughout all Indonesia's regions In 2029.\n#WestPapuan \nvoi.id/en/technology/423190/",
"links": [
"https://twitter.com/search?q=%23WestPapuan",
"https://voi.id/en/technology/423190/"
],
"isQuote": false,
"isRetweet": false,
"isReply": false,
"likes": 0,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1535110605870604288/tOpEtNQW.jpg",
"username": "@aucrum",
"userFullName": "Slamet Subagio",
"description": "When There Is A Will, There Is A Way.",
"location": "Surabaya-Singapore-Jayapura",
"website": null,
"joinDate": "2012-03-15T07:51:00.000Z",
"verified": false,
"totalLikes": 9696,
"totalTweets": 22589,
"totalFollowing": 818,
"totalFollowers": 9751,
"url": "https://twitter.com//aucrum"
}
},
{
"id": "1844031182419497008",
"url": "https://twitter.com/GarrySpeed47253/status/1844031182419497008",
"verified": false,
"timestamp": "2024-10-09T15:04:00.000Z",
"text": "So in your words you think he is the same as some foreign fan from indonesia",
"links": [],
"isQuote": false,
"isRetweet": false,
"isReply": true,
"replyingTo": [
"/grimsbyred1981",
"/DaytrippingRed"
],
"likes": 0,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1840148358461095936/Qqx9Vfvs.jpg",
"username": "@GarrySpeed47253",
"userFullName": "mobbie kainoo",
"description": "Man UTD Season ticket holder The greatest hot top dog in all of east bruckwick county top lasher no panini no bariti liverpoo are fucking shit",
"location": "East Bruckwick county",
"website": null,
"joinDate": "2023-08-21T11:24:00.000Z",
"verified": false,
"totalLikes": 249,
"totalTweets": 1362,
"totalFollowing": 12,
"totalFollowers": 8,
"url": "https://twitter.com//GarrySpeed47253"
}
},
{
"id": "1844028133567345151",
"url": "https://twitter.com/aucrum/status/1844028133567345151",
"verified": false,
"timestamp": "2024-10-09T14:52:00.000Z",
"text": "Minister of Communication and Information, Budi Arie Setiadi hopes that internet speed in Indonesia can reach the target of 100 Mbps in all regions on the next five years.\n#WestPapuan \nantaranews.com/berita/438452…",
"links": [
"https://twitter.com/search?q=%23WestPapuan",
"https://www.antaranews.com/berita/4384522/menkominfo-harap-kecepatan-internet-tembus-100-mbps-dalam-lima-tahun"
],
"isQuote": false,
"isRetweet": false,
"isReply": false,
"likes": 0,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1535110605870604288/tOpEtNQW.jpg",
"username": "@aucrum",
"userFullName": "Slamet Subagio",
"description": "When There Is A Will, There Is A Way.",
"location": "Surabaya-Singapore-Jayapura",
"website": null,
"joinDate": "2012-03-15T07:51:00.000Z",
"verified": false,
"totalLikes": 9696,
"totalTweets": 22589,
"totalFollowing": 818,
"totalFollowers": 9751,
"url": "https://twitter.com//aucrum"
}
},
{
"id": "1836718975578690012",
"url": "https://twitter.com/SpeedUpdates1/status/1836718975578690012",
"verified": true,
"timestamp": "2024-09-19T10:48:00.000Z",
"text": "Speed is currently just having fun & doing side quests in Bali, Indonesia 😂🇮🇩",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 52691,
"replies": 487,
"retweets": 4616,
"quotes": 728,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1618765849770303489/DE_7x4Vh.jpg",
"username": "@SpeedUpdates1",
"userFullName": "Speedy Updates",
"description": "Not Impersonating @ishowspeedsui | Not affiliated with IShowSpeed | @Stake",
"location": "DM for promo",
"website": "stake.com/?offer=stakeclips&…",
"joinDate": "2022-07-26T22:27:00.000Z",
"verified": true,
"totalLikes": 2656,
"totalTweets": 3181,
"totalFollowing": 306,
"totalFollowers": 473258,
"url": "https://twitter.com//SpeedUpdates1"
}
},
{
"id": "1843952541421465728",
"url": "https://twitter.com/MatchPoiint/status/1843952541421465728",
"verified": true,
"timestamp": "2024-10-09T09:51:00.000Z",
"text": "Watch :-Speed is currently in Indonesia & as soon as he got out of his car.",
"links": [],
"isQuote": false,
"isRetweet": false,
"isReply": true,
"replyingTo": [
"/Dexerto"
],
"likes": 2,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1781586471071215616/r-MDaQA7.jpg",
"username": "@MatchPoiint",
"userFullName": "Match Point",
"description": "Sports/Movies/Series/Nature",
"location": "Pluto",
"website": null,
"joinDate": "2023-04-21T08:43:00.000Z",
"verified": true,
"totalLikes": 315,
"totalTweets": 25204,
"totalFollowing": 1941,
"totalFollowers": 18417,
"url": "https://twitter.com//MatchPoiint"
}
},
{
"id": "1841159909070532842",
"url": "https://twitter.com/IShowSpeedHQ/status/1841159909070532842",
"verified": true,
"timestamp": "2024-10-01T16:55:00.000Z",
"text": "🚨| WATCH: Speed reacts to his old self in Indonesia, practicing Javanese culture from the 9th century 🇮🇩",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 25036,
"replies": 193,
"retweets": 4564,
"quotes": 483,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1689059415838560256/fZ457J9J.jpg",
"username": "@IShowSpeedHQ",
"userFullName": "Speedy HQ",
"description": "Join the #1 source for all things Speed-Related and never miss a beat! | @TheHQQ",
"location": "🔔 Turn Post Notifications On",
"website": "yewtu.be/@IShowSpeed/live",
"joinDate": "2020-12-20T13:39:00.000Z",
"verified": true,
"totalLikes": 5307,
"totalTweets": 5315,
"totalFollowing": 7,
"totalFollowers": 90540,
"url": "https://twitter.com//IShowSpeedHQ"
}
},
{
"id": "1837020890430570689",
"url": "https://twitter.com/SpeedUpdates1/status/1837020890430570689",
"verified": true,
"timestamp": "2024-09-20T06:48:00.000Z",
"text": "Speed makes a monkey his friend & he tried to kiss speed in Indonesia 😂",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 69492,
"replies": 334,
"retweets": 3978,
"quotes": 313,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1618765849770303489/DE_7x4Vh.jpg",
"username": "@SpeedUpdates1",
"userFullName": "Speedy Updates",
"description": "Not Impersonating @ishowspeedsui | Not affiliated with IShowSpeed | @Stake",
"location": "DM for promo",
"website": "stake.com/?offer=stakeclips&…",
"joinDate": "2022-07-26T22:27:00.000Z",
"verified": true,
"totalLikes": 2656,
"totalTweets": 3181,
"totalFollowing": 306,
"totalFollowers": 473258,
"url": "https://twitter.com//SpeedUpdates1"
}
},
{
"id": "1843683834623385780",
"url": "https://twitter.com/am1_news/status/1843683834623385780",
"verified": true,
"timestamp": "2024-10-08T16:04:00.000Z",
"text": "In Wales, Conservatives criticize Labour's 20mph speed limits, citing poor implementation and public confusion, urging a review. Colleen Monfore's remains were found in a shark's stomach after her diving accident in Indonesia, raising questions about her… am1.news/usconservative/topi…",
"links": [
"https://am1.news/usconservative/topic/fq/6-slug-the-digest-1082024-1100am-cdt?utm_medium=twitter"
],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 0,
"replies": 0,
"retweets": 1,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1656455777874223105/FIeIe9EI.jpg",
"username": "@am1_news",
"userFullName": "The America One News",
"description": "Unbiased & unwoke news digest for middle America.\n\nFolks are tired of all the spin & lies from the Left and the Right, mostly from the Left, though. Honesty #1",
"location": "Northern Upper Midwest",
"website": "am1.news",
"joinDate": "2021-07-18T13:26:00.000Z",
"verified": true,
"totalLikes": 299,
"totalTweets": 119945,
"totalFollowing": 1907,
"totalFollowers": 2754,
"url": "https://twitter.com//am1_news"
}
},
{
"id": "1843648578805534727",
"url": "https://twitter.com/cimot_dhani/status/1843648578805534727",
"verified": false,
"timestamp": "2024-10-08T13:44:00.000Z",
"text": "@elonmusk thanks Starlink has come to Indonesia, please gives us cheaper Starlink internet package or same price as provider in Indonesia, we are tired to complain about unstable and slow speed internet . me and my family will change to Starlink 😭",
"links": [
"https://twitter.com/elonmusk"
],
"isQuote": false,
"isRetweet": false,
"isReply": true,
"replyingTo": [
"/tanyarlfes"
],
"likes": 0,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1322059959165595648/WOVMyVTF.jpg",
"username": "@cimot_dhani",
"userFullName": "Valentinus",
"description": "udah punya tiga anak dan baru satu istri...",
"location": null,
"website": null,
"joinDate": "2012-08-23T10:44:00.000Z",
"verified": false,
"totalLikes": 2509,
"totalTweets": 7462,
"totalFollowing": 1820,
"totalFollowers": 74,
"url": "https://twitter.com//cimot_dhani"
}
},
{
"id": "1836347306032996439",
"url": "https://twitter.com/SpeedUpdates1/status/1836347306032996439",
"verified": true,
"username": "@SpeedUpdates1",
"fullname": "Speedy Updates",
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1618765849770303489/DE_7x4Vh.jpg",
"timestamp": "2024-09-18T10:11:00.000Z",
"text": "Speed is having the time of his life in Indonesia 😂🇮🇩",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 59543,
"replies": 350,
"retweets": 5912,
"quotes": 803,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1618765849770303489/DE_7x4Vh.jpg",
"username": "@SpeedUpdates1",
"userFullName": "Speedy Updates",
"description": "Not Impersonating @ishowspeedsui | Not affiliated with IShowSpeed | @Stake",
"location": "DM for promo",
"website": "stake.com/?offer=stakeclips&…",
"joinDate": "2022-07-26T22:27:00.000Z",
"verified": true,
"totalLikes": 2656,
"totalTweets": 3181,
"totalFollowing": 306,
"totalFollowers": 473258,
"url": "https://twitter.com//SpeedUpdates1"
}
},
{
"id": "1842224191598473629",
"url": "https://twitter.com/ifsclimbing/status/1842224191598473629",
"verified": true,
"images": [
"https://cdn.xcancel.comhttps://pbs.twimg.com/media/GZDlFI5bIAAH4z4.jpg"
],
"timestamp": "2024-10-04T15:24:00.000Z",
"text": "TEAM CHINA CLOSED A DOMINANT NIGHT WITH WANG XINSHANG TAKING GOLD IN THE MEN'S SPEED EVENT!! KAZAKHSTAN AND INDONESIA ALSO STEPPED ON THE PODIUM!!\n\n🥇 Wang Xinshang 🇨🇳\n🥈 Amir Maimuratov 🇰🇿\n🥉 Kiromal Katibin 🇮🇩\n\n#WorldClimbing #SeoulWC",
"links": [
"https://twitter.com/search?q=%23WorldClimbing",
"https://twitter.com/search?q=%23SeoulWC"
],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 16,
"replies": 1,
"retweets": 7,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1624803134173327364/-6bV5LPZ.jpg",
"username": "@ifsclimbing",
"userFullName": "International Federation of Sport Climbing",
"description": "World governing body of Climbing. #ClimbToParis",
"location": "Torino, ITA",
"website": "ifsc-climbing.org",
"joinDate": "2011-04-06T10:40:00.000Z",
"verified": true,
"totalLikes": 4413,
"totalTweets": 16432,
"totalFollowing": 494,
"totalFollowers": 42248,
"url": "https://twitter.com//ifsclimbing"
}
},
{
"id": "1842213946893463811",
"url": "https://twitter.com/ifsclimbing/status/1842213946893463811",
"verified": true,
"images": [
"https://cdn.xcancel.comhttps://pbs.twimg.com/media/GZDbhQKbYAA8qQj.jpg"
],
"timestamp": "2024-10-04T14:43:00.000Z",
"text": "TEAM CHINA CLINCHES GOLD-BRONZE COMBO IN THE WOMEN'S SPEED FINAL AT SEOUL 2024!! INDONESIA TAKE SILVER!!\n\n🥇 Zhou Yafei 🇨🇳\n🥈 Rajiah Sallsabillah 🇮🇩\n🥉 Wang Shengyan 🇨🇳\n\n#WorldClimbing #SeoulWC",
"links": [
"https://twitter.com/search?q=%23WorldClimbing",
"https://twitter.com/search?q=%23SeoulWC"
],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 27,
"replies": 0,
"retweets": 7,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1624803134173327364/-6bV5LPZ.jpg",
"username": "@ifsclimbing",
"userFullName": "International Federation of Sport Climbing",
"description": "World governing body of Climbing. #ClimbToParis",
"location": "Torino, ITA",
"website": "ifsc-climbing.org",
"joinDate": "2011-04-06T10:40:00.000Z",
"verified": true,
"totalLikes": 4413,
"totalTweets": 16432,
"totalFollowing": 494,
"totalFollowers": 42248,
"url": "https://twitter.com//ifsclimbing"
}
},
{
"id": "1838140299987829072",
"url": "https://twitter.com/brdss7/status/1838140299987829072",
"verified": false,
"timestamp": "2024-09-23T08:56:00.000Z",
"text": "bro i don't know speed got twin in Indonesia🇮🇩😭",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 5990,
"replies": 42,
"retweets": 698,
"quotes": 70,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1835730772004933632/MZqXtVfi.jpg",
"username": "@brdss7",
"userFullName": "Braids.",
"description": "about a kid from Cinccinnati, Ohio, USA🇺🇲",
"location": "United States",
"website": null,
"joinDate": "2024-06-01T18:08:00.000Z",
"verified": false,
"totalLikes": 13,
"totalTweets": 168,
"totalFollowing": 13,
"totalFollowers": 32,
"url": "https://twitter.com//brdss7"
}
},
{
"id": "1792230716790513800",
"url": "https://twitter.com/Starlink/status/1792230716790513800",
"verified": true,
"timestamp": "2024-05-19T16:27:00.000Z",
"text": "Across more than 17,000 islands, Starlink’s high-speed, low-latency internet is available in Indonesia! 🛰️🇮🇩❤️ → starlink.com/map?country=ID",
"links": [
"http://starlink.com/map?country=ID"
],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 6610,
"replies": 410,
"retweets": 1107,
"quotes": 87,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1720501511271383040/FXz_jiJu.jpg",
"username": "@Starlink",
"userFullName": "Starlink",
"description": "Internet from space for humans on Earth. Engineered by @SpaceX",
"location": null,
"website": "starlink.com",
"joinDate": "2020-11-21T15:25:00.000Z",
"verified": true,
"totalLikes": 252,
"totalTweets": 219,
"totalFollowing": 25,
"totalFollowers": 845036,
"url": "https://twitter.com//Starlink"
}
},
{
"id": "1843233597823791208",
"url": "https://twitter.com/kelsin_nft/status/1843233597823791208",
"verified": false,
"images": [
"https://cdn.xcancel.comhttps://pbs.twimg.com/media/GZR6tjSaEAAhpcR.png"
],
"timestamp": "2024-10-07T10:15:00.000Z",
"text": "@Steadyteddysaur its viral meme in indonesia \nwen i show speed go to indonesia 😂",
"links": [
"https://twitter.com/Steadyteddysaur"
],
"isQuote": false,
"isRetweet": false,
"isReply": false,
"likes": 1,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1444593431070720010/qGc2NQZ4.jpg",
"username": "@kelsin_nft",
"userFullName": "Kelsin",
"description": "nft for life",
"location": null,
"website": null,
"joinDate": "2021-10-03T09:16:00.000Z",
"verified": false,
"totalLikes": 177,
"totalTweets": 495,
"totalFollowing": 233,
"totalFollowers": 235,
"url": "https://twitter.com//kelsin_nft"
}
},
{
"id": "1843271241194721696",
"url": "https://twitter.com/thatxinterestin/status/1843271241194721696",
"verified": true,
"images": [
"https://cdn.xcancel.comhttps://pbs.twimg.com/media/GZSdauyWUAAl_T1.jpg"
],
"timestamp": "2024-10-07T12:44:00.000Z",
"text": "World record in rock climbing.\n\nIndonesia's Arjes Susanti set a world record in rock climbing at the World Climbing Championships in China. The 24-year-old athlete climbed the 15-meter wall in 6.995 seconds and won the gold medal in speed climbing.",
"links": [],
"isQuote": false,
"isRetweet": false,
"isReply": true,
"replyingTo": [
"/gunsnrosesgirl3"
],
"likes": 2,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1747625904883331072/Nm5MINKX.jpg",
"username": "@thatxinterestin",
"userFullName": "That's Interesting",
"description": "We share fascinating videos and intriguing facts on a wide range of topics. Follow along for a daily dose of discovery and wonder",
"location": "World 🌍",
"website": null,
"joinDate": "2013-02-22T07:01:00.000Z",
"verified": true,
"totalLikes": 7345,
"totalTweets": 6144,
"totalFollowing": 181,
"totalFollowers": 4623,
"url": "https://twitter.com//thatxinterestin"
}
},
{
"id": "1842720205635543114",
"url": "https://twitter.com/_LunarWolfJin/status/1842720205635543114",
"verified": true,
"images": [
"https://cdn.xcancel.comhttps://pbs.twimg.com/media/GZKoP00WoAAhAqe.jpg"
],
"timestamp": "2024-10-06T00:15:00.000Z",
"text": "[INFO] || #JIN IMPACT ㅡ 🔥👑✨️\nLaneige Cream Skin sold out swiftly in various countries' malls & official websites following Jin's campaign release! 👏👏👏\n\n• HONG KONG \n• CHINA\n• PHILIPPINES\n• SOUTH KOREA \n• INDONESIA\n• SINGAPORE \n\n#JinxLaneige #방탄소년단진 #Laneige #JIN\n#TheJINiusLaneige @Laneige_kr @BTS_twt",
"links": [
"https://twitter.com/search?q=%23JIN",
"https://twitter.com/search?q=%23JinxLaneige",
"https://twitter.com/search?q=%23방탄소년단진",
"https://twitter.com/search?q=%23Laneige",
"https://twitter.com/search?q=%23JIN",
"https://twitter.com/search?q=%23TheJINiusLaneige",
"https://twitter.com/Laneige_kr",
"https://twitter.com/BTS_twt"
],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 2850,
"replies": 47,
"retweets": 1140,
"quotes": 33,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1667971018093199361/2bQOGxgy.jpg",
"username": "@_LunarWolfJin",
"userFullName": "JIN FACTS || 🛸 KSJ1 IS COMING SOON || seokjin era",
"description": "🐺 #SEOKJIN: I'm a wolf (celebrity of celebrities). This is a fan account dedicated to the best Musician, Singer, Songwriter & Legendary soloist #Jin #김석진",
"location": "2-Admins °• 🐋",
"website": null,
"joinDate": "2020-12-23T11:44:00.000Z",
"verified": true,
"totalLikes": 62859,
"totalTweets": 27781,
"totalFollowing": 274,
"totalFollowers": 10792,
"url": "https://twitter.com//_LunarWolfJin"
}
},
{
"id": "1842508554856734902",
"url": "https://twitter.com/LexWu_13/status/1842508554856734902",
"verified": true,
"timestamp": "2024-10-05T10:14:00.000Z",
"text": "Speed : Batik dari Indonesia...\nKalau Asalnya Ia dari Indomesia\n\nTapi Fakta saat ini..\nBatik dari Chinaa bro,\nDi Impor jor2an....\n\nKerajinan Batik Lokal Gulung Tikar.\n\n2008, gue punya Pabrik Mini..\nNamanya Arena Karya Mandiri, 1 thn tutup.\nBikin baut kuping accu mobil.\nCost produksi gue 700 perak sebiji. (karyawan sm listrik).\nEh Impor dari Tiongkok 1000 perak dapat 2 biji.\nApa gk mencret...",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 7560,
"replies": 256,
"retweets": 1907,
"quotes": 78,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1835775440755232770/wohuuuOk.jpg",
"username": "@LexWu_13",
"userFullName": "Lex Wu",
"description": "Sipit Di Mata itu TAKDIR, Sipit di Otak Itu Gak MIKIR!\nAkun di Kelola Sendiri, tidak menggunakan Jasa Jubir, karena bisa bicara Sendiri.",
"location": null,
"website": "yewtu.be/c/LexWu",
"joinDate": "2021-05-20T00:17:00.000Z",
"verified": true,
"totalLikes": 13336,
"totalTweets": 15111,
"totalFollowing": 1327,
"totalFollowers": 27247,
"url": "https://twitter.com//LexWu_13"
}
},
{
"id": "1725357131514384593",
"url": "https://twitter.com/CEIS24060800/status/1725357131514384593",
"verified": true,
"timestamp": "2023-11-17T03:36:00.000Z",
"text": "The Jakarta-Bandung High-Speed #Railway in Indonesia began alignment joint-test recently, marking a significant milestone in the construction progress, and laying the groundwork for its full operation.\n#Xinhuasilkroadnews #BeltandRoadPortalNews\nen.imsilkroad.com/p/334692.h…\neng.yidaiyilu.gov.cn/p/32478…",
"links": [
"https://twitter.com/search?q=%23Railway",
"https://twitter.com/search?q=%23Xinhuasilkroadnews",
"https://twitter.com/search?q=%23BeltandRoadPortalNews",
"https://en.imsilkroad.com/p/334692.html",
"https://eng.yidaiyilu.gov.cn/p/324784.html"
],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 0,
"replies": 0,
"retweets": 5,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1308307106601119745/jzxA4hNl.png",
"username": "@CEIS24060800",
"userFullName": "China Economic Information Service (CEIS)",
"description": "CEIS is a professional provider of economic information and services, and a pilot organization for the development of national-level think tanks.",
"location": null,
"website": "en.imsilkroad.com/",
"joinDate": "2020-09-22T05:18:00.000Z",
"verified": true,
"totalLikes": 788,
"totalTweets": 3953,
"totalFollowing": 65,
"totalFollowers": 6831,
"url": "https://twitter.com//CEIS24060800"
}
},
{
"id": "1842571374227026234",
"url": "https://twitter.com/MatchPoiint/status/1842571374227026234",
"verified": true,
"username": "@MatchPoiint",
"fullname": "Match Point",
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1781586471071215616/r-MDaQA7.jpg",
"timestamp": "2024-10-05T14:23:00.000Z",
"text": "Watch :-Speed is currently in Indonesia & as soon as he got out of his car.",
"links": [],
"isQuote": false,
"isRetweet": false,
"isReply": true,
"replyingTo": [
"/FearedBuck"
],
"likes": 2,
"replies": 0,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1781586471071215616/r-MDaQA7.jpg",
"username": "@MatchPoiint",
"userFullName": "Match Point",
"description": "Sports/Movies/Series/Nature",
"location": "Pluto",
"website": null,
"joinDate": "2023-04-21T08:43:00.000Z",
"verified": true,
"totalLikes": 315,
"totalTweets": 25204,
"totalFollowing": 1941,
"totalFollowers": 18417,
"url": "https://twitter.com//MatchPoiint"
}
},
{
"id": "1842551186148192719",
"url": "https://twitter.com/DeepBookonSui/status/1842551186148192719",
"verified": true,
"timestamp": "2024-10-05T13:03:00.000Z",
"text": "SELECT unified_liquidity, low_fees, high_speed\nFROM sui_network\nWHERE protocol = 'DeepBook'\nAND execution_type = 'parallel'\nAND feature = 'capital efficiency';\n\n-- Running this query 10/10 times results in the most performant DeFi trading experience.",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 221,
"replies": 21,
"retweets": 29,
"quotes": 1,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1773395101592834048/Qa_H_TJY.jpg",
"username": "@DeepBookonSui",
"userFullName": "DeepBook Protocol on Sui",
"description": "The premier decentralized liquidity layer for builders, traders, and the broader DeFi community, exclusively on @SuiNetwork.",
"location": "Sui",
"website": "deepbook.tech/",
"joinDate": "2023-02-27T20:06:00.000Z",
"verified": true,
"totalLikes": 754,
"totalTweets": 921,
"totalFollowing": 27,
"totalFollowers": 27865,
"url": "https://twitter.com//DeepBookonSui"
}
},
{
"id": "1842597642079277236",
"url": "https://twitter.com/Avakinoffice/status/1842597642079277236",
"verified": false,
"images": [
"https://cdn.xcancel.comhttps://pbs.twimg.com/media/GZI4yNLaAAAiILO.jpg"
],
"timestamp": "2024-10-05T16:08:00.000Z",
"text": "Hi speed, next time if you come to bali, they will be your tour guide, Indonesia just won 2 crown beauty pageants in a row with their exotic beauty. And they are from bali and bandung",
"links": [],
"isQuote": false,
"isRetweet": false,
"isReply": false,
"likes": 1,
"replies": 1,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1680863705586868224/lxENAJth.jpg",
"username": "@Avakinoffice",
"userFullName": "Avakin Unofficial",
"description": null,
"location": null,
"website": null,
"joinDate": "2023-07-17T07:17:00.000Z",
"verified": false,
"totalLikes": 145,
"totalTweets": 596,
"totalFollowing": 16,
"totalFollowers": 5,
"url": "https://twitter.com//Avakinoffice"
}
},
{
"id": "1842466396657377787",
"url": "https://twitter.com/suaifi_moch/status/1842466396657377787",
"verified": false,
"timestamp": "2024-10-05T07:26:00.000Z",
"text": "When Reza Arap became Ishowspeed in Indonesia, Java left, you poor people 😅😭🤴(MINGIR LUH MISKIN)🤣🫵🏼 #speed #java #jogja",
"links": [
"https://twitter.com/search?q=%23speed",
"https://twitter.com/search?q=%23java",
"https://twitter.com/search?q=%23jogja"
],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 123,
"replies": 0,
"retweets": 6,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1743618032466092032/cmyCUxcH.jpg",
"username": "@suaifi_moch",
"userFullName": "MOCH_SUAIFI",
"description": "Pencinta sepak bola 🇲🇨",
"location": "Sidoarjo, Indonesia",
"website": "yewtu.be/channel/UC0pCCO_7tS…",
"joinDate": "2021-02-24T00:57:00.000Z",
"verified": false,
"totalLikes": 237,
"totalTweets": 277,
"totalFollowing": 315,
"totalFollowers": 77,
"url": "https://twitter.com//suaifi_moch"
}
},
{
"id": "1561662966973341697",
"url": "https://twitter.com/SCMPNews/status/1561662966973341697",
"verified": true,
"timestamp": "2022-08-22T10:34:00.000Z",
"text": "China-made bullet trains with a top speed of 350km/h have been exported for the first time in a shipment to Indonesia for use on a new high-speed rail line.",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 181,
"replies": 7,
"retweets": 61,
"quotes": 17,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1736577695524528128/qiUSUfjY.jpg",
"username": "@SCMPNews",
"userFullName": "South China Morning Post",
"description": "The South China Morning Post brings you news and analysis about Hong Kong, China and the rest of Asia. Get our app: sc.mp/app_t",
"location": "Hong Kong",
"website": "scmp.com/",
"joinDate": "2009-03-12T08:51:00.000Z",
"verified": true,
"totalLikes": 431,
"totalTweets": 409917,
"totalFollowing": 300,
"totalFollowers": 994687,
"url": "https://twitter.com//SCMPNews"
}
},
{
"id": "1842257706825982193",
"url": "https://twitter.com/Avakinoffice/status/1842257706825982193",
"verified": false,
"username": "@Avakinoffice",
"fullname": "Avakin Unofficial",
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1680863705586868224/lxENAJth.jpg",
"timestamp": "2024-10-04T17:37:00.000Z",
"text": "i believe speed is not smelly, but most western people i met while hiking in indonesia, like they rent a tent, sleeping bag, and staff, are stinking asf",
"links": [],
"isQuote": true,
"isRetweet": false,
"isReply": false,
"likes": 1,
"replies": 0,
"retweets": 0,
"quotes": 0,
"quotedTweet": {
"url": "https://twitter.com/heungminthfc/status/1842210459271004329",
"avatar": "",
"username": "@heungminthfc",
"fullname": "qilೀ",
"timestamp": "2024-10-04T14:29:00.000Z",
"text": "W nami for clarifying that speed doesn’t stink since many people were asking her about it 😭😂✌🏻",
"links": []
},
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1680863705586868224/lxENAJth.jpg",
"username": "@Avakinoffice",
"userFullName": "Avakin Unofficial",
"description": null,
"location": null,
"website": null,
"joinDate": "2023-07-17T07:17:00.000Z",
"verified": false,
"totalLikes": 145,
"totalTweets": 596,
"totalFollowing": 16,
"totalFollowers": 5,
"url": "https://twitter.com//Avakinoffice"
}
},
{
"id": "1837008728647717190",
"url": "https://twitter.com/IShowSpeedHQ/status/1837008728647717190",
"verified": true,
"username": "@IShowSpeedHQ",
"fullname": "Speedy HQ",
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1689059415838560256/fZ457J9J.jpg",
"timestamp": "2024-09-20T05:59:00.000Z",
"text": "🚨| WATCH: Speed bought a wooden dildo called \"Asbak Bali\" in Bali, Indonesia 😭🇮🇩",
"links": [],
"isQuote": false,
"isRetweet": true,
"isReply": false,
"likes": 7212,
"replies": 167,
"retweets": 874,
"quotes": 175,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1689059415838560256/fZ457J9J.jpg",
"username": "@IShowSpeedHQ",
"userFullName": "Speedy HQ",
"description": "Join the #1 source for all things Speed-Related and never miss a beat! | @TheHQQ",
"location": "🔔 Turn Post Notifications On",
"website": "yewtu.be/@IShowSpeed/live",
"joinDate": "2020-12-20T13:39:00.000Z",
"verified": true,
"totalLikes": 5307,
"totalTweets": 5315,
"totalFollowing": 7,
"totalFollowers": 90540,
"url": "https://twitter.com//IShowSpeedHQ"
}
},
{
"id": "1842416212019392568",
"url": "https://twitter.com/JayLoh78/status/1842416212019392568",
"verified": false,
"timestamp": "2024-10-05T04:07:00.000Z",
"text": "For someone who works in Asia you don't seem up to speed. China has threatened not just the Philippines but also Vietnam, Indonesia & Malaysia recently against drilling for oil in their own exclusive economic zones. This article is not even 3 days old. \n\nscmp.com/news/asia/southeast…",
"links": [
"https://www.scmp.com/news/asia/southeast-asia/article/3280751/malaysia-defies-chinas-patrols-expand-south-china-sea-oil-gas-drilling-report"
],
"isQuote": false,
"isRetweet": false,
"isReply": true,
"replyingTo": [
"/MargaretEv73429",
"/wimdemeere",
"/RnaudBertrand"
],
"likes": 0,
"replies": 3,
"retweets": 0,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1247006911326609414/qLACM4ja.jpg",
"username": "@JayLoh78",
"userFullName": "Jay Kay",
"description": null,
"location": null,
"website": null,
"joinDate": "2012-02-10T09:36:00.000Z",
"verified": false,
"totalLikes": 1814,
"totalTweets": 3463,
"totalFollowing": 929,
"totalFollowers": 120,
"url": "https://twitter.com//JayLoh78"
}
},
{
"id": "1842437599375642983",
"url": "https://twitter.com/seatodaynews/status/1842437599375642983",
"verified": true,
"timestamp": "2024-10-05T05:32:00.000Z",
"text": "The Indonesian Air Force concluded the 79th Indonesian Armed Forces anniversary ceremony with a high-speed pass and boomburst.\n\nCheck out the series of aerial demo attractions in the following video.\n\n#SEAToday #SEATodayNews #SEATodaydotcom #Jakarta #Indonesia #HUTTNI #TNI #TNIAnniversary",
"links": [
"https://twitter.com/search?q=%23SEAToday",
"https://twitter.com/search?q=%23SEATodayNews",
"https://twitter.com/search?q=%23SEATodaydotcom",
"https://twitter.com/search?q=%23Jakarta",
"https://twitter.com/search?q=%23Indonesia",
"https://twitter.com/search?q=%23HUTTNI",
"https://twitter.com/search?q=%23TNI",
"https://twitter.com/search?q=%23TNIAnniversary"
],
"isQuote": false,
"isRetweet": false,
"isReply": false,
"likes": 1,
"replies": 2,
"retweets": 1,
"quotes": 0,
"searchQuery": "speed in Indonesia ",
"user": {
"avatar": "https://cdn.xcancel.comhttps://pbs.twimg.com/profile_images/1600708959286939649/xsHuz0HS.jpg",
"username": "@seatodaynews",
"userFullName": "SEA Today News",