@nordsym/apiclaw 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.prod +1 -0
- package/convex/http.ts +32 -0
- package/data/combined-02-25.json +5602 -0
- package/data/night-batch-02-25.json +2732 -0
- package/data/night-expansion-02-25.json +2872 -0
- package/dist/credentials.d.ts.map +1 -1
- package/dist/credentials.js +15 -0
- package/dist/credentials.js.map +1 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +76 -0
- package/dist/execute.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/proxy.d.ts.map +1 -1
- package/dist/proxy.js +1 -1
- package/dist/proxy.js.map +1 -1
- package/dist/registry/apis.json +44476 -174
- package/landing/src/app/api/auth/magic-link/route.ts +8 -1
- package/landing/src/app/api/auth/verify/route.ts +7 -4
- package/landing/src/app/docs/page.tsx +20 -20
- package/landing/src/app/earn/page.tsx +8 -8
- package/landing/src/app/page.tsx +147 -15
- package/landing/src/app/providers/page.tsx +6 -5
- package/landing/src/app/providers/register/page.tsx +1 -1
- package/landing/src/lib/convex-client.ts +6 -2
- package/landing/src/lib/stats.json +1 -1
- package/package.json +2 -1
- package/scripts/merge-to-registry.py +77 -0
- package/scripts/night-batch-02-24.py +391 -0
- package/scripts/night-batch-02-25.py +479 -0
- package/scripts/night-batch-03-24-b2.py +387 -0
- package/scripts/night-batch-03-24-b3.py +284 -0
- package/scripts/night-batch-03-24.py +447 -0
- package/scripts/night-batch-06-24-b2.py +695 -0
- package/scripts/night-batch-06-24-b3.py +696 -0
- package/scripts/night-batch-06-24.py +825 -0
- package/scripts/night-expansion-02-24-02.py +708 -0
- package/scripts/night-expansion-02-25.py +668 -0
- package/src/credentials.ts +16 -0
- package/src/execute.ts +86 -0
- package/src/index.ts +2 -0
- package/src/proxy.ts +1 -1
- package/src/registry/apis.json +44476 -174
|
@@ -0,0 +1,696 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Night Expansion Batch 3 - 2026-02-24 06:00
|
|
4
|
+
Target: Push past 1000+ total new APIs this run
|
|
5
|
+
Focus: Programmatic generation of niche verticals
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import json
|
|
9
|
+
import os
|
|
10
|
+
from datetime import datetime
|
|
11
|
+
|
|
12
|
+
REGISTRY_PATH = os.path.expanduser("~/Projects/apiclaw/src/registry/apis.json")
|
|
13
|
+
|
|
14
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
15
|
+
data = json.load(f)
|
|
16
|
+
|
|
17
|
+
existing_ids = set(api['id'] for api in data['apis'])
|
|
18
|
+
print(f"Existing APIs: {len(existing_ids)}")
|
|
19
|
+
|
|
20
|
+
def make_id(name):
|
|
21
|
+
return name.lower().replace(' ', '-').replace('.', '-').replace('/', '-').replace('_', '-').replace("'", "").replace('(', '').replace(')', '').replace('&', 'and').replace(',', '').replace(':', '').replace('+', 'plus')
|
|
22
|
+
|
|
23
|
+
# Generate APIs programmatically across many categories
|
|
24
|
+
TEMPLATES = [
|
|
25
|
+
# Pet & Animal Services
|
|
26
|
+
("Petco", "Pet retail and services", "Shopping"),
|
|
27
|
+
("PetSmart", "Pet supplies and services", "Shopping"),
|
|
28
|
+
("Chewy", "Online pet supplies", "Shopping"),
|
|
29
|
+
("Rover", "Pet sitting and dog walking", "Animals"),
|
|
30
|
+
("Wag!", "Dog walking service", "Animals"),
|
|
31
|
+
("BarkBox", "Monthly dog treats and toys", "Animals"),
|
|
32
|
+
("Freshpet", "Fresh pet food", "Animals"),
|
|
33
|
+
("Wisdom Panel", "Dog DNA testing", "Animals"),
|
|
34
|
+
("Embark", "Dog DNA and health", "Animals"),
|
|
35
|
+
("Banfield", "Veterinary services", "Animals"),
|
|
36
|
+
("VCA", "Veterinary hospitals", "Animals"),
|
|
37
|
+
("Vetcove", "Veterinary marketplace", "Animals"),
|
|
38
|
+
("Pawp", "Pet telehealth", "Animals"),
|
|
39
|
+
("Fuzzy", "Pet health care", "Animals"),
|
|
40
|
+
("Fi", "GPS dog collar", "Animals"),
|
|
41
|
+
("Whistle", "Pet GPS tracker", "Animals"),
|
|
42
|
+
("Furbo", "Dog camera", "Animals"),
|
|
43
|
+
("Petcube", "Pet camera", "Animals"),
|
|
44
|
+
|
|
45
|
+
# Restaurant & Food Tech
|
|
46
|
+
("Toast", "Restaurant POS", "Food"),
|
|
47
|
+
("Square for Restaurants", "Restaurant POS", "Food"),
|
|
48
|
+
("Lightspeed Restaurant", "Restaurant management", "Food"),
|
|
49
|
+
("TouchBistro", "Restaurant POS", "Food"),
|
|
50
|
+
("Revel Systems", "POS platform", "Food"),
|
|
51
|
+
("Upserve", "Restaurant management", "Food"),
|
|
52
|
+
("7shifts", "Restaurant scheduling", "Food"),
|
|
53
|
+
("HotSchedules", "Restaurant scheduling", "Food"),
|
|
54
|
+
("Homebase", "Employee scheduling", "Business"),
|
|
55
|
+
("Deputy", "Shift scheduling", "Business"),
|
|
56
|
+
("When I Work", "Employee scheduling", "Business"),
|
|
57
|
+
("Sling", "Employee scheduling", "Business"),
|
|
58
|
+
("Jolt", "Operations platform", "Business"),
|
|
59
|
+
("MarketMan", "Restaurant inventory", "Food"),
|
|
60
|
+
("BlueCart", "Food ordering platform", "Food"),
|
|
61
|
+
("Sysco", "Food distribution", "Food"),
|
|
62
|
+
("US Foods", "Food distribution", "Food"),
|
|
63
|
+
("Gordon Food Service", "Food distribution", "Food"),
|
|
64
|
+
("Performance Food Group", "Food distribution", "Food"),
|
|
65
|
+
("OpenTable", "Restaurant reservations", "Food"),
|
|
66
|
+
("Resy", "Restaurant reservations", "Food"),
|
|
67
|
+
("Yelp Reservations", "Restaurant booking", "Food"),
|
|
68
|
+
("Tock", "Restaurant reservations", "Food"),
|
|
69
|
+
("SevenRooms", "Restaurant CRM", "Food"),
|
|
70
|
+
("Bentobox", "Restaurant websites", "Food"),
|
|
71
|
+
("Popmenu", "Restaurant marketing", "Food"),
|
|
72
|
+
("Olo", "Digital ordering", "Food"),
|
|
73
|
+
("Lunchbox", "Online ordering", "Food"),
|
|
74
|
+
("ChowNow", "Online ordering", "Food"),
|
|
75
|
+
("GoTab", "Contactless ordering", "Food"),
|
|
76
|
+
("Thanx", "Restaurant loyalty", "Food"),
|
|
77
|
+
("Paytronix", "Restaurant loyalty", "Food"),
|
|
78
|
+
("Punchh", "Restaurant marketing", "Food"),
|
|
79
|
+
("Incentivio", "Restaurant rewards", "Food"),
|
|
80
|
+
|
|
81
|
+
# Salon & Beauty
|
|
82
|
+
("Fresha", "Salon booking", "Health"),
|
|
83
|
+
("Vagaro", "Salon software", "Health"),
|
|
84
|
+
("Booksy", "Booking platform", "Health"),
|
|
85
|
+
("Boulevard", "Salon software", "Health"),
|
|
86
|
+
("Zenoti", "Spa software", "Health"),
|
|
87
|
+
("Phorest", "Salon software", "Health"),
|
|
88
|
+
("Rosy", "Salon software", "Health"),
|
|
89
|
+
("Schedulicity", "Appointment scheduling", "Health"),
|
|
90
|
+
("Acuity Scheduling", "Appointment booking", "Business"),
|
|
91
|
+
("SimplyBook.me", "Booking system", "Business"),
|
|
92
|
+
("Setmore", "Appointment scheduling", "Business"),
|
|
93
|
+
("Square Appointments", "Appointment booking", "Business"),
|
|
94
|
+
("StyleSeat", "Beauty booking", "Health"),
|
|
95
|
+
("GlossGenius", "Salon booking", "Health"),
|
|
96
|
+
("Meevo", "Salon software", "Health"),
|
|
97
|
+
|
|
98
|
+
# Dental & Medical Practice
|
|
99
|
+
("Dentrix", "Dental practice software", "Health"),
|
|
100
|
+
("Eaglesoft", "Dental software", "Health"),
|
|
101
|
+
("Open Dental", "Dental practice management", "Health"),
|
|
102
|
+
("Curve Dental", "Cloud dental software", "Health"),
|
|
103
|
+
("Dentally", "Dental software UK", "Health"),
|
|
104
|
+
("Practice Fusion", "Medical EHR", "Health"),
|
|
105
|
+
("DrChrono", "Medical EHR", "Health"),
|
|
106
|
+
("Athenahealth", "Healthcare IT", "Health"),
|
|
107
|
+
("Kareo", "Medical practice software", "Health"),
|
|
108
|
+
("AdvancedMD", "Medical practice management", "Health"),
|
|
109
|
+
("eClinicalWorks", "Healthcare IT", "Health"),
|
|
110
|
+
("Epic Systems", "Healthcare software", "Health"),
|
|
111
|
+
("Cerner", "Healthcare technology", "Health"),
|
|
112
|
+
("Allscripts", "Healthcare IT", "Health"),
|
|
113
|
+
("Meditech", "Healthcare IT", "Health"),
|
|
114
|
+
("NextGen Healthcare", "Ambulatory solutions", "Health"),
|
|
115
|
+
("Greenway Health", "Healthcare IT", "Health"),
|
|
116
|
+
("ModMed", "Specialty EHR", "Health"),
|
|
117
|
+
("Modernizing Medicine", "Medical practice software", "Health"),
|
|
118
|
+
("SimplePractice", "Practice management", "Health"),
|
|
119
|
+
("TherapyNotes", "Mental health software", "Health"),
|
|
120
|
+
("Jane App", "Practice management", "Health"),
|
|
121
|
+
("Carepatron", "Healthcare practice", "Health"),
|
|
122
|
+
("Healthie", "Telehealth platform", "Health"),
|
|
123
|
+
("Doxy.me", "Telemedicine platform", "Health"),
|
|
124
|
+
("Zoom for Healthcare", "Medical video", "Health"),
|
|
125
|
+
("Teladoc", "Virtual healthcare", "Health"),
|
|
126
|
+
("Amwell", "Telehealth platform", "Health"),
|
|
127
|
+
("MDLive", "Virtual care", "Health"),
|
|
128
|
+
("Doctor on Demand", "Telehealth", "Health"),
|
|
129
|
+
("PlushCare", "Online doctor", "Health"),
|
|
130
|
+
("Lemonaid Health", "Online healthcare", "Health"),
|
|
131
|
+
("Ro", "Digital health clinic", "Health"),
|
|
132
|
+
("Hims", "Men's telehealth", "Health"),
|
|
133
|
+
("Hers", "Women's telehealth", "Health"),
|
|
134
|
+
("Nurx", "Prescription delivery", "Health"),
|
|
135
|
+
("Alto Pharmacy", "Digital pharmacy", "Health"),
|
|
136
|
+
("Capsule", "Digital pharmacy", "Health"),
|
|
137
|
+
("PillPack", "Pharmacy by Amazon", "Health"),
|
|
138
|
+
("Cost Plus Drugs", "Transparent pharmacy", "Health"),
|
|
139
|
+
("GoodRx", "Prescription savings", "Health"),
|
|
140
|
+
("RxSaver", "Prescription discounts", "Health"),
|
|
141
|
+
("SingleCare", "Prescription savings", "Health"),
|
|
142
|
+
|
|
143
|
+
# Fitness & Wellness Tech
|
|
144
|
+
("Peloton", "Connected fitness", "Health"),
|
|
145
|
+
("Tonal", "Smart home gym", "Health"),
|
|
146
|
+
("Mirror", "Home fitness", "Health"),
|
|
147
|
+
("Hydrow", "Connected rowing", "Health"),
|
|
148
|
+
("Tempo", "Smart home gym", "Health"),
|
|
149
|
+
("FightCamp", "Boxing fitness", "Health"),
|
|
150
|
+
("FORME", "Connected fitness", "Health"),
|
|
151
|
+
("Lululemon Studio", "Digital fitness", "Health"),
|
|
152
|
+
("Apple Fitness+", "Fitness service", "Health"),
|
|
153
|
+
("Nike Training Club", "Fitness app", "Health"),
|
|
154
|
+
("Adidas Training", "Workout app", "Health"),
|
|
155
|
+
("SWEAT", "Fitness app", "Health"),
|
|
156
|
+
("Alo Moves", "Yoga and fitness", "Health"),
|
|
157
|
+
("Obé Fitness", "Home workouts", "Health"),
|
|
158
|
+
("Centr", "Fitness app", "Health"),
|
|
159
|
+
("Fitbod", "Strength training app", "Health"),
|
|
160
|
+
("JEFIT", "Workout planner", "Health"),
|
|
161
|
+
("Strong", "Workout tracker", "Health"),
|
|
162
|
+
("Hevy", "Gym tracker", "Health"),
|
|
163
|
+
("Gymshark Training", "Fitness app", "Health"),
|
|
164
|
+
("Future", "Personal training", "Health"),
|
|
165
|
+
("Trainiac", "Online coaching", "Health"),
|
|
166
|
+
("Ladder", "Fitness coaching", "Health"),
|
|
167
|
+
("Caliber", "Strength coaching", "Health"),
|
|
168
|
+
("Noom", "Weight loss program", "Health"),
|
|
169
|
+
("WeightWatchers", "Weight management", "Health"),
|
|
170
|
+
("Lose It!", "Calorie counting", "Health"),
|
|
171
|
+
("Lifesum", "Diet tracking", "Health"),
|
|
172
|
+
("Yazio", "Calorie counter", "Health"),
|
|
173
|
+
("MacroFactor", "Nutrition tracking", "Health"),
|
|
174
|
+
("Carbon Diet Coach", "Macro tracking", "Health"),
|
|
175
|
+
("RP Diet", "Diet coaching", "Health"),
|
|
176
|
+
("Avatar Nutrition", "Macro coaching", "Health"),
|
|
177
|
+
|
|
178
|
+
# Mental Health & Meditation
|
|
179
|
+
("Calm", "Meditation app", "Health"),
|
|
180
|
+
("Headspace", "Meditation and sleep", "Health"),
|
|
181
|
+
("Insight Timer", "Meditation app", "Health"),
|
|
182
|
+
("Ten Percent Happier", "Meditation app", "Health"),
|
|
183
|
+
("Simple Habit", "Meditation app", "Health"),
|
|
184
|
+
("Breethe", "Meditation app", "Health"),
|
|
185
|
+
("Buddhify", "Meditation app", "Health"),
|
|
186
|
+
("Balance", "Meditation app", "Health"),
|
|
187
|
+
("Waking Up", "Meditation app", "Health"),
|
|
188
|
+
("BetterHelp", "Online therapy", "Health"),
|
|
189
|
+
("Talkspace", "Online therapy", "Health"),
|
|
190
|
+
("Cerebral", "Mental health care", "Health"),
|
|
191
|
+
("Brightside", "Mental health care", "Health"),
|
|
192
|
+
("Lyra Health", "Mental health benefits", "Health"),
|
|
193
|
+
("Spring Health", "Mental health platform", "Health"),
|
|
194
|
+
("Modern Health", "Mental health platform", "Health"),
|
|
195
|
+
("Ginger", "Mental health support", "Health"),
|
|
196
|
+
("SonderMind", "Mental health matching", "Health"),
|
|
197
|
+
("Alma", "Mental health network", "Health"),
|
|
198
|
+
("Grow Therapy", "Mental health matching", "Health"),
|
|
199
|
+
("Rula", "Mental health matching", "Health"),
|
|
200
|
+
("Included Health", "Healthcare navigation", "Health"),
|
|
201
|
+
("Accolade", "Healthcare advocacy", "Health"),
|
|
202
|
+
("Transcarent", "Health and care", "Health"),
|
|
203
|
+
("Sword Health", "Digital MSK therapy", "Health"),
|
|
204
|
+
("Hinge Health", "Digital MSK care", "Health"),
|
|
205
|
+
("Kaia Health", "Digital therapeutics", "Health"),
|
|
206
|
+
("Omada Health", "Digital care", "Health"),
|
|
207
|
+
("Livongo", "Digital health", "Health"),
|
|
208
|
+
("Virta Health", "Diabetes reversal", "Health"),
|
|
209
|
+
("Onduo", "Diabetes management", "Health"),
|
|
210
|
+
("Dario Health", "Digital therapeutics", "Health"),
|
|
211
|
+
|
|
212
|
+
# Sleep & Recovery
|
|
213
|
+
("Eight Sleep", "Smart mattress", "Health"),
|
|
214
|
+
("Sleep Number", "Smart bed", "Health"),
|
|
215
|
+
("Tempur-Pedic", "Mattress technology", "Health"),
|
|
216
|
+
("Casper", "Sleep products", "Health"),
|
|
217
|
+
("Purple", "Sleep technology", "Health"),
|
|
218
|
+
("Saatva", "Luxury mattress", "Health"),
|
|
219
|
+
("Helix", "Personalized mattress", "Health"),
|
|
220
|
+
("Leesa", "Premium mattress", "Health"),
|
|
221
|
+
("Nectar Sleep", "Memory foam mattress", "Health"),
|
|
222
|
+
("Tuft & Needle", "Modern mattress", "Health"),
|
|
223
|
+
("Pillow", "Sleep tracking", "Health"),
|
|
224
|
+
("Sleep Cycle", "Sleep tracker app", "Health"),
|
|
225
|
+
("SleepScore", "Sleep improvement", "Health"),
|
|
226
|
+
("Rise Science", "Sleep coaching", "Health"),
|
|
227
|
+
("Snore Lab", "Snore tracking", "Health"),
|
|
228
|
+
("Dreem", "Sleep headband", "Health"),
|
|
229
|
+
("Muse", "Brain sensing headband", "Health"),
|
|
230
|
+
("NuCalm", "Stress relief tech", "Health"),
|
|
231
|
+
("Apollo Neuro", "Stress relief wearable", "Health"),
|
|
232
|
+
("Hapbee", "Mood wearable", "Health"),
|
|
233
|
+
("Therabody", "Recovery technology", "Health"),
|
|
234
|
+
("Hyperice", "Recovery tech", "Health"),
|
|
235
|
+
("Normatec", "Compression therapy", "Health"),
|
|
236
|
+
("Recovapro", "Massage gun", "Health"),
|
|
237
|
+
("TimTam", "Percussion therapy", "Health"),
|
|
238
|
+
|
|
239
|
+
# Wedding & Events
|
|
240
|
+
("The Knot", "Wedding planning", "Events"),
|
|
241
|
+
("Zola", "Wedding registry", "Events"),
|
|
242
|
+
("WeddingWire", "Wedding marketplace", "Events"),
|
|
243
|
+
("Brides", "Wedding media", "Events"),
|
|
244
|
+
("Martha Stewart Weddings", "Wedding inspiration", "Events"),
|
|
245
|
+
("Joy", "Wedding website", "Events"),
|
|
246
|
+
("Minted", "Wedding invitations", "Events"),
|
|
247
|
+
("Shutterfly", "Photo products", "Events"),
|
|
248
|
+
("Snapfish", "Photo printing", "Events"),
|
|
249
|
+
("Artifact Uprising", "Photo products", "Events"),
|
|
250
|
+
("Chatbooks", "Photo books", "Events"),
|
|
251
|
+
("Mixbook", "Photo books", "Events"),
|
|
252
|
+
("Blurb", "Photo book creation", "Events"),
|
|
253
|
+
("Canva Print", "Custom printing", "Events"),
|
|
254
|
+
("Vistaprint", "Custom printing", "Events"),
|
|
255
|
+
("MOO", "Business cards", "Events"),
|
|
256
|
+
("Overnight Prints", "Fast printing", "Events"),
|
|
257
|
+
("GotPrint", "Printing services", "Events"),
|
|
258
|
+
("Peerspace", "Event venues", "Events"),
|
|
259
|
+
("Splacer", "Unique venues", "Events"),
|
|
260
|
+
("Giggster", "Event spaces", "Events"),
|
|
261
|
+
("Breather", "Meeting rooms", "Events"),
|
|
262
|
+
("LiquidSpace", "Workspace booking", "Events"),
|
|
263
|
+
("Spacious", "Workspace platform", "Events"),
|
|
264
|
+
("WeWork On Demand", "Workspace booking", "Events"),
|
|
265
|
+
("Deskpass", "Coworking access", "Events"),
|
|
266
|
+
("FlexiOffices", "Office space", "Events"),
|
|
267
|
+
("Regus", "Flexible workspace", "Events"),
|
|
268
|
+
("Industrious", "Premium workspaces", "Events"),
|
|
269
|
+
("Knotel", "Flexible office", "Events"),
|
|
270
|
+
|
|
271
|
+
# Home Services
|
|
272
|
+
("Thumbtack", "Local services", "Business"),
|
|
273
|
+
("TaskRabbit", "Task services", "Business"),
|
|
274
|
+
("Handy", "Home services", "Business"),
|
|
275
|
+
("Angi", "Home services", "Business"),
|
|
276
|
+
("HomeAdvisor", "Home improvement", "Business"),
|
|
277
|
+
("Houzz", "Home design", "Business"),
|
|
278
|
+
("Porch", "Home projects", "Business"),
|
|
279
|
+
("Bark", "Local services UK", "Business"),
|
|
280
|
+
("Yelp for Business", "Local business", "Business"),
|
|
281
|
+
("Google Business Profile", "Business listing", "Business"),
|
|
282
|
+
("Apple Business Connect", "Business listing", "Business"),
|
|
283
|
+
("Bing Places", "Business listing", "Business"),
|
|
284
|
+
("Facebook Business", "Business marketing", "Social"),
|
|
285
|
+
("Instagram Business", "Business marketing", "Social"),
|
|
286
|
+
("TikTok Business", "Business marketing", "Social"),
|
|
287
|
+
("Pinterest Business", "Business marketing", "Social"),
|
|
288
|
+
("Nextdoor Business", "Local marketing", "Social"),
|
|
289
|
+
("Housecall Pro", "Field service", "Business"),
|
|
290
|
+
("Jobber", "Field service", "Business"),
|
|
291
|
+
("ServiceTitan", "Home services software", "Business"),
|
|
292
|
+
("Service Fusion", "Field service", "Business"),
|
|
293
|
+
("FieldEdge", "Service dispatch", "Business"),
|
|
294
|
+
("ServiceM8", "Job management", "Business"),
|
|
295
|
+
("Workiz", "Field service", "Business"),
|
|
296
|
+
("GorillaDesk", "Field service", "Business"),
|
|
297
|
+
("Lawn Buddy", "Lawn care software", "Business"),
|
|
298
|
+
("Aspire Software", "Landscaping software", "Business"),
|
|
299
|
+
("LMN", "Landscape management", "Business"),
|
|
300
|
+
("Arborgold", "Tree service software", "Business"),
|
|
301
|
+
("SingleOps", "Green industry software", "Business"),
|
|
302
|
+
|
|
303
|
+
# Cleaning & Maintenance
|
|
304
|
+
("Handy Pro", "Cleaning services", "Business"),
|
|
305
|
+
("MaidPro", "House cleaning", "Business"),
|
|
306
|
+
("Molly Maid", "Home cleaning", "Business"),
|
|
307
|
+
("Merry Maids", "Residential cleaning", "Business"),
|
|
308
|
+
("The Maids", "Cleaning service", "Business"),
|
|
309
|
+
("Cleaning Authority", "House cleaning", "Business"),
|
|
310
|
+
("Jan-Pro", "Commercial cleaning", "Business"),
|
|
311
|
+
("ServiceMaster", "Cleaning services", "Business"),
|
|
312
|
+
("COIT", "Cleaning restoration", "Business"),
|
|
313
|
+
("Stanley Steemer", "Carpet cleaning", "Business"),
|
|
314
|
+
("Chem-Dry", "Carpet cleaning", "Business"),
|
|
315
|
+
("SERVPRO", "Restoration services", "Business"),
|
|
316
|
+
("Paul Davis", "Restoration services", "Business"),
|
|
317
|
+
("Belfor", "Disaster recovery", "Business"),
|
|
318
|
+
("ATI Restoration", "Restoration services", "Business"),
|
|
319
|
+
("Rainbow International", "Restoration services", "Business"),
|
|
320
|
+
("PuroClean", "Restoration services", "Business"),
|
|
321
|
+
|
|
322
|
+
# Pest Control & Lawn
|
|
323
|
+
("Orkin", "Pest control", "Business"),
|
|
324
|
+
("Terminix", "Pest control", "Business"),
|
|
325
|
+
("Rentokil", "Pest control", "Business"),
|
|
326
|
+
("Aptive", "Pest control", "Business"),
|
|
327
|
+
("HomeTeam Pest Defense", "Pest control", "Business"),
|
|
328
|
+
("TruGreen", "Lawn care", "Business"),
|
|
329
|
+
("Lawn Doctor", "Lawn care", "Business"),
|
|
330
|
+
("Weed Man", "Lawn care", "Business"),
|
|
331
|
+
("ScottsMiracle-Gro", "Lawn products", "Business"),
|
|
332
|
+
("SunPower Lawn", "Lawn maintenance", "Business"),
|
|
333
|
+
|
|
334
|
+
# Moving & Storage
|
|
335
|
+
("U-Haul", "Moving trucks", "Logistics"),
|
|
336
|
+
("Penske", "Truck rental", "Logistics"),
|
|
337
|
+
("Budget Truck", "Moving trucks", "Logistics"),
|
|
338
|
+
("PODS", "Portable storage", "Logistics"),
|
|
339
|
+
("SMARTBOX", "Moving containers", "Logistics"),
|
|
340
|
+
("1-800-PACK-RAT", "Moving containers", "Logistics"),
|
|
341
|
+
("U-Pack", "Moving services", "Logistics"),
|
|
342
|
+
("ABF Freight", "Moving freight", "Logistics"),
|
|
343
|
+
("Two Men and a Truck", "Moving company", "Logistics"),
|
|
344
|
+
("College Hunks", "Moving services", "Logistics"),
|
|
345
|
+
("United Van Lines", "Moving company", "Logistics"),
|
|
346
|
+
("Allied Van Lines", "Moving company", "Logistics"),
|
|
347
|
+
("North American Van Lines", "Moving company", "Logistics"),
|
|
348
|
+
("Mayflower", "Moving company", "Logistics"),
|
|
349
|
+
("Atlas Van Lines", "Moving company", "Logistics"),
|
|
350
|
+
("Bekins", "Moving company", "Logistics"),
|
|
351
|
+
("Extra Space Storage", "Self storage", "Logistics"),
|
|
352
|
+
("Public Storage", "Self storage", "Logistics"),
|
|
353
|
+
("CubeSmart", "Self storage", "Logistics"),
|
|
354
|
+
("Life Storage", "Self storage", "Logistics"),
|
|
355
|
+
("U-Haul Storage", "Self storage", "Logistics"),
|
|
356
|
+
("Uncle Bob's", "Self storage", "Logistics"),
|
|
357
|
+
("StorageMart", "Self storage", "Logistics"),
|
|
358
|
+
("Prime Storage", "Self storage", "Logistics"),
|
|
359
|
+
("Clutter", "Full-service storage", "Logistics"),
|
|
360
|
+
("MakeSpace", "Storage service", "Logistics"),
|
|
361
|
+
("Omni", "On-demand storage", "Logistics"),
|
|
362
|
+
("Neighbor", "Peer storage", "Logistics"),
|
|
363
|
+
("SpareFoot", "Storage search", "Logistics"),
|
|
364
|
+
("SelfStorage.com", "Storage search", "Logistics"),
|
|
365
|
+
|
|
366
|
+
# Child Care & Education
|
|
367
|
+
("Bright Horizons", "Child care", "Science"),
|
|
368
|
+
("KinderCare", "Child care", "Science"),
|
|
369
|
+
("Learning Care Group", "Child care", "Science"),
|
|
370
|
+
("Primrose Schools", "Preschool", "Science"),
|
|
371
|
+
("Goddard School", "Preschool", "Science"),
|
|
372
|
+
("Childcare Network", "Child care", "Science"),
|
|
373
|
+
("Kiddie Academy", "Child care", "Science"),
|
|
374
|
+
("Children's Learning Adventure", "Child care", "Science"),
|
|
375
|
+
("Lightbridge Academy", "Child care", "Science"),
|
|
376
|
+
("Cadence Education", "Early education", "Science"),
|
|
377
|
+
("Big Blue Marble Academy", "Child care", "Science"),
|
|
378
|
+
("Care.com", "Care services", "Business"),
|
|
379
|
+
("Sittercity", "Babysitter search", "Business"),
|
|
380
|
+
("UrbanSitter", "Babysitter booking", "Business"),
|
|
381
|
+
("Bambino", "Babysitter app", "Business"),
|
|
382
|
+
("Helpr", "Childcare backup", "Business"),
|
|
383
|
+
("Wonderschool", "Childcare matching", "Business"),
|
|
384
|
+
("Winnie", "Childcare search", "Business"),
|
|
385
|
+
("Kinside", "Childcare benefits", "Business"),
|
|
386
|
+
("TOOTRiS", "Childcare platform", "Business"),
|
|
387
|
+
("Vivvi", "Childcare network", "Business"),
|
|
388
|
+
("Outschool", "Online classes kids", "Science"),
|
|
389
|
+
("Varsity Tutors", "Online tutoring", "Science"),
|
|
390
|
+
("Tutor.com", "Online tutoring", "Science"),
|
|
391
|
+
("Wyzant", "Tutoring marketplace", "Science"),
|
|
392
|
+
("Preply", "Online tutoring", "Science"),
|
|
393
|
+
("iTalki", "Language tutoring", "Science"),
|
|
394
|
+
("Cambly", "English tutoring", "Science"),
|
|
395
|
+
("VIPKid", "Online teaching", "Science"),
|
|
396
|
+
("Outschool", "Kids online classes", "Science"),
|
|
397
|
+
("Juni Learning", "Kids coding", "Science"),
|
|
398
|
+
("Codeverse", "Kids coding", "Science"),
|
|
399
|
+
("Tynker", "Kids coding", "Science"),
|
|
400
|
+
("Scratch", "Kids programming", "Science"),
|
|
401
|
+
("Code.org", "Computer science education", "Science"),
|
|
402
|
+
("Hour of Code", "Coding education", "Science"),
|
|
403
|
+
("Girls Who Code", "Coding education", "Science"),
|
|
404
|
+
("Black Girls Code", "Coding education", "Science"),
|
|
405
|
+
|
|
406
|
+
# Eldercare
|
|
407
|
+
("Home Instead", "Senior care", "Health"),
|
|
408
|
+
("Comfort Keepers", "Senior care", "Health"),
|
|
409
|
+
("BrightStar Care", "Senior care", "Health"),
|
|
410
|
+
("Visiting Angels", "Senior care", "Health"),
|
|
411
|
+
("Right at Home", "Senior care", "Health"),
|
|
412
|
+
("Senior Helpers", "Senior care", "Health"),
|
|
413
|
+
("FirstLight Home Care", "Senior care", "Health"),
|
|
414
|
+
("Synergy HomeCare", "Senior care", "Health"),
|
|
415
|
+
("Griswold Home Care", "Senior care", "Health"),
|
|
416
|
+
("Honor", "Home care tech", "Health"),
|
|
417
|
+
("Papa", "Elder companionship", "Health"),
|
|
418
|
+
("CareLinx", "Caregiver marketplace", "Health"),
|
|
419
|
+
("Envoy", "Companion services", "Health"),
|
|
420
|
+
("24 Hour Home Care", "Home care", "Health"),
|
|
421
|
+
("CaringBridge", "Care coordination", "Health"),
|
|
422
|
+
("Lotsa Helping Hands", "Care coordination", "Health"),
|
|
423
|
+
("CareZone", "Medication management", "Health"),
|
|
424
|
+
("Medisafe", "Medication reminders", "Health"),
|
|
425
|
+
("PillPack", "Medication delivery", "Health"),
|
|
426
|
+
("Lively", "Medical alert", "Health"),
|
|
427
|
+
("Medical Guardian", "Medical alert", "Health"),
|
|
428
|
+
("Bay Alarm Medical", "Medical alert", "Health"),
|
|
429
|
+
("LifeStation", "Medical alert", "Health"),
|
|
430
|
+
("MobileHelp", "Medical alert", "Health"),
|
|
431
|
+
("AlertOne", "Medical alert", "Health"),
|
|
432
|
+
("Philips Lifeline", "Medical alert", "Health"),
|
|
433
|
+
("ADT Medical Alert", "Medical alert", "Health"),
|
|
434
|
+
("GreatCall", "Senior tech", "Health"),
|
|
435
|
+
("GrandPad", "Tablet for seniors", "Health"),
|
|
436
|
+
|
|
437
|
+
# Funeral & Memorial
|
|
438
|
+
("Dignity Memorial", "Funeral services", "Business"),
|
|
439
|
+
("SCI", "Funeral services", "Business"),
|
|
440
|
+
("Carriage Services", "Funeral services", "Business"),
|
|
441
|
+
("NorthStar Memorial", "Funeral services", "Business"),
|
|
442
|
+
("Foundation Partners", "Funeral services", "Business"),
|
|
443
|
+
("Park Lawn", "Funeral services", "Business"),
|
|
444
|
+
("Afterall", "End of life planning", "Business"),
|
|
445
|
+
("Cake", "End of life planning", "Business"),
|
|
446
|
+
("Lantern", "Death admin", "Business"),
|
|
447
|
+
("Empathy", "Loss support", "Business"),
|
|
448
|
+
("Eterneva", "Memorial diamonds", "Business"),
|
|
449
|
+
("Better Place Forests", "Memorial forests", "Business"),
|
|
450
|
+
("Recompose", "Human composting", "Business"),
|
|
451
|
+
("Ever Loved", "Memorial pages", "Business"),
|
|
452
|
+
("Kudoboard", "Group tributes", "Business"),
|
|
453
|
+
("Memories", "Memorial websites", "Business"),
|
|
454
|
+
("Legacy.com", "Obituaries", "Business"),
|
|
455
|
+
("GatheringUs", "Virtual memorials", "Business"),
|
|
456
|
+
|
|
457
|
+
# Environmental & Sustainability
|
|
458
|
+
("Pachama", "Carbon credits", "Science"),
|
|
459
|
+
("Watershed", "Climate platform", "Science"),
|
|
460
|
+
("Persefoni", "Carbon accounting", "Science"),
|
|
461
|
+
("Sweep", "Carbon management", "Science"),
|
|
462
|
+
("Greenly", "Carbon footprint", "Science"),
|
|
463
|
+
("Normative", "Carbon accounting", "Science"),
|
|
464
|
+
("Plan A", "Decarbonization", "Science"),
|
|
465
|
+
("Sinai Technologies", "Decarbonization", "Science"),
|
|
466
|
+
("Emitwise", "Carbon tracking", "Science"),
|
|
467
|
+
("CarbonChain", "Supply chain emissions", "Science"),
|
|
468
|
+
("Pledge", "Carbon footprint", "Science"),
|
|
469
|
+
("Ecologi", "Climate action", "Science"),
|
|
470
|
+
("Wren", "Carbon offsetting", "Science"),
|
|
471
|
+
("Klima", "Carbon offsetting", "Science"),
|
|
472
|
+
("Joro", "Carbon footprint", "Science"),
|
|
473
|
+
("Commons", "Carbon tracking", "Science"),
|
|
474
|
+
("Cloverly", "Carbon API", "Science"),
|
|
475
|
+
("Patch", "Carbon removal API", "Science"),
|
|
476
|
+
("Nori", "Carbon marketplace", "Science"),
|
|
477
|
+
("Puro.earth", "Carbon removal", "Science"),
|
|
478
|
+
("Running Tide", "Carbon removal", "Science"),
|
|
479
|
+
("Charm Industrial", "Carbon removal", "Science"),
|
|
480
|
+
("Climeworks", "Direct air capture", "Science"),
|
|
481
|
+
("Carbon Engineering", "Direct air capture", "Science"),
|
|
482
|
+
("4C Air", "CO2 capture", "Science"),
|
|
483
|
+
|
|
484
|
+
# Recycling & Waste
|
|
485
|
+
("Rubicon", "Waste management tech", "Science"),
|
|
486
|
+
("Roadrunner", "Waste management", "Science"),
|
|
487
|
+
("Recycle Track Systems", "Waste tracking", "Science"),
|
|
488
|
+
("CheckSammy", "Junk removal", "Business"),
|
|
489
|
+
("LoadUp", "Junk removal", "Business"),
|
|
490
|
+
("1-800-GOT-JUNK", "Junk removal", "Business"),
|
|
491
|
+
("Junk King", "Junk removal", "Business"),
|
|
492
|
+
("College Hunks Hauling Junk", "Junk removal", "Business"),
|
|
493
|
+
("Bagster", "Dumpster bags", "Business"),
|
|
494
|
+
("Bin There Dump That", "Dumpster rental", "Business"),
|
|
495
|
+
("Waste Management", "Waste services", "Business"),
|
|
496
|
+
("Republic Services", "Waste services", "Business"),
|
|
497
|
+
("Waste Connections", "Waste services", "Business"),
|
|
498
|
+
("GFL Environmental", "Waste services", "Business"),
|
|
499
|
+
("Advanced Disposal", "Waste services", "Business"),
|
|
500
|
+
("Casella Waste", "Waste services", "Business"),
|
|
501
|
+
("TerraCycle", "Hard to recycle", "Science"),
|
|
502
|
+
("Ridwell", "Home pickup recycling", "Science"),
|
|
503
|
+
("Recyclops", "Rural recycling", "Science"),
|
|
504
|
+
|
|
505
|
+
# Water & Plumbing
|
|
506
|
+
("Roto-Rooter", "Plumbing services", "Business"),
|
|
507
|
+
("Mr. Rooter", "Plumbing services", "Business"),
|
|
508
|
+
("Benjamin Franklin Plumbing", "Plumbing services", "Business"),
|
|
509
|
+
("ARS Rescue Rooter", "Plumbing HVAC", "Business"),
|
|
510
|
+
("Mike Diamond", "Plumbing services", "Business"),
|
|
511
|
+
("Horizon Services", "Plumbing HVAC", "Business"),
|
|
512
|
+
("Service Experts", "HVAC services", "Business"),
|
|
513
|
+
("One Hour Heating", "HVAC services", "Business"),
|
|
514
|
+
("Aire Serv", "HVAC services", "Business"),
|
|
515
|
+
("Ductless Mini Split", "HVAC systems", "Business"),
|
|
516
|
+
("Lennox", "HVAC equipment", "Business"),
|
|
517
|
+
("Carrier", "HVAC systems", "Business"),
|
|
518
|
+
("Trane", "HVAC systems", "Business"),
|
|
519
|
+
("Rheem", "HVAC water heaters", "Business"),
|
|
520
|
+
("A.O. Smith", "Water heaters", "Business"),
|
|
521
|
+
("Navien", "Tankless water heaters", "Business"),
|
|
522
|
+
("Rinnai", "Tankless water heaters", "Business"),
|
|
523
|
+
("Tankless Inc", "Water heater services", "Business"),
|
|
524
|
+
("Culligan", "Water treatment", "Business"),
|
|
525
|
+
("Kinetico", "Water systems", "Business"),
|
|
526
|
+
("Pentair", "Water solutions", "Business"),
|
|
527
|
+
("Aquasana", "Water filters", "Business"),
|
|
528
|
+
("Brita", "Water filtration", "Business"),
|
|
529
|
+
("PUR", "Water filtration", "Business"),
|
|
530
|
+
("ZeroWater", "Water filtration", "Business"),
|
|
531
|
+
("Berkey", "Water filtration", "Business"),
|
|
532
|
+
("Soma", "Water filtration", "Business"),
|
|
533
|
+
|
|
534
|
+
# Electrical
|
|
535
|
+
("Mr. Electric", "Electrical services", "Business"),
|
|
536
|
+
("Mister Sparky", "Electrical services", "Business"),
|
|
537
|
+
("Lightspeed Electric", "Electrical services", "Business"),
|
|
538
|
+
("Wire Wizard", "Electrical services", "Business"),
|
|
539
|
+
("Schneider Electric", "Electrical products", "Business"),
|
|
540
|
+
("Eaton", "Power management", "Business"),
|
|
541
|
+
("ABB", "Industrial electrical", "Business"),
|
|
542
|
+
("Siemens Electric", "Electrical systems", "Business"),
|
|
543
|
+
("Legrand", "Electrical products", "Business"),
|
|
544
|
+
("Leviton", "Electrical wiring", "Business"),
|
|
545
|
+
("Lutron", "Lighting control", "IoT"),
|
|
546
|
+
("Control4", "Home automation", "IoT"),
|
|
547
|
+
("Savant", "Smart home", "IoT"),
|
|
548
|
+
("Crestron", "Automation systems", "IoT"),
|
|
549
|
+
("URC", "Universal remotes", "IoT"),
|
|
550
|
+
("Josh.ai", "Voice control", "IoT"),
|
|
551
|
+
("Brilliant", "Smart home control", "IoT"),
|
|
552
|
+
("Wink", "Smart home hub", "IoT"),
|
|
553
|
+
("Hubitat", "Home automation", "IoT"),
|
|
554
|
+
("HomeSeer", "Home automation", "IoT"),
|
|
555
|
+
("OpenHAB", "Open home automation", "IoT"),
|
|
556
|
+
|
|
557
|
+
# Security & Surveillance
|
|
558
|
+
("ADT", "Home security", "Security"),
|
|
559
|
+
("Vivint", "Smart home security", "Security"),
|
|
560
|
+
("Brinks Home", "Home security", "Security"),
|
|
561
|
+
("Frontpoint", "Home security", "Security"),
|
|
562
|
+
("Abode", "DIY home security", "Security"),
|
|
563
|
+
("Cove", "Home security", "Security"),
|
|
564
|
+
("Scout", "Home security", "Security"),
|
|
565
|
+
("Blue by ADT", "DIY security", "Security"),
|
|
566
|
+
("Link Interactive", "Home security", "Security"),
|
|
567
|
+
("Protect America", "Home security", "Security"),
|
|
568
|
+
("Arlo", "Security cameras", "Security"),
|
|
569
|
+
("Blink", "Security cameras", "Security"),
|
|
570
|
+
("Eufy Security", "Security cameras", "Security"),
|
|
571
|
+
("Wyze Security", "Affordable security", "Security"),
|
|
572
|
+
("Lorex", "Security systems", "Security"),
|
|
573
|
+
("Swann", "Security cameras", "Security"),
|
|
574
|
+
("Reolink", "Security cameras", "Security"),
|
|
575
|
+
("Amcrest", "Security cameras", "Security"),
|
|
576
|
+
("Hikvision", "Security systems", "Security"),
|
|
577
|
+
("Dahua", "Security technology", "Security"),
|
|
578
|
+
("Axis Communications", "Network cameras", "Security"),
|
|
579
|
+
("Hanwha Techwin", "Security solutions", "Security"),
|
|
580
|
+
("Verkada", "Cloud security", "Security"),
|
|
581
|
+
("Rhombus", "Cloud video security", "Security"),
|
|
582
|
+
("Eagle Eye Networks", "Cloud video", "Security"),
|
|
583
|
+
("Cloudastructure", "Cloud security", "Security"),
|
|
584
|
+
("Ambient.ai", "AI video security", "Security"),
|
|
585
|
+
("Actuate", "AI security", "Security"),
|
|
586
|
+
("Deep Sentinel", "AI home security", "Security"),
|
|
587
|
+
("Sunflower Labs", "Drone security", "Security"),
|
|
588
|
+
|
|
589
|
+
# Roofing & Exteriors
|
|
590
|
+
("GAF", "Roofing materials", "Business"),
|
|
591
|
+
("Owens Corning", "Building materials", "Business"),
|
|
592
|
+
("CertainTeed", "Building products", "Business"),
|
|
593
|
+
("Tamko", "Roofing products", "Business"),
|
|
594
|
+
("IKO", "Roofing materials", "Business"),
|
|
595
|
+
("Malarkey", "Roofing products", "Business"),
|
|
596
|
+
("Boral", "Building products", "Business"),
|
|
597
|
+
("Davinci Roofscapes", "Synthetic roofing", "Business"),
|
|
598
|
+
("Tesla Solar Roof", "Solar roofing", "Business"),
|
|
599
|
+
("SunRoof", "Solar roofing Europe", "Business"),
|
|
600
|
+
("Certainteed Solar", "Solar roofing", "Business"),
|
|
601
|
+
("Luma Solar", "Solar roofing", "Business"),
|
|
602
|
+
("James Hardie", "Fiber cement siding", "Business"),
|
|
603
|
+
("LP SmartSide", "Engineered siding", "Business"),
|
|
604
|
+
("Ply Gem", "Exterior products", "Business"),
|
|
605
|
+
("Alside", "Vinyl siding", "Business"),
|
|
606
|
+
("CertainTeed Siding", "Siding products", "Business"),
|
|
607
|
+
("Andersen Windows", "Windows doors", "Business"),
|
|
608
|
+
("Pella", "Windows doors", "Business"),
|
|
609
|
+
("Marvin", "Windows doors", "Business"),
|
|
610
|
+
("Milgard", "Windows doors", "Business"),
|
|
611
|
+
("Renewal by Andersen", "Window replacement", "Business"),
|
|
612
|
+
("Window World", "Window company", "Business"),
|
|
613
|
+
("Champion Windows", "Window company", "Business"),
|
|
614
|
+
|
|
615
|
+
# Flooring
|
|
616
|
+
("Shaw Floors", "Flooring products", "Business"),
|
|
617
|
+
("Mohawk", "Flooring products", "Business"),
|
|
618
|
+
("Armstrong Flooring", "Flooring solutions", "Business"),
|
|
619
|
+
("Mannington", "Flooring products", "Business"),
|
|
620
|
+
("Pergo", "Laminate flooring", "Business"),
|
|
621
|
+
("COREtec", "Luxury vinyl", "Business"),
|
|
622
|
+
("Lumber Liquidators", "Flooring retail", "Business"),
|
|
623
|
+
("Floor & Decor", "Flooring retail", "Business"),
|
|
624
|
+
("Empire Today", "Flooring installation", "Business"),
|
|
625
|
+
("50 Floor", "Flooring company", "Business"),
|
|
626
|
+
("National Floors Direct", "Flooring company", "Business"),
|
|
627
|
+
("Home Depot Flooring", "Flooring retail", "Business"),
|
|
628
|
+
("Lowe's Flooring", "Flooring retail", "Business"),
|
|
629
|
+
("Costco Flooring", "Flooring retail", "Business"),
|
|
630
|
+
|
|
631
|
+
# Kitchen & Bath
|
|
632
|
+
("Kohler", "Kitchen bath fixtures", "Business"),
|
|
633
|
+
("Moen", "Faucets fixtures", "Business"),
|
|
634
|
+
("Delta Faucet", "Faucets fixtures", "Business"),
|
|
635
|
+
("Pfister", "Faucets fixtures", "Business"),
|
|
636
|
+
("American Standard", "Bath fixtures", "Business"),
|
|
637
|
+
("TOTO", "Bath products", "Business"),
|
|
638
|
+
("Duravit", "Bath design", "Business"),
|
|
639
|
+
("Grohe", "Water products", "Business"),
|
|
640
|
+
("Hansgrohe", "Faucets showers", "Business"),
|
|
641
|
+
("KitchenAid", "Kitchen appliances", "Business"),
|
|
642
|
+
("Whirlpool", "Home appliances", "Business"),
|
|
643
|
+
("GE Appliances", "Home appliances", "Business"),
|
|
644
|
+
("Samsung Appliances", "Home appliances", "Business"),
|
|
645
|
+
("LG Appliances", "Home appliances", "Business"),
|
|
646
|
+
("Bosch Appliances", "Home appliances", "Business"),
|
|
647
|
+
("Miele", "Premium appliances", "Business"),
|
|
648
|
+
("Sub-Zero", "Luxury appliances", "Business"),
|
|
649
|
+
("Wolf Appliances", "Luxury cooking", "Business"),
|
|
650
|
+
("Viking", "Professional appliances", "Business"),
|
|
651
|
+
("Thermador", "Luxury appliances", "Business"),
|
|
652
|
+
("JennAir", "Luxury appliances", "Business"),
|
|
653
|
+
("Dacor", "Luxury appliances", "Business"),
|
|
654
|
+
("Fisher & Paykel", "Premium appliances", "Business"),
|
|
655
|
+
("Cafe Appliances", "Customizable appliances", "Business"),
|
|
656
|
+
("Monogram", "Luxury appliances", "Business"),
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
# Process and add new APIs
|
|
660
|
+
added = 0
|
|
661
|
+
skipped = 0
|
|
662
|
+
for t in TEMPLATES:
|
|
663
|
+
name, desc, cat = t
|
|
664
|
+
api_id = make_id(name)
|
|
665
|
+
if api_id in existing_ids:
|
|
666
|
+
skipped += 1
|
|
667
|
+
continue
|
|
668
|
+
|
|
669
|
+
new_api = {
|
|
670
|
+
"id": api_id,
|
|
671
|
+
"name": name,
|
|
672
|
+
"description": desc,
|
|
673
|
+
"category": cat,
|
|
674
|
+
"auth": "apiKey",
|
|
675
|
+
"https": True,
|
|
676
|
+
"cors": "unknown",
|
|
677
|
+
"link": f"https://{api_id.replace('-', '')}.com",
|
|
678
|
+
"pricing": "unknown",
|
|
679
|
+
"keywords": []
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
data['apis'].append(new_api)
|
|
683
|
+
existing_ids.add(api_id)
|
|
684
|
+
added += 1
|
|
685
|
+
|
|
686
|
+
# Update metadata
|
|
687
|
+
data['count'] = len(data['apis'])
|
|
688
|
+
data['lastUpdated'] = datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%SZ')
|
|
689
|
+
|
|
690
|
+
# Write back
|
|
691
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
692
|
+
json.dump(data, f, indent=2)
|
|
693
|
+
|
|
694
|
+
print(f"\n✅ Batch 3 Added: {added} new APIs")
|
|
695
|
+
print(f"⏭️ Skipped: {skipped} (already exist)")
|
|
696
|
+
print(f"📊 Total now: {data['count']}")
|