-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsample.json
More file actions
15835 lines (15835 loc) · 362 KB
/
sample.json
File metadata and controls
15835 lines (15835 loc) · 362 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
[
{
"domain": "grillgrate.nl",
"title": "Human verification",
"business_name": "",
"country": "",
"seo_score": 25,
"tech_spend": 200,
"crawled_at": "2026-04-21T18:53:19.982264512Z",
"technologies": [
"AWS WAF Challenge",
"Create React App",
"Nginx",
"Pleroma",
"QUIC",
"UTF-8"
]
},
{
"domain": "turbovoice.ai",
"title": "TurboVoice AI: Text to Speech, AI Voiceovers, Voice Cloning Online",
"business_name": "",
"country": "",
"seo_score": 67,
"tech_spend": 3007,
"crawled_at": "2026-04-21T18:49:13.872833999Z",
"technologies": [
"Apache",
"Apture Linking Platform",
"Create React App",
"Express",
"Font Awesome",
"GZIP Module",
"Google",
"Google Cloud DNS",
"Google Font API",
"IcoMoon",
"Pleroma",
"QUIC",
"Tailwind CSS",
"UTF-8"
]
},
{
"domain": "oddleaf.co.uk",
"title": "Odd Leaf | The Rare Houseplant Specialists | Home",
"business_name": "Odd Leaf",
"country": "GBR",
"seo_score": 77,
"tech_spend": 20524,
"crawled_at": "2026-04-21T18:32:37.771111256Z",
"technologies": [
"3 Products",
"AWS WAF Challenge",
"Alternate Protocol",
"Apture Linking Platform",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"GraphQL",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Oddle",
"Omnisend",
"Perl",
"QUIC",
"Shopify",
"Shopify Collabs",
"Svelte",
"Tailwind CSS",
"TinyIMG",
"UTF-8",
"Vello",
"YouTube",
"hCaptcha",
"reCAPTCHA"
]
},
{
"domain": "wanhuametal.com",
"title": "Ferro Silicon | Calcium Silicon | Briquette | Si Slag | Wanhua Metal",
"business_name": "",
"country": "CHN",
"seo_score": 62,
"tech_spend": "",
"crawled_at": "2026-04-21T18:23:20.004627798Z",
"technologies": [
"Create React App",
"GZIP Module",
"Google Analytics",
"Google Tag Manager",
"Nginx",
"Pleroma",
"jQuery"
]
},
{
"domain": "vormor.co",
"title": "VORMOR Transaction——Professional Scanning Translation",
"business_name": "vormor",
"country": "CHN",
"seo_score": 77,
"tech_spend": 62512,
"crawled_at": "2026-04-21T18:17:19.99899344Z",
"technologies": [
"17TRACK",
"Alternate Protocol",
"Amazon WAF Blocked",
"Apture Linking Platform",
"Aruba",
"ArvanCloud",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"ETranslate",
"Express",
"GetGist",
"Google Analytics",
"Google Related Website Sites",
"Google Tag Manager",
"Instagram Follow Button",
"Klaviyo",
"Microdata for Google Shopping",
"PageFly",
"Pleroma",
"Privy",
"QUIC",
"SMC",
"ShareASale",
"Shopify",
"Shopify Collabs",
"Svelte",
"Tailwind CSS",
"To Top",
"Twitter Ads",
"UTF-8",
"YouTube",
"eLand",
"hCaptcha",
"jsDelivr",
"reCAPTCHA",
"shadcn ui"
]
},
{
"domain": "soderbergpartnersgroup.com",
"title": "Innovating and transforming the insurance and finance industry | Söderberg & Partners Group",
"business_name": "",
"country": "",
"seo_score": 50,
"tech_spend": 1203,
"crawled_at": "2026-04-21T18:14:20.003471965Z",
"technologies": [
"Alternate Protocol",
"Cloudflare",
"Create React App",
"Facebook Reseller",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Maps",
"Google Related Website Sites",
"Google Tag Manager",
"Material-UI",
"Microsoft Clarity",
"Sitelinks Search Box",
"Styled Components",
"UTF-8",
"Vector Internet Services"
]
},
{
"domain": "zmksts.com",
"title": "Изготовление металлоконструкций на заказ – ЗМК Стальные Технологии Строительства",
"business_name": "ЗМК Стальные Технологии Строительства",
"country": "RUS",
"seo_score": 77,
"tech_spend": 10884,
"crawled_at": "2026-04-21T18:11:52.267401248Z",
"technologies": [
"ADFOX",
"Create React App",
"FormSubmit",
"GZIP Module",
"Microdata for Google Shopping",
"Nginx",
"Phusion Passenger Enterprise",
"Pleroma",
"Telegram",
"UTF-8",
"Yandex Hosting",
"Yandex Metrika"
]
},
{
"domain": "howtoevolve.me",
"title": "How to Evolve | Ros Barber | Substack",
"business_name": "",
"country": "USA",
"seo_score": 82,
"tech_spend": 37368,
"crawled_at": "2026-04-21T18:03:46.786700301Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Amazon S3 CDN",
"Amazon WAF Blocked",
"Cloudflare",
"Cloudflare Web Analytics",
"Content Delivery Network",
"Create React App",
"DAV",
"Drata",
"Express",
"Google",
"Google Cloud CDN",
"Gravity",
"IcoMoon",
"Microdata for Google Shopping",
"NFOrce Internet",
"Oracle Cloud",
"Pleroma",
"QUIC",
"Radix UI",
"Sentry",
"Sitelinks Search Box",
"Storyblocks",
"UTF-8"
]
},
{
"domain": "yummymaternity.com.au",
"title": "Nursing Bras & Underwear | Bamboo Comfort | Yummy Maternity",
"business_name": "Yummy Maternity",
"country": "AUS",
"seo_score": 87,
"tech_spend": 9863,
"crawled_at": "2026-04-21T17:46:06.55096048Z",
"technologies": [
"AJAX Libraries API",
"Adult Content",
"Afterpay",
"Apture Linking Platform",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Coming Soon Page",
"Create React App",
"DAV",
"Google Cloud DNS",
"Google Cloud Storage",
"Google Customer Reviews",
"Google Related Website Sites",
"GraphQL",
"IcoMoon",
"Instagram Follow Button",
"Klaviyo",
"Microdata for Google Shopping",
"Microsoft Clarity",
"NFOrce Internet",
"QUIC",
"Shopify",
"Shopify Collabs",
"Svelte",
"Tailwind CSS",
"Thank You",
"UTF-8",
"Vine Embed",
"hCaptcha",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "betonred.world",
"title": "ᐈ Casino Online and Mobile",
"business_name": "",
"country": "",
"seo_score": 42,
"tech_spend": 261,
"crawled_at": "2026-04-21T17:46:06.548791123Z",
"technologies": [
"Create React App",
"Express",
"Financial Services Guide",
"GZIP Module",
"Gambling Content",
"Google",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"Nginx",
"No-Q",
"Pleroma",
"Subversion",
"UTF-8"
]
},
{
"domain": "nextrun.io",
"title": "NextRun Digital - Your Engineering Partner",
"business_name": "",
"country": "USA",
"seo_score": 65,
"tech_spend": "",
"crawled_at": "2026-04-21T17:34:42.33231989Z",
"technologies": [
"Bulma",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"Nginx",
"Pleroma",
"Tailwind CSS",
"UTF-8",
"YouTube",
"jsDelivr"
]
},
{
"domain": "bipe.org.in",
"title": "Banaras Institute Of Pharmacy Education(BIPE)",
"business_name": "",
"country": "",
"seo_score": 67,
"tech_spend": 40,
"crawled_at": "2026-04-21T17:34:42.30210647Z",
"technologies": [
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"Materialize CSS",
"Nginx",
"Pleroma",
"UTF-8",
"University or College"
]
},
{
"domain": "ducksinarose.com",
"title": "Ducks in a Rose | Home Organization with LeaRose",
"business_name": "",
"country": "USA",
"seo_score": 77,
"tech_spend": 4840,
"crawled_at": "2026-04-21T17:32:19.998865074Z",
"technologies": [
"Content Delivery Network",
"Create React App",
"Fastly",
"Google",
"Google Cloud DNS",
"Google Font API",
"PWA",
"Perl",
"Pleroma",
"UTF-8"
]
},
{
"domain": "vivianlab.com",
"title": "Menopause Program for Stress, Hot flashes & Weight Loss",
"business_name": "",
"country": "GRC",
"seo_score": 82,
"tech_spend": 112476,
"crawled_at": "2026-04-21T17:08:19.994131091Z",
"technologies": [
"Amazon",
"Amazon CloudFront",
"Amazon Route 53",
"App Store",
"Apyl",
"CDN JS",
"CloudFront",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"DAV",
"DoubleClick Bid Manager",
"Ethy",
"Facebook CDN",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Financial Services Guide",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Maps",
"Google My Business",
"Google Play",
"Google Related Website Sites",
"Google Tag Manager",
"Heroku",
"Hotjar",
"Instagram Follow Button",
"K2F",
"KVH",
"Microdata for Google Shopping",
"No-Q",
"PHP",
"Paessler",
"Pleroma",
"SMC",
"Sharetribe",
"Stripe",
"Subversion",
"UTF-8",
"Unix",
"Visx",
"WordPress SEO Structured Data Schema Plugin",
"YouTube",
"jsDelivr"
]
},
{
"domain": "waarlandsdorpshuis.nl",
"title": "Dorpshuis Waarland",
"business_name": "",
"country": "",
"seo_score": 55,
"tech_spend": 99,
"crawled_at": "2026-04-21T17:05:08.402442698Z",
"technologies": [
"Bulma",
"Create React App",
"Font Awesome",
"GZIP Module",
"Nginx",
"Pleroma",
"UTF-8",
"jQuery"
]
},
{
"domain": "kollider.co.uk",
"title": "UK Startup Incubator from £99/month, Innovator Support, and Virtual Offices | Kollider",
"business_name": "Kollider Incubator",
"country": "GBR",
"seo_score": 82,
"tech_spend": 5088,
"crawled_at": "2026-04-21T16:50:20.008809142Z",
"technologies": [
"Alternate Protocol",
"CookieYes",
"Corporate Governance and Regulatory Compliance",
"Create React App",
"Font Awesome",
"Free Call",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Tag Manager",
"IcoMoon",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Nginx",
"PWA",
"Pleroma",
"QUIC",
"Tailwind CSS",
"Tidio",
"UTF-8",
"Ubuntu",
"reCAPTCHA"
]
},
{
"domain": "gogosystem.com",
"title": "Home Page The best appointment systems in North America, including beauty salon systems, massage systems, nail salon systems, eyelash salon systems, POS software systems, settlement systems, customer management systems, beauty salon software, massage software, nail salon software, eyelash salon software, POS software, settlement software, and customer management software",
"business_name": "",
"country": "USA",
"seo_score": 77,
"tech_spend": 24095,
"crawled_at": "2026-04-21T16:46:43.43147277Z",
"technologies": [
"Bookform",
"Booking Affiliate",
"Bulma",
"Business Promotion",
"Create React App",
"DAV",
"Font Awesome",
"Google Analytics",
"Google My Business",
"Google Tag Manager",
"IcoMoon",
"Instagram Follow Button",
"Microsoft Azure",
"Microsoft IIS",
"Pleroma",
"QUIC",
"Tailwind CSS",
"UTF-8",
"Visual Studio",
"YouTube",
"jQuery"
]
},
{
"domain": "toppickrealestate.ca",
"title": "Peter Thymaras - Picking Calgary's Best real estate since 2003 | Experience & Passion",
"business_name": "",
"country": "CAN",
"seo_score": 72,
"tech_spend": 11536,
"crawled_at": "2026-04-21T16:38:19.984953174Z",
"technologies": [
"Alternate Protocol",
"Apture Linking Platform",
"AvenueHQ",
"Cornerstone",
"Create React App",
"DAV",
"EmbedPress",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"Font Awesome",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"Microdata for Google Shopping",
"Negate",
"Nginx",
"PHP",
"Pleroma",
"Theme In WP",
"UTF-8",
"Ultimate Blocks",
"University or College",
"Vimeo",
"WordPress",
"WordPress Multisite",
"eLand",
"jQuery"
]
},
{
"domain": "lyss.hu",
"title": "LYSS | Teeth whitening from the comfort of home",
"business_name": "",
"country": "",
"seo_score": 67,
"tech_spend": 4524,
"crawled_at": "2026-04-21T16:35:56.17566401Z",
"technologies": [
"Apture Linking Platform",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"Django Language",
"Express",
"Google Related Website Sites",
"GraphQL",
"IcoMoon",
"Instagram Follow Button",
"Microdata for Google Shopping",
"QUIC",
"Shopify",
"Shopify Collabs",
"Shopify Payments",
"Svelte",
"Tailwind CSS",
"UTF-8",
"hCaptcha",
"reCAPTCHA",
"shadcn ui"
]
},
{
"domain": "caritasmeba.es",
"title": "Cáritas Mérida-Badajoz | Ayúdanos a estar donde más nos necesitan",
"business_name": "",
"country": "ESP",
"seo_score": 77,
"tech_spend": 27699,
"crawled_at": "2026-04-21T16:26:20.012092129Z",
"technologies": [
"Alternate Protocol",
"Amazon WAF Blocked",
"Apache",
"AutoComplete",
"CDN JS",
"Cisco/Arrowpoint Content Service Switch",
"Cloudflare",
"Cloudflare CDN",
"Content ad",
"Create React App",
"DuracellTomi Google Tag Manager for WordPress",
"Expedient",
"GZIP Module",
"GitHub Hosting",
"Google Analytics",
"Google Cloud DNS",
"Google Maps",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"IcoMoon",
"Instagram Follow Button",
"Koko Analytics",
"Line2",
"Microdata for Google Shopping",
"PHP",
"PWA",
"Pleroma",
"Twitter Ads",
"UTF-8",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery",
"jsDelivr",
"reCAPTCHA"
]
},
{
"domain": "abiggerhouse.com",
"title": "Nashville, TN Home Builder | Norfleet Builders | Norfleet Builders",
"business_name": "",
"country": "",
"seo_score": 72,
"tech_spend": 82600,
"crawled_at": "2026-04-21T16:05:20.000048237Z",
"technologies": [
"Adobe Creative Cloud WebFonts",
"Alternate Protocol",
"Amazon CloudFront",
"Amazon S3 CDN",
"CloudFront",
"Coming Soon Page",
"Create React App",
"DAV",
"Endis",
"Express",
"Fireblade",
"GZIP Module",
"Google Analytics",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"Investor Relations",
"Line2",
"NFOrce Internet",
"PWA",
"Perl",
"Pleroma",
"QUIC",
"SMC",
"Storyblocks",
"UTF-8",
"Unix",
"WordPress SEO Structured Data Schema Plugin",
"YouTube"
]
},
{
"domain": "onpassiveindia.com",
"title": "Trade Gpt",
"business_name": "",
"country": "",
"seo_score": 50,
"tech_spend": 942,
"crawled_at": "2026-04-21T15:56:19.990085478Z",
"technologies": [
"AJAX Libraries API",
"Amazon S3 CDN",
"Apache",
"CDN JS",
"Chakra UI",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"ETranslate",
"Font Awesome",
"GTranslate",
"GZIP Module",
"Google Cloud DNS",
"Google My Business",
"Instagram Follow Button",
"Pleroma",
"Storyblocks",
"Telegram",
"UTF-8",
"YouTube",
"jQuery",
"shadcn ui"
]
},
{
"domain": "hotelvillam.com",
"title": "Hotel Villam",
"business_name": "",
"country": "POL",
"seo_score": 62,
"tech_spend": 5170,
"crawled_at": "2026-04-21T15:55:34.617640815Z",
"technologies": [
"Content Delivery Network",
"Create React App",
"DAV",
"Fastly",
"Google",
"Google Cloud DNS",
"Google Font API",
"No-Q",
"PWA",
"Pleroma",
"UTF-8"
]
},
{
"domain": "computerrecyclingguys.com.au",
"title": "Business E-Waste Collection & Computer Recycling Brisbane | The Computer Recycling Guys",
"business_name": "The Computer Recycling Guys",
"country": "AUS",
"seo_score": 77,
"tech_spend": "",
"crawled_at": "2026-04-21T15:47:20.024945169Z",
"technologies": [
"Adult Content",
"Create React App",
"GZIP Module",
"Microdata for Google Shopping",
"Nginx",
"Pleroma",
"QUIC",
"Tailwind CSS",
"Thank You",
"UTF-8",
"Ubuntu"
]
},
{
"domain": "ehlaboras.es",
"title": "Economía solidaria, colabora con el comercio justo | Cáritas",
"business_name": "",
"country": "COL",
"seo_score": 77,
"tech_spend": 1979,
"crawled_at": "2026-04-21T15:44:19.995055665Z",
"technologies": [
"Alternate Protocol",
"Amazon WAF Blocked",
"Apache",
"AutoComplete",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Content ad",
"Create React App",
"DuracellTomi Google Tag Manager for WordPress",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Maps",
"Google My Business",
"Google Tag Manager",
"IcoMoon",
"Instagram Follow Button",
"Koko Analytics",
"Line2",
"Microdata for Google Shopping",
"PHP",
"PWA",
"Pleroma",
"Twitter Ads",
"UTF-8",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery",
"jsDelivr",
"reCAPTCHA"
]
},
{
"domain": "communityyeg.ca",
"title": "Daniel Israel | Redefining Value in a new era of residential real estate",
"business_name": "",
"country": "CAN",
"seo_score": 82,
"tech_spend": 3597,
"crawled_at": "2026-04-21T15:29:13.483021488Z",
"technologies": [
"Alternate Protocol",
"Apture Linking Platform",
"AvenueHQ",
"Create React App",
"ElementUI",
"Elfsight",
"EmbedPress",
"Font Awesome",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Nginx",
"PHP",
"Pleroma",
"QUIC",
"The Deck",
"Theme In WP",
"Twitter Ads",
"UTF-8",
"Ultimate Blocks",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "lqpigment.com",
"title": "Iron Oxide Gray: Subtle Pigmentation for Refined Color Applications Lingqiao Chemical",
"business_name": "",
"country": "CHN",
"seo_score": 77,
"tech_spend": 912,
"crawled_at": "2026-04-21T15:09:58.218048917Z",
"technologies": [
"Alternate Protocol",
"Create React App",
"GZIP Module",
"Google Related Website Sites",
"Layui",
"Line2",
"Microdata for Google Shopping",
"Nginx",
"PHP",
"Pleroma",
"Sitelinks Search Box",
"Tailwind CSS",
"UTF-8",
"WhatsApp Sharing"
]
},
{
"domain": "sweetkey.online",
"title": "Sweetkey - AI Rental Recommedation",
"business_name": "",
"country": "USA",
"seo_score": 77,
"tech_spend": 2539,
"crawled_at": "2026-04-21T14:44:19.984463997Z",
"technologies": [
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"Font Awesome",
"GZIP Module",
"Google",
"Google Cloud DNS",
"Google Font API",
"Instagram Follow Button",
"Neighborhoods",
"Nginx",
"Pico CSS",
"Pleroma",
"QUIC",
"UTF-8",
"Ubuntu",
"University or College"
]
},
{
"domain": "mrteak.co.uk",
"title": "Luxury Teak Garden Furniture | Mr Teak",
"business_name": "",
"country": "",
"seo_score": 70,
"tech_spend": 24764,
"crawled_at": "2026-04-21T14:43:41.083796354Z",
"technologies": [
"Apture Linking Platform",
"Bing Cashback",
"Bing Conversion Tracking",
"Cisco/Arrowpoint Content Service Switch",
"Cloudflare",
"Cloudflare CDN",
"Create React App",
"DAV",
"Express",
"Fireblade",
"Google Analytics",
"Google Related Website Sites",
"Google Tag Manager",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Poptin",
"QUIC",
"Schema Plugin",
"Shopify",
"Shopify Collabs",
"Tailwind CSS",
"UTF-8",
"hCaptcha",
"reCAPTCHA"
]
},
{
"domain": "infolanguage.it",
"title": "Infolanguage - Infolanguage",
"business_name": "",
"country": "ITA",
"seo_score": 72,
"tech_spend": 6724,
"crawled_at": "2026-04-21T14:32:20.010438079Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Azion",
"Bulma",
"Create React App",
"Cybot",
"Font Awesome",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"PWA",
"Pleroma",
"UTF-8",
"Ubuntu",
"Vector Internet Services",
"YouTube",
"jsDelivr"
]
},
{
"domain": "thecolorinsider.com",
"title": "Color Insider | Substack",
"business_name": "",
"country": "",
"seo_score": 72,
"tech_spend": 4968,
"crawled_at": "2026-04-21T14:17:16.126069973Z",
"technologies": [
"Alternate Protocol",
"Amazon S3 CDN",
"Amazon WAF Blocked",
"Apture Linking Platform",
"Cloudflare",
"Cloudflare Web Analytics",
"Content Delivery Network",
"Create React App",
"DAV",
"Express",
"Google",
"Google Cloud CDN",
"Gravity",
"IcoMoon",
"Microdata for Google Shopping",
"NFOrce Internet",
"Pleroma",
"QUIC",
"Sentry",
"Sitelinks Search Box",
"Storyblocks",
"UTF-8"
]
},
{
"domain": "gamesbazaar.pk",
"title": "GamesBazaar",
"business_name": "",
"country": "TUR",
"seo_score": 60,
"tech_spend": 6063,