-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsample.json
More file actions
14038 lines (14038 loc) · 319 KB
/
Copy pathsample.json
File metadata and controls
14038 lines (14038 loc) · 319 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": "inlarec.com",
"title": "INLAREC, LLC : Professional help for business owners",
"business_name": "",
"country": "USA",
"seo_score": 77,
"tech_spend": 1299,
"crawled_at": "2026-09-09T23:28:47.288479748Z",
"technologies": [
"Apache",
"Express",
"Font Awesome",
"Foundation",
"GZIP Module",
"Google Analytics",
"Google My Business",
"QUIC",
"Share Link",
"Tailwind CSS",
"UTF-8",
"reCAPTCHA"
]
},
{
"domain": "ecogia.org",
"title": "Ecogia – ICRC Training Center",
"business_name": "",
"country": "CHE",
"seo_score": 45,
"tech_spend": 63,
"crawled_at": "2026-09-09T23:28:47.286154616Z",
"technologies": [
"Apache",
"GZIP Module",
"Google",
"Google Cloud DNS",
"Google Font API"
]
},
{
"domain": "delfinbeta.tech",
"title": "DelfinBeta",
"business_name": "",
"country": "VEN",
"seo_score": 60,
"tech_spend": 7599,
"crawled_at": "2026-09-09T23:28:47.285453389Z",
"technologies": [
"Apache",
"Bunny Fonts",
"Fireblade",
"Font Awesome",
"GZIP Module",
"GitHub Hosting",
"Google Analytics",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"Laravel Livewire",
"Medium",
"Newsletter for Wordpress",
"PHP",
"Tailwind CSS",
"Twitter Ads",
"UTF-8",
"Ubuntu",
"reCAPTCHA"
]
},
{
"domain": "heartandsole.today",
"title": "HeArt & Sole Program",
"business_name": "",
"country": "",
"seo_score": 42,
"tech_spend": "",
"crawled_at": "2026-09-09T23:28:47.28539453Z",
"technologies": [
"Apache",
"GZIP Module",
"Tailwind CSS",
"UTF-8",
"YouTube",
"jQuery"
]
},
{
"domain": "onestrategy.digital",
"title": "Growth Marketing company in Bangalore - OneStrategy.digital",
"business_name": "",
"country": "IND",
"seo_score": 92,
"tech_spend": 34808,
"crawled_at": "2026-09-09T23:28:47.284456317Z",
"technologies": [
"AWS WAF Challenge",
"Alternate Protocol",
"Apache",
"Apture Linking Platform",
"Better Lead Generation Services",
"Bitrix",
"Bitrix24",
"Clutch",
"Content Delivery Network",
"Elementor",
"EmbedPress",
"GZIP Module",
"Google Analytics",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"Harbor",
"InitiativeS",
"Instagram Follow Button",
"Microdata for Google Shopping",
"NFOrce Internet",
"PHP",
"QUIC",
"Schema Plugin",
"Sitelinks Search Box",
"Theme In WP",
"Twitter Ads",
"UTF-8",
"WordPress",
"WordPress Multisite",
"YouTube",
"jQuery"
]
},
{
"domain": "cognitallc.com",
"title": "Cognita llc",
"business_name": "",
"country": "",
"seo_score": 55,
"tech_spend": 827,
"crawled_at": "2026-09-09T23:28:47.280445184Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Apture Linking Platform",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Contact Form Plugin",
"Elementor",
"ElementsKit Elementor",
"EmbedPress",
"Firebase",
"Font Awesome",
"GZIP Module",
"GitHub Hosting",
"Google",
"Google Cloud CDN",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Hello Elementor",
"Line2",
"NFOrce Internet",
"Newsletter for Wordpress",
"PHP",
"Perl",
"QUIC",
"Theme In WP",
"UTF-8",
"WP Super Cache",
"Woo Themes",
"WooCommerce",
"WooCommerce Checkout",
"WordPress",
"WordPress Multisite",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "fasttrafficbot.com",
"title": "Fast Traffic Bot",
"business_name": "",
"country": "",
"seo_score": 45,
"tech_spend": 303,
"crawled_at": "2026-09-09T23:28:47.279487852Z",
"technologies": [
"Akismet",
"Alternate Protocol",
"Amazon",
"Amazon S3 CDN",
"Apache",
"Apture Linking Platform",
"EmbedPress",
"Google Cloud DNS",
"Google Font API",
"JV Zoo",
"Lazy Load for WordPress",
"PHP",
"QUIC",
"Storyblocks",
"Theme In WP",
"UTF-8",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "riptidevolleyball.org",
"title": "Riptide Volleyball Academy",
"business_name": "",
"country": "AUS",
"seo_score": 87,
"tech_spend": 26980,
"crawled_at": "2026-09-09T23:28:47.27705025Z",
"technologies": [
"Apache",
"DAV",
"Express",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"GoDaddy",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"Instagram Follow Button",
"PWA",
"RM Education",
"UTF-8",
"Vimeo",
"Vimeo CDN",
"Wangsu",
"Website Tonight",
"Yelp Badge"
]
},
{
"domain": "spinningwear.com.br",
"title": "Home",
"business_name": "",
"country": "",
"seo_score": 35,
"tech_spend": 1482,
"crawled_at": "2026-09-09T23:28:47.275078851Z",
"technologies": [
"Apache",
"GZIP Module",
"Google My Business",
"No-Q",
"UTF-8",
"Unsplash",
"Vector Internet Services",
"reCAPTCHA"
]
},
{
"domain": "groutrx.com",
"title": "GroutRx: the prescription for all your grout and tile needs - Richmond VA Cleaning and Repair Service - Grout Rx",
"business_name": "",
"country": "USA",
"seo_score": 82,
"tech_spend": 6099,
"crawled_at": "2026-09-09T23:28:47.275937163Z",
"technologies": [
"Amazon CloudFront",
"Angies List",
"Apache",
"CloudFront",
"DAV",
"Font Awesome",
"GZIP Module",
"Google My Business",
"Instagram Follow Button",
"PWA",
"Placehold IT",
"YouTube",
"jQuery"
]
},
{
"domain": "loristai.com",
"title": "Lorist AI – Level up your community experience with AI",
"business_name": "",
"country": "",
"seo_score": 55,
"tech_spend": 563,
"crawled_at": "2026-09-09T23:28:47.273928998Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Coming Soon Page",
"EmbedPress",
"GZIP Module",
"GenerateBlocks",
"GeneratePress Company",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Tag Manager",
"NFOrce Internet",
"Ninja Forms",
"PHP",
"Theme In WP",
"UTF-8",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "mrg-one.com",
"title": "MRG",
"business_name": "",
"country": "",
"seo_score": 50,
"tech_spend": 21623,
"crawled_at": "2026-09-09T23:28:47.273697649Z",
"technologies": [
"Amazon",
"Apache",
"Apture Linking Platform",
"ClickOn",
"Express",
"GZIP Module",
"GitHub Hosting",
"Google",
"Google Cloud CDN",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Recommendations AI",
"Google Related Website Sites",
"Instagram Follow Button",
"Microdata for Google Shopping",
"NFOrce Internet",
"Ntent",
"SMC",
"Sapper",
"Schema Plugin",
"Subversion",
"UTF-8"
]
},
{
"domain": "dhenergy.com.ng",
"title": "Solar Installation & Maintenance || DH Energy",
"business_name": "",
"country": "NGA",
"seo_score": 82,
"tech_spend": 2908,
"crawled_at": "2026-09-09T23:28:47.27169991Z",
"technologies": [
"Apache",
"Better Lead Generation Services",
"GZIP Module",
"Google",
"Google Cloud CDN",
"Google Cloud DNS",
"Google Font API",
"IcoMoon",
"Instagram Follow Button",
"Perl",
"QUIC",
"YouTube"
]
},
{
"domain": "omajayrentacar.com.pe",
"title": "Omajay Rent A Car | Alquiler de Vehiculos Para Proyectos",
"business_name": "",
"country": "SYC",
"seo_score": 55,
"tech_spend": "",
"crawled_at": "2026-09-09T23:28:47.270375214Z",
"technologies": [
"Apache",
"GZIP Module",
"Serif WebPlus",
"Twitter Ads",
"jQuery"
]
},
{
"domain": "afgaragedoorrepair.com",
"title": "AF Garage Door Repair",
"business_name": "AF Garage Door Repair",
"country": "USA",
"seo_score": 82,
"tech_spend": 16240,
"crawled_at": "2026-09-09T23:24:06.881830819Z",
"technologies": [
"AWS WAF Challenge",
"Apache",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google Maps",
"Google My Business",
"Microdata for Google Shopping",
"QUIC",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "pan-bau.at",
"title": ".:PAN BAU:.",
"business_name": "",
"country": "",
"seo_score": 52,
"tech_spend": 159,
"crawled_at": "2026-09-09T23:24:06.880032749Z",
"technologies": [
"Apache",
"CookieConsent",
"Google Cloud DNS",
"Google Maps",
"IcoMoon",
"Tailwind CSS",
"jQuery"
]
},
{
"domain": "rbtnstudio.com",
"title": "RBTN STUDIO | Robert Novakovic — Branding & UI/UX Design Berlin",
"business_name": "",
"country": "DEU",
"seo_score": 62,
"tech_spend": "",
"crawled_at": "2026-09-09T23:24:06.879471795Z",
"technologies": [
"Apache",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Unix"
]
},
{
"domain": "hamiltonspaces.com.au",
"title": "Office & Workspace Fitouts Geelong | Retail & Shop Fit Outs | Commercial Builder Geelong Fitout & Design Experts | Hamilton Spaces",
"business_name": "",
"country": "CAN",
"seo_score": 62,
"tech_spend": "",
"crawled_at": "2026-09-09T23:24:06.876685076Z",
"technologies": [
"Apache",
"GZIP Module",
"Google Analytics",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"Microsoft Clarity",
"UTF-8",
"jQuery"
]
},
{
"domain": "crystalvisions.biz",
"title": "Crystal Visions New Age Shop",
"business_name": "Crystal Visions New Age Shop",
"country": "GBR",
"seo_score": 82,
"tech_spend": 21712,
"crawled_at": "2026-09-09T23:24:06.875727274Z",
"technologies": [
"501c3 Status Nonprofit",
"Alternate Protocol",
"Amazon WAF Blocked",
"Apache",
"Eventbrite",
"Express",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"GoDaddy",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"Line2",
"Microdata for Google Shopping",
"Oracle Cloud",
"PWA",
"PayPal Adaptive Payments",
"PayPal Button",
"PayPal Form",
"UTF-8",
"Wangsu",
"Website Tonight"
]
},
{
"domain": "shitij.in",
"title": "Kshitij Info Solutions — Software & Website Design Studio",
"business_name": "",
"country": "IND",
"seo_score": 67,
"tech_spend": 2440,
"crawled_at": "2026-09-09T23:24:06.871022676Z",
"technologies": [
"Apache",
"GZIP Module",
"Google",
"Google Cloud DNS",
"Google Font API",
"Microdata for Google Shopping",
"Perl",
"UTF-8",
"University or College"
]
},
{
"domain": "florianluedtke.de",
"title": "actor, voice over actor & professional speaker from Berlin - Florian Clyde",
"business_name": "",
"country": "DEU",
"seo_score": 75,
"tech_spend": 846,
"crawled_at": "2026-09-09T23:24:06.870617185Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Download Monitor",
"EmbedPress",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"IcoMoon",
"Instagram Follow Button",
"Microdata for Google Shopping",
"Nectar Slide Plugin",
"PHP",
"Polylang",
"QUIC",
"Salient",
"Theme In WP",
"UTF-8",
"WPBakery",
"WordPress",
"WordPress Multisite",
"YouTube",
"eLand",
"jQuery"
]
},
{
"domain": "sagentic.com",
"title": "Sagentic Web Design | Cañon City, CO | Colorado Web Designers",
"business_name": "",
"country": "USA",
"seo_score": 82,
"tech_spend": 74827,
"crawled_at": "2026-09-09T23:20:12.142641689Z",
"technologies": [
"AWS WAF Challenge",
"Apache",
"Font Awesome",
"FreeCSSTemplates",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Tag Manager",
"Instagram Follow Button",
"Matomo",
"Matomo Tag Manager",
"Microdata for Google Shopping",
"Perl",
"QUIC",
"SMC",
"Tailwind CSS",
"UTF-8",
"Vector Internet Services",
"YouTube"
]
},
{
"domain": "onecallconstructioninc.com",
"title": "Key West Construction | One Call Construction Key West",
"business_name": "One Call Construction",
"country": "",
"seo_score": 67,
"tech_spend": 31967,
"crawled_at": "2026-09-09T23:20:12.142219743Z",
"technologies": [
"AJAX Libraries API",
"AWS WAF Challenge",
"Alternate Protocol",
"Apache",
"Better Lead Generation Services",
"CheryFramework",
"DAV",
"EmbedPress",
"Fireblade",
"Font Awesome",
"Formidable Pro Form",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Microdata for Google Shopping",
"NFOrce Internet",
"One Designs",
"PHP",
"Perl",
"QUIC",
"Theme In WP",
"UTF-8",
"WPBakery",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "thebubblelady.com",
"title": "Children's/Family Bubble Entertainment - The Bubble Lady",
"business_name": "",
"country": "VEN",
"seo_score": 77,
"tech_spend": 24032,
"crawled_at": "2026-09-09T23:20:12.140512961Z",
"technologies": [
"Apache",
"Cisco/Arrowpoint Content Service Switch",
"Express",
"GoDaddy",
"Google",
"Google Cloud DNS",
"Google Font API",
"Google Related Website Sites",
"Google Tag Manager",
"Line2",
"PWA",
"UTF-8",
"Wangsu",
"Website Tonight"
]
},
{
"domain": "jandjfinancial.com",
"title": "J&J Financial Management, Inc. : Welcome to our website!",
"business_name": "",
"country": "",
"seo_score": 67,
"tech_spend": 1429,
"crawled_at": "2026-09-09T23:20:12.139538823Z",
"technologies": [
"Apache",
"Content ad",
"Express",
"Flat Icon",
"Font Awesome",
"Foundation",
"GZIP Module",
"Google Analytics",
"Google Cloud DNS",
"Google Maps",
"Google My Business",
"QUIC",
"Tailwind CSS",
"UTF-8",
"jQuery",
"reCAPTCHA"
]
},
{
"domain": "infinityslidingdoors.com",
"title": "Infinity Sliding Doors | Sliding Door Repair in Dallas, TX",
"business_name": "",
"country": "USA",
"seo_score": 57,
"tech_spend": 3,
"crawled_at": "2026-09-09T23:20:12.134673615Z",
"technologies": [
"Apache",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google My Business"
]
},
{
"domain": "al-raed.ps",
"title": "Al Raed Company",
"business_name": "Al Raed Company",
"country": "PSE",
"seo_score": 67,
"tech_spend": 217,
"crawled_at": "2026-09-09T23:20:12.131947308Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Download Monitor",
"EmbedPress",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Instagram Follow Button",
"Microdata for Google Shopping",
"PHP",
"PopularFX",
"Sitelinks Search Box",
"Theme In WP",
"Twitter Ads",
"UTF-8",
"University or College",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "importadoraceron.com.ec",
"title": "Importadora Ceron",
"business_name": "",
"country": "MEX",
"seo_score": 52,
"tech_spend": 159,
"crawled_at": "2026-09-09T23:20:12.131561297Z",
"technologies": [
"Apache",
"AutoComplete",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"IcoMoon",
"WhatsApp Sharing"
]
},
{
"domain": "intellectfront.com",
"title": "Intellect Front - Trusted Trade Mark Agent - Protect your brand and logo",
"business_name": "Intellect Front",
"country": "CHN",
"seo_score": 72,
"tech_spend": 169,
"crawled_at": "2026-09-09T23:20:12.128785776Z",
"technologies": [
"Apache",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Microdata for Google Shopping",
"Nicepage",
"Perl",
"Thank You",
"jQuery"
]
},
{
"domain": "karinvangrunsven.nl",
"title": "Karin van Grunsven – Coach en trainer",
"business_name": "",
"country": "THA",
"seo_score": 70,
"tech_spend": 20074,
"crawled_at": "2026-09-09T23:20:12.127795764Z",
"technologies": [
"Alternate Protocol",
"Apache",
"EmbedPress",
"GZIP Module",
"KVH",
"PHP",
"Theme In WP",
"Twenty Seventeen",
"UTF-8",
"Ultimate Social Media",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "drivewaysnorwich.co.uk",
"title": "Driveways Installation Norwich | Driveways Norwich",
"business_name": "",
"country": "GBR",
"seo_score": 77,
"tech_spend": 27820,
"crawled_at": "2026-09-09T23:20:12.126916129Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Beaver Builder Lite",
"Contento",
"EmbedPress",
"Font Awesome",
"GZIP Module",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Tag Manager",
"Microdata for Google Shopping",
"PHP",
"Schema Plugin",
"Theme In WP",
"UTF-8",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "edventuretours.mx",
"title": "ATV tour | Tulum Private Tours | Quad tour in Tulum",
"business_name": "",
"country": "",
"seo_score": 62,
"tech_spend": 1287,
"crawled_at": "2026-09-09T23:20:12.12602713Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Contact Form Plugin",
"Divi",
"Elegant Themes",
"EmbedPress",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google My Business",
"Google Related Website Sites",
"Google Tag Manager",
"Gtranslate for Wordpress",
"Instagram Follow Button",
"Microdata for Google Shopping",
"PHP",
"Theme In WP",
"UTF-8",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "praktijkcecilhuijbens.nl",
"title": "Welkom - Praktijk Cécil Huijbens",
"business_name": "",
"country": "",
"seo_score": 75,
"tech_spend": 25187,
"crawled_at": "2026-09-09T23:20:12.124637087Z",
"technologies": [
"Alternate Protocol",
"Apache",
"Contact Form Plugin",
"Contento",
"EmbedPress",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"MH Magazine",
"MH Themes",
"Microdata for Google Shopping",
"PHP",
"Theme In WP",
"UTF-8",
"WordPress",
"WordPress Multisite",
"jQuery"
]
},
{
"domain": "teslacertifiedcollisionnearme.com",
"title": "Tesla Certified Collision Near Me | South Florida Best Tesla Collision Shop",
"business_name": "",
"country": "USA",
"seo_score": 65,
"tech_spend": 327,
"crawled_at": "2026-09-09T23:20:12.123346833Z",
"technologies": [
"Alternate Protocol",
"Apache",
"EmbedPress",
"GZIP Module",
"Google Cloud DNS",
"Google Font API",
"Google Maps",
"Google My Business",
"Gravity Forms",
"PHP",
"QUIC",
"Tailwind CSS",
"Theme In WP",
"UTF-8",
"Woo Themes",
"WooCommerce Checkout",
"WordPress",
"WordPress Multisite",
"bbPress",
"jQuery"
]
},
{
"domain": "equipeonline.com",
"title": "Solution Agro",
"business_name": "",
"country": "BRA",
"seo_score": 55,
"tech_spend": 240,
"crawled_at": "2026-09-09T23:20:12.123829149Z",
"technologies": [
"Apache",
"GZIP Module",
"Google My Business",
"MaxCDN",
"jQuery"
]
},
{
"domain": "eduroam.tg",
"title": "eduroam.tg",
"business_name": "",
"country": "",
"seo_score": 40,
"tech_spend": "",
"crawled_at": "2026-09-09T23:20:12.122260896Z",
"technologies": [
"Apache",
"CDN JS",
"Cloudflare",
"Cloudflare CDN",
"Debian",
"Envoy",
"GZIP Module",
"YouTube"
]
},
{
"domain": "pondokkoding.com",
"title": "Pondok Koding - Home",
"business_name": "",
"country": "IDN",
"seo_score": 50,
"tech_spend": "",
"crawled_at": "2026-09-09T23:20:12.121041139Z",
"technologies": [
"Apache",
"InitiativeS",
"PHP",
"UTF-8"
]
},
{
"domain": "bryancollegestationmusicacademy.com",
"title": "Bryan-College Station Music Academy",
"business_name": "",
"country": "USA",
"seo_score": 77,
"tech_spend": 19032,
"crawled_at": "2026-09-09T23:20:12.119576273Z",
"technologies": [
"Apache",
"Express",
"Facebook Conversion Tracking",
"Facebook Login",
"Facebook Messenger Platform",
"Facebook Pixel",
"Facebook Reseller",
"Facebook Tag API",
"GitHub Hosting",
"GoDaddy",
"Google",
"Google Analytics",
"Google Cloud DNS",
"Google Font API",
"Google Related Website Sites",
"Google Tag Manager",
"Line2",
"PWA",
"UTF-8",
"University or College",
"Wangsu",
"Website Tonight"
]
},