-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsample.json
More file actions
18574 lines (18574 loc) · 431 KB
/
Copy pathsample.json
File metadata and controls
18574 lines (18574 loc) · 431 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": "mad-blade.com",
"title": "MAD BLADE BARBERSHOP | Paralimni [ Book now ]",
"business_name": "MAD BLADE BARBERSHOP",
"country": "CYP",
"seo_score": 72,
"tech_spend": 278520,
"crawled_at": "2026-06-14T09:14:19.968523373Z",
"technologies": [
"ADFOX",
"AdRoll",
"Amazon",
"Amplitude",
"Attentive",
"Bing Cashback",
"Bing Conversion Tracking",
"Brevo",
"Bunny Fonts",
"ByteDance",
"CallRail",
"ClickCease",
"Content Square",
"ConvertBox",
"Convertful",
"DoubleClick Bid Manager",
"Facebook CDN",
"Facebook Reseller",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud",
"Google Cloud DNS",
"Google Cloud Storage",
"Google Font API",
"Google Maps",
"Google Matched Content",
"Google My Business",
"Google Reseller",
"Google Tag Manager",
"Inspectlet",
"Instagram Follow Button",
"LaunchDarkly",
"Mapp",
"Metricool",
"Microsoft Azure",
"Microsoft Clarity",
"Next.js",
"Ntent",
"PayPal Adaptive Payments",
"Pleroma",
"Poper",
"Popupsmart",
"QUIC",
"Quantcast Direct",
"Quantum Metric",
"Secure Privacy",
"Share Link",
"ShopBack",
"Sleeknote",
"Square",
"Storyblocks",
"Stripe",
"Taboola Direct",
"Taboola Reseller",
"Tagembed",
"Tailwind CSS",
"The Trade Desk Direct",
"Twitter Ads",
"UTF-8",
"UserWay",
"Way",
"Yahoo Image CDN",
"Yahoo Web Analytics",
"Yandex Hosting",
"jsDelivr",
"shadcn ui"
]
},
{
"domain": "findmycoupling.fi",
"title": "Fernco työkalupakki",
"business_name": "",
"country": "FIN",
"seo_score": 57,
"tech_spend": 635,
"crawled_at": "2026-06-11T05:53:00.806991252Z",
"technologies": [
"Apache",
"Better Lead Generation Services",
"GZIP Module",
"Google Analytics",
"Google Tag Manager",
"Sleeknote",
"Tailwind CSS",
"Twitter Ads",
"UTF-8",
"Ubuntu",
"YouTube",
"jQuery"
]
},
{
"domain": "percycutz.ca",
"title": "PercyCutz Studio. | Windsor [ Book now ]",
"business_name": "PercyCutz Studio.",
"country": "USA",
"seo_score": 77,
"tech_spend": 278520,
"crawled_at": "2026-06-10T15:24:25.198418723Z",
"technologies": [
"ADFOX",
"AdRoll",
"Amazon",
"Amplitude",
"Attentive",
"Bing Cashback",
"Bing Conversion Tracking",
"Brevo",
"Bunny Fonts",
"ByteDance",
"CallRail",
"ClickCease",
"Content Square",
"ConvertBox",
"Convertful",
"DoubleClick Bid Manager",
"Facebook CDN",
"Facebook Reseller",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud",
"Google Cloud DNS",
"Google Cloud Storage",
"Google Font API",
"Google Maps",
"Google Matched Content",
"Google My Business",
"Google Reseller",
"Google Tag Manager",
"Inspectlet",
"Instagram Follow Button",
"LaunchDarkly",
"Mapp",
"Metricool",
"Microsoft Azure",
"Microsoft Clarity",
"Next.js",
"Ntent",
"PayPal Adaptive Payments",
"Pleroma",
"Poper",
"Popupsmart",
"QUIC",
"Quantcast Direct",
"Quantum Metric",
"Secure Privacy",
"Share Link",
"ShopBack",
"Sleeknote",
"Square",
"Storyblocks",
"Stripe",
"Taboola Direct",
"Taboola Reseller",
"Tagembed",
"Tailwind CSS",
"The Trade Desk Direct",
"Twitter Ads",
"UTF-8",
"UserWay",
"Way",
"Yahoo Image CDN",
"Yahoo Web Analytics",
"Yandex Hosting",
"jsDelivr",
"shadcn ui"
]
},
{
"domain": "genaipdf.com",
"title": "IronPDF: C# PDF Library for .NET | 18M+ NuGet Downloads",
"business_name": "Iron Software",
"country": "USA",
"seo_score": 77,
"tech_spend": 150931,
"crawled_at": "2026-06-10T05:02:19.970893766Z",
"technologies": [
"Algolia",
"Alternate Protocol",
"Baidu Cloud",
"Content Delivery Network",
"Copy Anything to Clipboard",
"DAV",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"Fastly",
"Firebase",
"Fireblade",
"Font Awesome",
"FormSubmit",
"GitHub Hosting",
"Google",
"Google Analytics",
"Google Cloud CDN",
"Google Tag Manager",
"Heroku",
"HubSpot Conversations",
"Hubspot",
"K2F",
"KVH",
"Line2",
"LinkedIn Insights",
"Microdata for Google Shopping",
"Microsoft Clarity",
"Python",
"QUIC",
"Reddit Conversion Tracking",
"SMC",
"SiteW",
"Sleeknote",
"Tailwind CSS",
"Twitter Ads",
"UTF-8",
"VWO Engage",
"Visual Studio",
"Visual Website Optimizer",
"Yandex Hosting",
"YouTube"
]
},
{
"domain": "voicearchive.co.uk",
"title": "VoiceArchive • Human Voice Over Agency • Safe global deadlines",
"business_name": "Voicearchive",
"country": "USA",
"seo_score": 67,
"tech_spend": 15930,
"crawled_at": "2026-06-10T00:26:29.414360145Z",
"technologies": [
"Alternate Protocol",
"Better Lead Generation Services",
"Bitrix",
"Bitrix24",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Content Delivery Network",
"EmbedPress",
"Express",
"GZIP Module",
"Google Analytics",
"Google Tag Manager",
"Hive.co",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Nginx",
"PHP",
"Sleeknote",
"Tailwind CSS",
"Theme In WP",
"UTF-8",
"Vector Internet Services",
"WP Engine",
"WordPress",
"WordPress Multisite",
"YouTube",
"eLand"
]
},
{
"domain": "valpianni.com",
"title": "VALPIANNI | Layer Cut Specialist | Men & Women | Luxury Hair Studio | | Glasgow [ Book now ]",
"business_name": "VALPIANNI | Layer Cut Specialist | Men & Women | Luxury Hair Studio |",
"country": "GBR",
"seo_score": 77,
"tech_spend": 293520,
"crawled_at": "2026-06-08T01:43:59.186827072Z",
"technologies": [
"ADFOX",
"AdRoll",
"Amazon",
"Amplitude",
"Attentive",
"Bing Cashback",
"Bing Conversion Tracking",
"Brevo",
"Bunny Fonts",
"ByteDance",
"CallRail",
"ClickCease",
"Content Square",
"ConvertBox",
"Convertful",
"DoubleClick Bid Manager",
"Facebook CDN",
"Facebook Reseller",
"Financial Services Guide",
"Fireblade",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud",
"Google Cloud DNS",
"Google Cloud Storage",
"Google Font API",
"Google Maps",
"Google Matched Content",
"Google My Business",
"Google Reseller",
"Google Tag Manager",
"Inspectlet",
"Instagram Follow Button",
"LaunchDarkly",
"Mapp",
"Metricool",
"Microsoft Azure",
"Microsoft Clarity",
"Next.js",
"Ntent",
"PayPal Adaptive Payments",
"Pleroma",
"Poper",
"Popupsmart",
"QUIC",
"Quantcast Direct",
"Quantum Metric",
"Secure Privacy",
"Share Link",
"ShopBack",
"Sleeknote",
"Square",
"Storyblocks",
"Stripe",
"Taboola Direct",
"Taboola Reseller",
"Tagembed",
"Tailwind CSS",
"The Trade Desk Direct",
"Twitter Ads",
"UTF-8",
"UserWay",
"Way",
"Yahoo Image CDN",
"Yahoo Web Analytics",
"Yandex Hosting",
"jsDelivr",
"shadcn ui"
]
},
{
"domain": "foothillsbikes.com",
"title": "FootHills Bicycle Repair | Scottsdale [ Book now ]",
"business_name": "FootHills Bicycle Repair",
"country": "USA",
"seo_score": 77,
"tech_spend": 278520,
"crawled_at": "2026-06-08T01:23:19.969124524Z",
"technologies": [
"ADFOX",
"AdRoll",
"Amazon",
"Amplitude",
"Attentive",
"Bing Cashback",
"Bing Conversion Tracking",
"Brevo",
"Bunny Fonts",
"ByteDance",
"CallRail",
"ClickCease",
"Content Square",
"ConvertBox",
"Convertful",
"DAV",
"DoubleClick Bid Manager",
"Express",
"Facebook CDN",
"Facebook Reseller",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud",
"Google Cloud DNS",
"Google Cloud Storage",
"Google Font API",
"Google Maps",
"Google Matched Content",
"Google My Business",
"Google Reseller",
"Google Tag Manager",
"Inspectlet",
"Instagram Follow Button",
"LaunchDarkly",
"Mapp",
"Metricool",
"Microsoft Azure",
"Microsoft Clarity",
"Next.js",
"Ntent",
"PayPal Adaptive Payments",
"Perl",
"Pleroma",
"Poper",
"Popupsmart",
"QUIC",
"Quantcast Direct",
"Quantum Metric",
"Secure Privacy",
"Share Link",
"ShopBack",
"Sleeknote",
"Square",
"Storyblocks",
"Stripe",
"Taboola Direct",
"Taboola Reseller",
"Tagembed",
"Tailwind CSS",
"The Trade Desk Direct",
"Twitter Ads",
"UTF-8",
"UserWay",
"Way",
"Yahoo Image CDN",
"Yahoo Web Analytics",
"Yandex Hosting",
"jsDelivr",
"shadcn ui"
]
},
{
"domain": "scottdunn.com.mx",
"title": "Luxury Holidays | Luxury Travel & Tour Agents 2026/2027 | Scott Dunn UK",
"business_name": "",
"country": "CHN",
"seo_score": 82,
"tech_spend": 141299,
"crawled_at": "2026-06-07T08:26:26.211637907Z",
"technologies": [
"Alternate Protocol",
"Amazon",
"Amazon CloudFront",
"Amazon Route 53",
"Amazon WAF Blocked",
"Apture Linking Platform",
"Auth0",
"Bing Cashback",
"CloudFront",
"Cloudflare",
"Cloudflare Stream",
"Content Square",
"DoubleClick Bid Manager",
"Express",
"Facebook Reseller",
"GZIP Module",
"GetResponse",
"GitHub Hosting",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Matched Content",
"Google My Business",
"Google Reseller",
"Google Tag Manager",
"Instagram Follow Button",
"KVH",
"LaunchDarkly",
"LiveChat",
"LiveChat Monitoring",
"Microdata for Google Shopping",
"Microsoft Azure",
"New Relic",
"Oddle",
"OneTrust Domain Verification",
"PWA",
"Schema Plugin",
"Sleeknote",
"Storyblocks",
"Stripe",
"UTF-8",
"University or College",
"Vercel",
"Visual Studio",
"YouTube",
"eLand",
"jsDelivr",
"reCAPTCHA"
]
},
{
"domain": "krow-x.com",
"title": "Home - krow.x",
"business_name": "",
"country": "GBR",
"seo_score": 67,
"tech_spend": 23741,
"crawled_at": "2026-06-06T17:45:24.69086012Z",
"technologies": [
"AJAX Libraries API",
"Alternate Protocol",
"Apache",
"Better Lead Generation Services",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"CookieConsent",
"Express",
"FormSubmit",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"HubSpot Conversations",
"HubSpot WordPress Plugin",
"Hubspot",
"IcoMoon",
"Instagram Follow Button",
"Microdata for Google Shopping",
"PHP",
"QUIC",
"Sleeknote",
"Twitter Ads",
"UTF-8",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery",
"jsDelivr",
"reCAPTCHA"
]
},
{
"domain": "digitechbe.co.uk",
"title": "Digitech Lincolnshire is now Spectrum Print | Digitech BE Copiers",
"business_name": "Spectrum Print",
"country": "AUS",
"seo_score": 77,
"tech_spend": 75043,
"crawled_at": "2026-06-06T13:16:41.993906532Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Better Lead Generation Services",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Content Delivery Network",
"CookieYes",
"EmbedPress",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"Fastly",
"Fonts Plugin",
"GZIP Module",
"Genesis Blocks",
"Google",
"Google Analytics",
"Google Cloud CDN",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Tag Manager",
"Gravity",
"Gravity Forms",
"IcoMoon",
"Instagram Follow Button",
"Line2",
"LinkedIn Insights",
"LinkedIn Pixel",
"Linktree",
"Microdata for Google Shopping",
"Nectar Slide Plugin",
"Ntent",
"PHP",
"Perl",
"Plausible Analytics",
"Popup Maker for Wordpress",
"QUIC",
"SMC",
"Sleeknote",
"Theme In WP",
"TrustIndex",
"UTF-8",
"WPBakery",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "woodupp.com.na",
"title": "Wooden slat wall, wall panels & acoustic panels » WoodUpp",
"business_name": "WoodUpp",
"country": "IRL",
"seo_score": 82,
"tech_spend": 60280,
"crawled_at": "2026-06-06T02:03:31.472229697Z",
"technologies": [
"Alternate Protocol",
"Automattic",
"Better Lead Generation Services",
"Cisco/Arrowpoint Content Service Switch",
"Content Delivery Network",
"EmbedPress",
"Express",
"Fastly",
"Financial Services Guide",
"Fireblade",
"GitHub Hosting",
"Google Analytics",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"HubSpot WordPress Plugin",
"IcoMoon",
"Instagram Follow Button",
"Klaviyo",
"Klaviyo for WordPress",
"LiteSpeed",
"M247",
"Microdata for Google Shopping",
"NFOrce Internet",
"Ntent",
"PHP",
"QUIC",
"QuadLayers",
"Sleeknote",
"Tailwind CSS",
"Thank You",
"Theme In WP",
"TrustIndex",
"UTF-8",
"Woo Themes",
"WooCommerce",
"WooCommerce Checkout",
"WooFramework",
"WordPress",
"WordPress Multisite",
"eLand"
]
},
{
"domain": "elitemarkys.com",
"title": "Gourmet Grocery Store - Buy Caviar and Gourmet Food Online | Marky's",
"business_name": "Marky's",
"country": "USA",
"seo_score": 77,
"tech_spend": 432144,
"crawled_at": "2026-06-04T04:52:45.582522269Z",
"technologies": [
"Accelerated Mobile Pages",
"Adobe Analytics",
"Adobe Marketing Cloud",
"Algolia",
"Amazon",
"Amazon CloudFront",
"Amazon Route 53",
"Amazon WAF Blocked",
"Better Lead Generation Services",
"Bing Cashback",
"Bing Conversion Tracking",
"Braintree",
"ByteDance",
"CloudFront",
"Cloudflare",
"Cloudflare CDN",
"Content Delivery Network",
"DemDex",
"DoubleClick Bid Manager",
"Drip",
"Express",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"Fastly",
"Font Awesome",
"FreeCSSTemplates",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud CDN",
"Google Cloud DNS",
"Google Conversion Tracking",
"Google Maps",
"Google My Business",
"Google Tag Manager",
"IcoMoon",
"Instagram Follow Button",
"Klarna",
"Magento",
"Magento Enterprise",
"MailChimp",
"Microdata for Google Shopping",
"PHP",
"PayPal Adaptive Payments",
"Pinterest Conversion Tracking",
"QUIC",
"Rakuten Affiliate",
"Resy",
"Schema Plugin",
"ShareThis",
"SiteW",
"Sitelinks Search Box",
"Sleeknote",
"Squid",
"Storyblocks",
"Tailwind CSS",
"Thank You",
"The Fresh",
"TikTok Conversion Tracking Pixel",
"Trusted Shops",
"Twitter Ads",
"UTF-8",
"Vimeo",
"Vimeo CDN",
"Way",
"Wirecard",
"YouTube",
"accessiBe",
"jsDelivr",
"reCAPTCHA"
]
},
{
"domain": "baxxmetz.dk",
"title": "METZ A/S | High-end Merchandise And Company Gifts | Responsible Solutions",
"business_name": "",
"country": "USA",
"seo_score": 92,
"tech_spend": 108922,
"crawled_at": "2026-06-03T23:47:10.238852075Z",
"technologies": [
"Aruba",
"Better Lead Generation Services",
"Contento",
"Cybot",
"EcoVadis",
"Express",
"FormSubmit",
"GZIP Module",
"Google",
"Google Cloud DNS",
"Google Font API",
"Line2",
"Magento Enterprise",
"Microdata for Google Shopping",
"Perl",
"QUIC",
"SiteW",
"Sleeknote",
"Squarespace",
"Trustpilot Reviews for WordPress",
"UTF-8",
"WordPress SEO Structured Data Schema Plugin",
"eLand"
]
},
{
"domain": "tavolachar.com",
"title": "tavola",
"business_name": "Tavola",
"country": "USA",
"seo_score": 75,
"tech_spend": 7725,
"crawled_at": "2026-06-02T09:28:19.113512821Z",
"technologies": [
"Adobe Creative Cloud WebFonts",
"Alternate Protocol",
"Amazon",
"Aruba",
"Better Lead Generation Services",
"Express",
"FormSubmit",
"GZIP Module",
"Google",
"Google Cloud DNS",
"Google Font API",
"Instagram Follow Button",
"Line2",
"Microdata for Google Shopping",
"Newsletter for Wordpress",
"Pico CSS",
"QUIC",
"Sleeknote",
"Squarespace",
"UTF-8",
"WordPress SEO Structured Data Schema Plugin",
"eLand"
]
},
{
"domain": "hoyermotors.com",
"title": "Motors and automation solutions – find the motor solution for your industry needs here",
"business_name": "",
"country": "CHN",
"seo_score": 77,
"tech_spend": 38471,
"crawled_at": "2026-05-31T22:51:48.140672849Z",
"technologies": [
"AWS WAF Challenge",
"Active Campaign",
"Alternate Protocol",
"Cookie Information",
"Express",
"Fireblade",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google My Business",
"Google Tag Manager",
"Microsoft Azure",
"Microsoft IIS",
"Nuxt.js",
"Sleeknote",
"Tailwind CSS",
"UTF-8",
"Visual Studio",
"YouTube"
]
},
{
"domain": "kushism.com",
"title": "Van Nuys Dispensary & Delivery | Kushism Cannabis",
"business_name": "",
"country": "USA",
"seo_score": 67,
"tech_spend": 6645,
"crawled_at": "2026-05-30T18:10:22.006118797Z",
"technologies": [
"Adobe Creative Cloud WebFonts",
"Age Gate",
"Alternate Protocol",
"Better Lead Generation Services",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Content Delivery Network",
"Divi",
"Eber",
"Elegant Themes",
"EmbedPress",
"Fastly",
"GZIP Module",
"Google Analytics",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"Line2",
"PHP",
"QUIC",
"Sitelinks Search Box",
"Sleeknote",
"Theme In WP",
"UTF-8",
"W3.CSS",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"WordPress Related Posts",
"Yelp Badge",
"aWeber",
"jQuery"
]
},
{
"domain": "elizabethsandsbeautyschool.co.uk",
"title": "Elizabeth Sands Beauty School",
"business_name": "Elizabeth Sands Beauty School",
"country": "",
"seo_score": 67,
"tech_spend": 93901,
"crawled_at": "2026-05-30T14:18:33.10859944Z",
"technologies": [
"17TRACK",
"AJAX Libraries API",
"AWS WAF Challenge",
"Afterpay",
"Alternate Protocol",
"Amazon CloudFront",
"Apture Linking Platform",
"Better Lead Generation Services",
"Bing Cashback",
"Bing Conversion Tracking",
"CDN JS",
"CloudFront",
"Cloudflare",
"Cloudflare CDN",
"Cowlendar",
"DAV",
"Digital Ocean Spaces",
"Express",
"Facebook Embedded Posts",
"Facebook Login",
"Facebook Reseller",
"Fastly",
"Financial Services Guide",
"FormSubmit",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"Hotjar",
"IcoMoon",
"Instagram Follow Button",
"KVH",
"Kinsta",
"Klarna",
"Klaviyo",
"Mapp",
"Microdata for Google Shopping",
"Microsoft Clarity",
"Pico CSS",
"QUIC",
"RM Education",
"Reputon",
"Secomapp",
"Shopify",
"Shopify Collabs",
"Shopify Payments",
"Sleeknote",
"Tailwind CSS",
"Thank You",
"UTF-8",
"Vector Internet Services",
"WordPress",
"eLand",
"hCaptcha",
"jsDelivr",
"reCAPTCHA"
]
},
{
"domain": "beelee.no",
"title": "Beelee",
"business_name": "",
"country": "",
"seo_score": 67,
"tech_spend": 4586,
"crawled_at": "2026-05-30T05:04:58.777089419Z",
"technologies": [
"AdXpansion",
"Alternate Protocol",
"Apache",
"Better Lead Generation Services",
"Divi",
"Elegant Themes",
"EmbedPress",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud CDN",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"Gravity",
"Gravity Forms",
"Microdata for Google Shopping",
"PHP",
"Sleeknote",
"Theme In WP",
"UK Cookie Consent",
"UTF-8",
"Ubuntu",
"Woo Themes",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "greendrains.eu",
"title": "Green Drain Europe - Innovative and Environment Friendly! »",
"business_name": "",
"country": "DNK",
"seo_score": 75,
"tech_spend": 6440,
"crawled_at": "2026-05-29T09:32:58.045400157Z",
"technologies": [
"Alternate Protocol",