-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsample.json
More file actions
17280 lines (17280 loc) · 402 KB
/
sample.json
File metadata and controls
17280 lines (17280 loc) · 402 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": "ratcliffefoundation.com",
"title": "Ratcliffe Foundation | Empowering Entrepreneurs",
"business_name": "Ratcliffe Foundation",
"country": "USA",
"seo_score": 82,
"tech_spend": 28791,
"crawled_at": "2026-04-26T12:14:20.051458785Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Cloudflare",
"CoBlocks",
"Content Delivery Network",
"Digital Ocean Spaces",
"EmbedPress",
"Google",
"Google Analytics",
"Google Cloud CDN",
"Google Tag Manager",
"Idaq",
"Microdata for Google Shopping",
"PHP",
"QUIC",
"Termageddon",
"Theme In WP",
"UTF-8",
"University or College",
"Usercentrics",
"Vector Internet Services",
"WP Engine",
"WordPress",
"WordPress Multisite",
"accessiBe",
"jQuery"
]
},
{
"domain": "verde-al.com",
"title": "Verde Landscaping of Alabama – Landscaping company serving Birmingham, Alabama.",
"business_name": "",
"country": "USA",
"seo_score": 65,
"tech_spend": 6748,
"crawled_at": "2026-04-26T12:14:20.050859602Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Bunny Fonts",
"Elementor",
"EmbedPress",
"Hello Elementor",
"NFOrce Internet",
"PHP",
"Perl",
"Theme In WP",
"UTF-8",
"Vector Internet Services",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "wendycorp.com",
"title": "QuickBooks - Wendy Corp Bookkeeping Services - Contractors, Builders, Manufacturers",
"business_name": "Wendy P. Corp",
"country": "PER",
"seo_score": 77,
"tech_spend": 65571,
"crawled_at": "2026-04-26T12:14:20.050779963Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Beaver Builder Lite",
"Cloudflare",
"Cloudflare CDN",
"Content Delivery Network",
"Contento",
"EmbedPress",
"Fireblade",
"Google Analytics",
"Google Tag Manager",
"Microdata for Google Shopping",
"PHP",
"QUIC",
"RM Education",
"Schema Plugin",
"Theme In WP",
"UTF-8",
"WP Engine",
"WordPress",
"WordPress Multisite",
"accessiBe",
"jQuery"
]
},
{
"domain": "publichelpdesk.com",
"title": "Home - Public Help Desk",
"business_name": "",
"country": "IND",
"seo_score": 72,
"tech_spend": 2539,
"crawled_at": "2026-04-26T12:14:20.05056609Z",
"technologies": [
"Bulma",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Font Awesome",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"LiteSpeed",
"PHP",
"QUIC",
"Tailwind CSS",
"UTF-8",
"jsDelivr"
]
},
{
"domain": "platinum592.com",
"title": "Platinum Enterprises Inc – Platinum Enterprises Inc",
"business_name": "",
"country": "GBR",
"seo_score": 70,
"tech_spend": 17829,
"crawled_at": "2026-04-26T12:14:20.050933585Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Contact Form Plugin",
"Content Delivery Network",
"DAV",
"Elementor",
"ElementsKit Elementor",
"EmbedPress",
"Essential Grid",
"Fontello",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Maps",
"Google My Business",
"Google Tag Manager",
"Header, Footer and Blocks for Elementor",
"Instagram Follow Button",
"LiteSpeed",
"NFOrce Internet",
"PHP",
"Sapper",
"Simple Lightbox",
"Smart Slider 3",
"Table Addons for Elementor",
"Theme In WP",
"Tidio",
"UTF-8",
"WoWonder",
"Woo Themes",
"WooCommerce",
"WooCommerce Checkout",
"WordPress",
"WordPress Multisite",
"eLand",
"jQuery"
]
},
{
"domain": "canaancc.org",
"title": "Canaan Christian Church",
"business_name": "",
"country": "USA",
"seo_score": 65,
"tech_spend": 7868,
"crawled_at": "2026-04-26T12:14:20.049789441Z",
"technologies": [
"Alternate Protocol",
"Amazon S3 CDN",
"CDN JS",
"Church Center",
"Cloudflare",
"Cloudflare CDN",
"Cloudinary",
"Content Delivery Network",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Tag Manager",
"IcoMoon",
"Instagram Follow Button",
"PHP",
"Storyblocks",
"Theme In WP",
"Twitter Ads",
"UTF-8",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "smpspecialists.co.uk",
"title": "Best Scalp Micropigmentation in the UK | SMP Specialists",
"business_name": "SMP Specialists",
"country": "USA",
"seo_score": 82,
"tech_spend": 91186,
"crawled_at": "2026-04-26T12:14:20.048517026Z",
"technologies": [
"Alternate Protocol",
"Autoptimize",
"CCSI",
"Content Delivery Network",
"Elementor",
"EmbedPress",
"Financial Services Guide",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Related Website Sites",
"Google Tag Manager",
"Instagram Follow Button",
"KVH",
"LiteSpeed",
"Microdata for Google Shopping",
"PHP",
"QUIC",
"QuadLayers",
"SMC",
"Theme In WP",
"UTF-8",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "niederberger-paint.ch",
"title": "Christina Niederberger – artist website",
"business_name": "",
"country": "",
"seo_score": 35,
"tech_spend": 120,
"crawled_at": "2026-04-26T12:14:20.047279622Z",
"technologies": [
"Adobe Creative Cloud WebFonts",
"Akismet",
"Alternate Protocol",
"EmbedPress",
"GZIP Module",
"Instagram Follow Button",
"Nginx",
"PHP",
"Theme In WP",
"UTF-8",
"WPFront Scroll Top",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "milos-rent-car.com",
"title": "Katris Cars - Rent a car in Milos easily and reliably",
"business_name": "Katris Cars",
"country": "GBR",
"seo_score": 82,
"tech_spend": 449,
"crawled_at": "2026-04-26T12:14:20.047775238Z",
"technologies": [
"Alternate Protocol",
"Booking Affiliate",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"GZIP Module",
"Google Analytics",
"Google Conversion Tracking",
"Google Customer Reviews",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Nginx",
"PHP",
"Parallels Plesk Panel",
"QUIC",
"Schema Plugin",
"Tailwind CSS",
"Twitter Ads",
"UTF-8",
"WordPress SEO Structured Data Schema Plugin",
"YouTube"
]
},
{
"domain": "adamskylaw.com",
"title": "Adamsky Law Offices - Life and Estate Planning Lawyer",
"business_name": "Adamsky Law Offices",
"country": "",
"seo_score": 72,
"tech_spend": 30888,
"crawled_at": "2026-04-26T12:14:20.04693298Z",
"technologies": [
"Alternate Protocol",
"Amazon WAF Blocked",
"BLR",
"Cloudflare",
"Contact Form Plugin",
"Content Delivery Network",
"EmbedPress",
"Fireblade",
"Font Awesome",
"Google",
"Google Analytics",
"Google Cloud CDN",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"Gravity",
"Microdata for Google Shopping",
"PHP",
"ThemeFusion",
"Tumblr",
"UTF-8",
"WP Engine",
"WP Rocket",
"WP jQuery Lightbox",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"reCAPTCHA"
]
},
{
"domain": "houstonskillgopalganj.com",
"title": "Home - houstonskillgopalganj.com",
"business_name": "",
"country": "IND",
"seo_score": 75,
"tech_spend": 3064,
"crawled_at": "2026-04-26T12:14:20.043174991Z",
"technologies": [
"Alternate Protocol",
"Content Delivery Network",
"CoreUI",
"EmbedPress",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"Instagram Follow Button",
"Line2",
"LiteSpeed",
"Microdata for Google Shopping",
"PHP",
"QUIC",
"Sitelinks Search Box",
"Theme In WP",
"UTF-8",
"Unsplash",
"WordPress",
"WordPress Multisite"
]
},
{
"domain": "simplinity.co",
"title": "Simplinity — We Build Unreasonably Fast.",
"business_name": "",
"country": "BEL",
"seo_score": 67,
"tech_spend": 2440,
"crawled_at": "2026-04-26T12:14:20.043517587Z",
"technologies": [
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Google",
"Google Cloud DNS",
"Google Font API",
"Nginx",
"PHP",
"Python"
]
},
{
"domain": "hvsarl.ch",
"title": "Entreprise de construction métallique Nyon | HV Sàrl",
"business_name": "HV Sarl",
"country": "CHE",
"seo_score": 82,
"tech_spend": 15403,
"crawled_at": "2026-04-26T12:14:20.041057963Z",
"technologies": [
"Alternate Protocol",
"Amazon WAF Blocked",
"Anti-spam for WordPress",
"Apache",
"Apture Linking Platform",
"CleanTalk Spam Protect",
"Elementor",
"EmbedPress",
"Fireblade",
"GZIP Module",
"Hello Elementor",
"Lazy Load for WordPress",
"Microdata for Google Shopping",
"PHP",
"UTF-8",
"WP Rocket",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "portsideplumbing.com.au",
"title": "Expert Plumbers in Gladstone | Portside Plumbing",
"business_name": "",
"country": "",
"seo_score": 67,
"tech_spend": 22022,
"crawled_at": "2026-04-26T12:14:20.03977349Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Amazon WAF Blocked",
"Bing Cashback",
"Cloudflare",
"Content Delivery Network",
"Elementor",
"EmbedPress",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Maps",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"Instagram Follow Button",
"Lazy Load for WordPress",
"Microdata for Google Shopping",
"NFOrce Internet",
"OceanWP",
"PHP",
"Theme In WP",
"UTF-8",
"WP Engine",
"WP Mobile Menu",
"WP Rocket",
"WPForms",
"Woo Themes",
"WooCommerce Checkout",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "abigailfarnsworth.com",
"title": "Abi Farnsworth – Theatrical Lighting Designer",
"business_name": "",
"country": "USA",
"seo_score": 70,
"tech_spend": 16289,
"crawled_at": "2026-04-26T12:14:20.038523127Z",
"technologies": [
"Alternate Protocol",
"Content Delivery Network",
"ContentBox",
"EmbedPress",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Recommendations AI",
"Nginx",
"PHP",
"Sign In With Google",
"Theme In WP",
"UTF-8",
"University or College",
"WP Engine",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "bluemoon-creations.com",
"title": "Blue Moon Creations",
"business_name": "",
"country": "IND",
"seo_score": 60,
"tech_spend": 1239,
"crawled_at": "2026-04-26T12:14:20.038103875Z",
"technologies": [
"AI Log",
"Express",
"Nginx",
"PHP",
"QUIC",
"Slider Revolution",
"Tailwind CSS",
"UTF-8",
"Vector Internet Services",
"jQuery"
]
},
{
"domain": "champsswimclub.com",
"title": "Swim Club – Registration",
"business_name": "",
"country": "USA",
"seo_score": 82,
"tech_spend": 44868,
"crawled_at": "2026-04-26T12:14:20.027537854Z",
"technologies": [
"Alternate Protocol",
"Beaver Builder Lite",
"Cloudflare",
"Content Delivery Network",
"Contento",
"EmbedPress",
"GoDaddy",
"Google",
"Google Cloud DNS",
"Google Font API",
"Gravity",
"Gravity Forms",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Oddle",
"PHP",
"Schema Plugin",
"SiteW",
"Theme In WP",
"UTF-8",
"Wangsu",
"Website Tonight",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "drcharlenebolton.com",
"title": "Dr. Charlene Bolton – Personal Growth Coach",
"business_name": "",
"country": "GBR",
"seo_score": 65,
"tech_spend": 1736,
"crawled_at": "2026-04-26T12:14:20.026733313Z",
"technologies": [
"Alternate Protocol",
"Amazon WAF Blocked",
"Apache",
"Automattic",
"Contact Form Plugin",
"ConvertKit for Wordpress",
"EmbedPress",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"IcoMoon",
"Jetpack",
"MailChimp for WordPress",
"PHP",
"PositiveSSL Badge",
"QUIC",
"Theme In WP",
"TrustLogo",
"UTF-8",
"University or College",
"WP Super Cache",
"WPBakery",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"WordPress Stats",
"YouTube",
"jQuery"
]
},
{
"domain": "mylifewise.biz",
"title": "MyLifeWise.biz is a Community Site Powered by Life Wise Independent Partners",
"business_name": "",
"country": "",
"seo_score": 60,
"tech_spend": 211,
"crawled_at": "2026-04-26T12:14:20.026951761Z",
"technologies": [
"All-in-One Event Calendar for WordPress",
"Alternate Protocol",
"Apache",
"Compact WP Audio Player",
"EmbedPress",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google Maps",
"HurryTimer",
"PHP",
"QUIC",
"Slider Revolution",
"Theme In WP",
"UTF-8",
"WPBakery",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery"
]
},
{
"domain": "naselje-pirinhud.hr",
"title": "PIRINHUD",
"business_name": "PIRINHUD",
"country": "HRV",
"seo_score": 72,
"tech_spend": 16348,
"crawled_at": "2026-04-26T12:14:20.026145307Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Content Delivery Network",
"ElementUI",
"EmbedPress",
"Font Awesome",
"Google My Business",
"Instagram Follow Button",
"Microdata for Google Shopping",
"PHP",
"Theme In WP",
"UTF-8",
"WP Engine",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery",
"jsDelivr"
]
},
{
"domain": "franklebon.co.uk",
"title": "Frank Lebon",
"business_name": "",
"country": "",
"seo_score": 35,
"tech_spend": 440,
"crawled_at": "2026-04-26T12:14:20.024120658Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Cloudflare",
"Content Delivery Network",
"EmbedPress",
"Instagram Follow Button",
"PHP",
"Theme In WP",
"UTF-8",
"WP Engine",
"WordPress",
"WordPress Multisite"
]
},
{
"domain": "darmaltun.com",
"title": "MartFury - Laravel Ecommerce system",
"business_name": "MartFury - Laravel Ecommerce system",
"country": "",
"seo_score": 67,
"tech_spend": 7796,
"crawled_at": "2026-04-26T12:14:20.024753691Z",
"technologies": [
"Alternate Protocol",
"Botble",
"Coming Soon Page",
"Daily Deals",
"Fastly CDN",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Play",
"IcoMoon",
"LiteSpeed",
"Microdata for Google Shopping",
"PHP",
"Perl",
"QUIC",
"UTF-8",
"YouTube"
]
},
{
"domain": "lgorganized.com",
"title": "Home - Lets Get Organized",
"business_name": "Lets Get Organized",
"country": "USA",
"seo_score": 77,
"tech_spend": 21618,
"crawled_at": "2026-04-26T12:14:20.024336814Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Amazon Widgets",
"Apache",
"Baidu Cloud",
"Elementor",
"EmbedPress",
"Essential Addons for Elementor",
"Free Call",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"Instagram Follow Button",
"JetElements",
"Jupiter X Core",
"Microdata for Google Shopping",
"Modern Events Calendar Lite",
"MonsterInsights",
"NFOrce Internet",
"PHP",
"QUIC",
"Schema Plugin",
"Slider Revolution",
"Table Addons for Elementor",
"Theme In WP",
"UTF-8",
"Woo Themes",
"WooCommerce",
"WooCommerce Checkout",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "drmarjorieschuman.com",
"title": "Dr. Marjorie Schuman | Clinical Psychologist | Mindfulness Practice",
"business_name": "",
"country": "USA",
"seo_score": 77,
"tech_spend": 54596,
"crawled_at": "2026-04-26T12:14:20.023349398Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Cloudflare",
"Cloudflare CDN",
"Cloudflare Web Analytics",
"Content Delivery Network",
"Elementor",
"EmbedPress",
"Essential Addons for Elementor",
"Financial Services Guide",
"Fireblade",
"Google Analytics",
"Google My Business",
"Google Tag Manager",
"Instagram Feed for WordPress",
"Instagram Follow Button",
"Jupiter X Core",
"KVH",
"Microdata for Google Shopping",
"MonsterInsights",
"NFOrce Internet",
"PHP",
"QUIC",
"Schema Plugin",
"Theme In WP",
"UTF-8",
"WP Engine",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "fluetech.co.uk",
"title": "Home - Chimney and Fire Installations and Sweeps",
"business_name": "Fluetech Ltd",
"country": "CAN",
"seo_score": 77,
"tech_spend": 3061,
"crawled_at": "2026-04-26T12:14:20.022051463Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Contact Form Plugin",
"Elementor",
"ElementsKit Elementor",
"EmbedPress",
"Font Awesome",
"Header, Footer and Blocks for Elementor",
"Hello Elementor",
"IcoMoon",
"Instagram Follow Button",
"Microdata for Google Shopping",
"NFOrce Internet",
"OpenSSL",
"PHP",
"Prime Slide for Elementor",
"QUIC",
"Sitelinks Search Box",
"Theme In WP",
"UTF-8",
"Unix",
"WordPress",
"WordPress Multisite",
"Yell Business",
"jQuery"
]
},
{
"domain": "apco.ly",
"title": "Aali Al Puruj Oil Company – We believe in Quality & Efficiency",
"business_name": "",
"country": "LBN",
"seo_score": 70,
"tech_spend": 49,
"crawled_at": "2026-04-26T12:14:20.020959079Z",
"technologies": [
"Alternate Protocol",
"Apache",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"EmbedPress",
"GZIP Module",
"PHP",
"Theme In WP",
"WordPress",
"WordPress Multisite"
]
},
{
"domain": "plaster-cornices.com",
"title": "Plaster Cornices",
"business_name": "",
"country": "",
"seo_score": 45,
"tech_spend": 358,
"crawled_at": "2026-04-26T12:14:20.019721014Z",
"technologies": [
"Alternate Protocol",
"Contact Form Plugin",
"Content Delivery Network",
"Easy Table for WordPress",
"EmbedPress",
"GTranslate",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"IcoMoon",
"LayerSlider Responsive",
"OpenResty",
"PHP",
"Theme In WP",
"UTF-8",
"WoWonder",
"WordPress",
"WordPress Multisite",
"eLand",
"jQuery"
]
},
{
"domain": "privatefinance.hu",
"title": "PRIVATE Finance Zrt",
"business_name": "",
"country": "HUN",
"seo_score": 55,
"tech_spend": 159,
"crawled_at": "2026-04-26T12:14:20.019477607Z",
"technologies": [
"Apache",
"Bulma",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"ISO/IEC 8859",
"IcoMoon",
"PHP",
"UTF-8",
"Urchin 5"
]
},
{
"domain": "icarelibrary.com",
"title": "Home - iCare Library",
"business_name": "iCare Library",
"country": "",
"seo_score": 67,
"tech_spend": 19432,
"crawled_at": "2026-04-26T12:14:20.017395141Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Cloudflare",
"Cloudflare CDN",
"Coming Soon Page",
"Content Delivery Network",
"Custom Twitter Feeds",
"DAV",
"EmbedPress",
"Express",
"Genesis Blocks",
"Google",
"Google Analytics",
"Google My Business",
"Google Tag Manager",
"Microdata for Google Shopping",
"MonsterInsights",
"Nginx",
"PHP",
"Pagekit",
"Schema Plugin",
"Smush Image Optimization",
"Theme In WP",
"To Top",
"UTF-8",
"Ultimate Blocks",
"WP Engine",
"WordPress",
"WordPress Multisite"
]
},
{
"domain": "southportlodge.com.au",
"title": "Southport Lodge Nursing and Personal Care",
"business_name": "Southport Lodge",
"country": "AUS",
"seo_score": 77,
"tech_spend": 1387,
"crawled_at": "2026-04-26T12:14:20.016854677Z",
"technologies": [
"Adobe Creative Cloud WebFonts",
"Alternate Protocol",
"Content Delivery Network",
"DAV",
"ElementUI",
"EmbedPress",
"Font Awesome",
"GZIP Module",
"Google Analytics",
"Google Related Website Sites",
"Google Tag Manager",
"Gravity",
"Gravity Forms",
"Instagram Follow Button",
"Lazy Load for WordPress",
"Microdata for Google Shopping",
"Nginx",
"PHP",
"Tailwind CSS",
"Theme In WP",
"UTF-8",
"University or College",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "wearethegatekeepers.org",
"title": "We are the Gatekeepers | Just another WordPress site",
"business_name": "",
"country": "USA",