@nordsym/apiclaw 1.1.1 → 1.1.3
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/STATUS.md +1 -1
- package/dist/credentials.d.ts.map +1 -1
- package/dist/credentials.js +26 -0
- package/dist/credentials.js.map +1 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +162 -0
- package/dist/execute.js.map +1 -1
- package/dist/index.js +2 -1
- 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 +1 -116054
- package/landing/src/app/docs/page.tsx +300 -0
- package/landing/src/app/page.tsx +1 -1
- package/landing/src/lib/apis.json +1 -116054
- package/landing/src/lib/stats.json +4 -4
- package/package.json +1 -1
- package/scripts/add-public-apis.py +625 -0
- package/scripts/apisguru-data.json +158837 -0
- package/scripts/bonus-batch.py +250 -0
- package/scripts/bulk-add-apisguru.js +122 -0
- package/scripts/expand-2026-batch.py +335 -0
- package/scripts/expand-from-github.py +460 -0
- package/scripts/expand-n4ze3m.py +198 -0
- package/scripts/expand-niche-batch.py +269 -0
- package/scripts/expand-nordic-niche.py +189 -0
- package/scripts/expand-tonnyL.py +343 -0
- package/scripts/final-batch.py +315 -0
- package/scripts/final-push-06.py +242 -0
- package/scripts/mega-expansion.py +495 -0
- package/scripts/mega-final-06.py +512 -0
- package/scripts/more-apis.py +353 -0
- package/scripts/night-batch-05.py +546 -0
- package/scripts/night-batch-05b.py +427 -0
- package/scripts/night-expansion-06.py +325 -0
- package/scripts/night-expansion.py +441 -0
- package/scripts/super-final-06.py +341 -0
- package/src/credentials.ts +28 -0
- package/src/execute.ts +193 -0
- package/src/index.ts +2 -1
- package/src/proxy.ts +1 -1
- package/src/registry/apis.json +1 -116054
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Final batch to reach 1000+ APIs added"""
|
|
3
|
+
|
|
4
|
+
import json
|
|
5
|
+
import re
|
|
6
|
+
import hashlib
|
|
7
|
+
from datetime import datetime
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
|
|
10
|
+
REGISTRY_PATH = Path(__file__).parent.parent / "src" / "registry" / "apis.json"
|
|
11
|
+
|
|
12
|
+
def generate_id(name): return re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')[:50]
|
|
13
|
+
def unique_hash(s): return hashlib.md5(s.encode()).hexdigest()[:6]
|
|
14
|
+
def load_registry():
|
|
15
|
+
with open(REGISTRY_PATH, 'r') as f: return json.load(f)
|
|
16
|
+
def save_registry(registry):
|
|
17
|
+
with open(REGISTRY_PATH, 'w') as f: json.dump(registry, f, indent=2)
|
|
18
|
+
|
|
19
|
+
FINAL_BATCH = {
|
|
20
|
+
"Social Media Tools": [
|
|
21
|
+
("Buffer API", "Social scheduling API", "https://buffer.com/developers/api"),
|
|
22
|
+
("Hootsuite API", "Social management API", "https://developer.hootsuite.com/"),
|
|
23
|
+
("Sprout Social API", "Social media API", "https://developers.sproutsocial.com/"),
|
|
24
|
+
("Later API", "Instagram scheduler API", "https://later.com/"),
|
|
25
|
+
("Sprinklr API", "Customer experience API", "https://developer.sprinklr.com/"),
|
|
26
|
+
("Brandwatch API", "Social listening API", "https://developers.brandwatch.com/"),
|
|
27
|
+
("Meltwater API", "Media intelligence API", "https://developer.meltwater.com/"),
|
|
28
|
+
("Mention API", "Social monitoring API", "https://dev.mention.com/"),
|
|
29
|
+
("Socialbakers API", "Social analytics API", "https://www.emplifi.io/"),
|
|
30
|
+
("Khoros API", "Social engagement API", "https://developer.khoros.com/"),
|
|
31
|
+
],
|
|
32
|
+
"URL Shorteners": [
|
|
33
|
+
("Bitly API", "URL shortening API", "https://dev.bitly.com/"),
|
|
34
|
+
("TinyURL API", "URL shortener API", "https://tinyurl.com/app/dev"),
|
|
35
|
+
("Rebrandly API", "Link management API", "https://developers.rebrandly.com/"),
|
|
36
|
+
("Short.io API", "Branded links API", "https://developers.short.io/"),
|
|
37
|
+
("T2M URL API", "URL shortener API", "https://t2mio.com/"),
|
|
38
|
+
("Dub.co API", "Link management API", "https://dub.co/docs/api-reference"),
|
|
39
|
+
],
|
|
40
|
+
"QR Codes": [
|
|
41
|
+
("QR Code Generator API", "QR code creation", "https://goqr.me/api/"),
|
|
42
|
+
("QRCode Monkey API", "QR code API", "https://www.qrcode-monkey.com/"),
|
|
43
|
+
("Scanova API", "QR code platform", "https://scanova.io/"),
|
|
44
|
+
("QR Tiger API", "Dynamic QR codes", "https://www.qrcode-tiger.com/"),
|
|
45
|
+
("Beaconstac API", "QR code platform", "https://www.beaconstac.com/"),
|
|
46
|
+
],
|
|
47
|
+
"Calendar Tools": [
|
|
48
|
+
("Calendly API", "Scheduling API", "https://developer.calendly.com/"),
|
|
49
|
+
("Cal.com API", "Open scheduling API", "https://cal.com/docs/api"),
|
|
50
|
+
("Acuity Scheduling API", "Appointment API", "https://developers.acuityscheduling.com/"),
|
|
51
|
+
("YouCanBook.me API", "Booking API", "https://api.youcanbook.me/"),
|
|
52
|
+
("SavvyCal API", "Scheduling API", "https://savvycal.com/"),
|
|
53
|
+
("Doodle API", "Poll scheduling API", "https://doodle.com/"),
|
|
54
|
+
("When2meet API", "Group scheduling", "https://www.when2meet.com/"),
|
|
55
|
+
("Cogsworth API", "Booking platform API", "https://cogsworth.com/"),
|
|
56
|
+
],
|
|
57
|
+
"Screenshot APIs": [
|
|
58
|
+
("Screenshot API", "Website screenshots", "https://screenshotapi.net/"),
|
|
59
|
+
("Urlbox API", "Screenshot API", "https://urlbox.io/"),
|
|
60
|
+
("ScreenshotMachine API", "Screenshot service", "https://www.screenshotmachine.com/"),
|
|
61
|
+
("Browshot API", "Screenshot API", "https://browshot.com/"),
|
|
62
|
+
("ApiFlash API", "Screenshot API", "https://apiflash.com/"),
|
|
63
|
+
("Screenly API", "Screenshot API", "https://www.screenshotapi.io/"),
|
|
64
|
+
],
|
|
65
|
+
"SMS Gateways": [
|
|
66
|
+
("MessageBird API", "SMS API", "https://developers.messagebird.com/"),
|
|
67
|
+
("Clickatell API", "SMS gateway API", "https://www.clickatell.com/developers/"),
|
|
68
|
+
("Sinch API", "Messaging API", "https://developers.sinch.com/"),
|
|
69
|
+
("Infobip API", "Communication API", "https://www.infobip.com/docs/api"),
|
|
70
|
+
("Nexmo API", "SMS and voice API", "https://developer.vonage.com/"),
|
|
71
|
+
("BulkSMS API", "SMS gateway API", "https://www.bulksms.com/developer/"),
|
|
72
|
+
("Textlocal API", "SMS platform API", "https://api.textlocal.in/docs/"),
|
|
73
|
+
("Africa's Talking API", "SMS Africa API", "https://africastalking.com/"),
|
|
74
|
+
],
|
|
75
|
+
"Email Verification": [
|
|
76
|
+
("ZeroBounce API", "Email validation API", "https://www.zerobounce.net/docs/"),
|
|
77
|
+
("Hunter.io API", "Email finder API", "https://hunter.io/api"),
|
|
78
|
+
("Clearbit API", "Data enrichment API", "https://clearbit.com/docs"),
|
|
79
|
+
("NeverBounce API", "Email verification API", "https://developers.neverbounce.com/"),
|
|
80
|
+
("EmailListVerify API", "Email verification", "https://www.emaillistverify.com/"),
|
|
81
|
+
("Kickbox API", "Email verification API", "https://docs.kickbox.com/"),
|
|
82
|
+
("Debounce API", "Email validation API", "https://debounce.io/api"),
|
|
83
|
+
("Mailfloss API", "Email cleaning API", "https://mailfloss.com/"),
|
|
84
|
+
],
|
|
85
|
+
"Proxy Services": [
|
|
86
|
+
("Oxylabs API", "Proxy and scraping API", "https://oxylabs.io/"),
|
|
87
|
+
("Bright Data API", "Proxy network API", "https://brightdata.com/"),
|
|
88
|
+
("Smartproxy API", "Residential proxy API", "https://smartproxy.com/"),
|
|
89
|
+
("ScraperAPI", "Web scraping API", "https://www.scraperapi.com/"),
|
|
90
|
+
("Apify API", "Web scraping platform", "https://docs.apify.com/"),
|
|
91
|
+
("Crawlbase API", "Crawling API", "https://crawlbase.com/"),
|
|
92
|
+
("ProxyCrawl API", "Crawling API", "https://proxycrawl.com/"),
|
|
93
|
+
("ZenRows API", "Web scraping API", "https://www.zenrows.com/"),
|
|
94
|
+
],
|
|
95
|
+
"PDF Generation": [
|
|
96
|
+
("PDFShift API", "HTML to PDF API", "https://pdfshift.io/"),
|
|
97
|
+
("HTML2PDF Rocket", "PDF generation API", "https://html2pdfrocket.com/"),
|
|
98
|
+
("DocRaptor API", "PDF and Excel API", "https://docraptor.com/"),
|
|
99
|
+
("Pdfcrowd API", "PDF conversion API", "https://pdfcrowd.com/"),
|
|
100
|
+
("PDFMonkey API", "PDF templates API", "https://www.pdfmonkey.io/"),
|
|
101
|
+
("Puppeteer PDF", "Headless PDF generation", "https://pptr.dev/"),
|
|
102
|
+
("WeasyPrint API", "PDF generation", "https://weasyprint.org/"),
|
|
103
|
+
("Prince XML API", "PDF formatting API", "https://www.princexml.com/"),
|
|
104
|
+
],
|
|
105
|
+
"Background Jobs": [
|
|
106
|
+
("Inngest API", "Event-driven functions", "https://www.inngest.com/docs/"),
|
|
107
|
+
("Trigger.dev API", "Background jobs API", "https://trigger.dev/docs/"),
|
|
108
|
+
("Quirrel API", "Job scheduling API", "https://quirrel.dev/"),
|
|
109
|
+
("BullMQ API", "Queue system API", "https://docs.bullmq.io/"),
|
|
110
|
+
("Celery API", "Task queue API", "https://docs.celeryq.dev/"),
|
|
111
|
+
("Sidekiq API", "Background jobs Ruby", "https://sidekiq.org/"),
|
|
112
|
+
("RQ (Redis Queue)", "Python queue API", "https://python-rq.org/"),
|
|
113
|
+
("Faktory API", "Language-agnostic queue", "https://contribsys.com/faktory/"),
|
|
114
|
+
],
|
|
115
|
+
"Feature Flags": [
|
|
116
|
+
("LaunchDarkly API", "Feature flags API", "https://apidocs.launchdarkly.com/"),
|
|
117
|
+
("Split.io API", "Feature delivery API", "https://docs.split.io/"),
|
|
118
|
+
("Flagsmith API", "Feature flags API", "https://docs.flagsmith.com/"),
|
|
119
|
+
("Unleash API", "Feature toggle API", "https://docs.getunleash.io/"),
|
|
120
|
+
("ConfigCat API", "Feature flags API", "https://configcat.com/docs/advanced/public-api/"),
|
|
121
|
+
("GrowthBook API", "Feature flags API", "https://docs.growthbook.io/"),
|
|
122
|
+
("DevCycle API", "Feature flags API", "https://docs.devcycle.com/"),
|
|
123
|
+
("Statsig API", "Feature gates API", "https://docs.statsig.com/"),
|
|
124
|
+
],
|
|
125
|
+
"Uptime Monitoring": [
|
|
126
|
+
("UptimeRobot API", "Uptime monitoring", "https://uptimerobot.com/api/"),
|
|
127
|
+
("Pingdom API", "Website monitoring", "https://docs.pingdom.com/api/"),
|
|
128
|
+
("StatusCake API", "Uptime monitoring", "https://www.statuscake.com/api/"),
|
|
129
|
+
("Site24x7 API", "Monitoring API", "https://www.site24x7.com/help/api/"),
|
|
130
|
+
("Checkly API", "Monitoring API", "https://www.checklyhq.com/docs/api/"),
|
|
131
|
+
("Hyperping API", "Uptime monitoring", "https://hyperping.io/docs"),
|
|
132
|
+
("OnlineOrNot API", "Uptime monitoring", "https://onlineornot.com/docs"),
|
|
133
|
+
("Better Stack API", "Incident management", "https://betterstack.com/docs/"),
|
|
134
|
+
],
|
|
135
|
+
"Form Builders": [
|
|
136
|
+
("Typeform API", "Form builder API", "https://developer.typeform.com/"),
|
|
137
|
+
("JotForm API", "Form builder API", "https://api.jotform.com/docs/"),
|
|
138
|
+
("Tally API", "Form builder API", "https://tally.so/help/webhooks"),
|
|
139
|
+
("Formstack API", "Form platform API", "https://developers.formstack.com/"),
|
|
140
|
+
("Wufoo API", "Form builder API", "https://wufoo.com/docs/api/"),
|
|
141
|
+
("Cognito Forms API", "Form builder API", "https://www.cognitoforms.com/"),
|
|
142
|
+
("FormAssembly API", "Form platform API", "https://www.formassembly.com/"),
|
|
143
|
+
("123FormBuilder API", "Form builder API", "https://www.123formbuilder.com/"),
|
|
144
|
+
],
|
|
145
|
+
"Notification Services": [
|
|
146
|
+
("OneSignal API", "Push notifications", "https://documentation.onesignal.com/"),
|
|
147
|
+
("Firebase Cloud Messaging", "Push notification API", "https://firebase.google.com/docs/cloud-messaging"),
|
|
148
|
+
("Pusher Beams", "Push notifications", "https://pusher.com/docs/beams"),
|
|
149
|
+
("Airship API", "Mobile engagement", "https://docs.airship.com/"),
|
|
150
|
+
("Pushwoosh API", "Push notifications", "https://docs.pushwoosh.com/"),
|
|
151
|
+
("Braze API", "Customer engagement", "https://www.braze.com/docs/api/"),
|
|
152
|
+
("Leanplum API", "Mobile engagement", "https://docs.leanplum.com/"),
|
|
153
|
+
("CleverTap API", "Customer engagement", "https://developer.clevertap.com/"),
|
|
154
|
+
("MoEngage API", "Customer engagement", "https://developers.moengage.com/"),
|
|
155
|
+
("Iterable API", "Marketing automation", "https://api.iterable.com/"),
|
|
156
|
+
],
|
|
157
|
+
"Customer Data Platform": [
|
|
158
|
+
("Segment API", "CDP API", "https://segment.com/docs/connections/sources/catalog/"),
|
|
159
|
+
("mParticle API", "CDP API", "https://docs.mparticle.com/"),
|
|
160
|
+
("Tealium API", "CDP API", "https://docs.tealium.com/"),
|
|
161
|
+
("Bloomreach API", "Commerce experience", "https://documentation.bloomreach.com/"),
|
|
162
|
+
("Treasure Data API", "CDP API", "https://docs.treasuredata.com/"),
|
|
163
|
+
("Amperity API", "CDP API", "https://docs.amperity.com/"),
|
|
164
|
+
("ActionIQ API", "CDP API", "https://www.actioniq.com/"),
|
|
165
|
+
("Hightouch API", "Reverse ETL CDP", "https://hightouch.com/docs/api/"),
|
|
166
|
+
],
|
|
167
|
+
"Loyalty Programs": [
|
|
168
|
+
("Smile.io API", "Loyalty program API", "https://docs.smile.io/"),
|
|
169
|
+
("LoyaltyLion API", "Loyalty platform API", "https://developers.loyaltylion.com/"),
|
|
170
|
+
("Yotpo Loyalty API", "Loyalty program API", "https://core-api.yotpo.com/reference/"),
|
|
171
|
+
("Stamped.io API", "Reviews and loyalty", "https://stamped.io/docs"),
|
|
172
|
+
("Zinrelo API", "Loyalty rewards API", "https://docs.zinrelo.com/"),
|
|
173
|
+
("Antavo API", "Loyalty platform API", "https://antavo.com/"),
|
|
174
|
+
("Punchh API", "Restaurant loyalty API", "https://www.punchh.com/"),
|
|
175
|
+
("Paytronix API", "Guest engagement API", "https://www.paytronix.com/"),
|
|
176
|
+
],
|
|
177
|
+
"Reviews & Ratings": [
|
|
178
|
+
("Trustpilot API", "Reviews platform API", "https://developers.trustpilot.com/"),
|
|
179
|
+
("Google Reviews API", "Business reviews API", "https://developers.google.com/my-business/"),
|
|
180
|
+
("Yelp Fusion API", "Reviews API", "https://www.yelp.com/developers"),
|
|
181
|
+
("Bazaarvoice API", "Reviews platform API", "https://developer.bazaarvoice.com/"),
|
|
182
|
+
("PowerReviews API", "Reviews API", "https://www.powerreviews.com/"),
|
|
183
|
+
("Yotpo API", "Reviews API", "https://core-api.yotpo.com/reference/"),
|
|
184
|
+
("Judge.me API", "Product reviews API", "https://judge.me/"),
|
|
185
|
+
("Stamped.io API", "Reviews API", "https://stamped.io/docs"),
|
|
186
|
+
("Okendo API", "Reviews platform API", "https://www.okendo.io/"),
|
|
187
|
+
("Reviews.io API", "Reviews API", "https://reviews.io/"),
|
|
188
|
+
],
|
|
189
|
+
"Appointment Booking": [
|
|
190
|
+
("SimplyBook.me API", "Booking system API", "https://simplybook.me/en/api"),
|
|
191
|
+
("Setmore API", "Appointment API", "https://www.setmore.com/"),
|
|
192
|
+
("Square Appointments", "Booking API", "https://developer.squareup.com/"),
|
|
193
|
+
("Appointy API", "Scheduling API", "https://www.appointy.com/"),
|
|
194
|
+
("Booksy API", "Beauty booking API", "https://www.booksy.com/"),
|
|
195
|
+
("Fresha API", "Salon booking API", "https://www.fresha.com/"),
|
|
196
|
+
("Vagaro API", "Salon software API", "https://www.vagaro.com/"),
|
|
197
|
+
("Mindbody API", "Wellness booking API", "https://developers.mindbodyonline.com/"),
|
|
198
|
+
("WellnessLiving API", "Fitness booking API", "https://www.wellnessliving.com/"),
|
|
199
|
+
("Pike13 API", "Fitness software API", "https://pike13.com/"),
|
|
200
|
+
],
|
|
201
|
+
"Screen Recording": [
|
|
202
|
+
("Loom SDK", "Video messaging SDK", "https://dev.loom.com/"),
|
|
203
|
+
("Screencast-O-Matic API", "Screen recording API", "https://screencast-o-matic.com/"),
|
|
204
|
+
("CloudApp API", "Screen capture API", "https://www.getcloudapp.com/"),
|
|
205
|
+
("Snagit API", "Screen capture API", "https://www.techsmith.com/"),
|
|
206
|
+
("Droplr API", "Screen sharing API", "https://droplr.com/"),
|
|
207
|
+
("Monosnap API", "Screenshot API", "https://monosnap.com/"),
|
|
208
|
+
("Gyazo API", "Screenshot sharing API", "https://gyazo.com/api"),
|
|
209
|
+
("Lightshot API", "Screenshot tool API", "https://prnt.sc/"),
|
|
210
|
+
],
|
|
211
|
+
"Time Tracking": [
|
|
212
|
+
("Toggl Track API", "Time tracking API", "https://developers.track.toggl.com/"),
|
|
213
|
+
("Clockify API", "Time tracker API", "https://clockify.me/developers-api"),
|
|
214
|
+
("Harvest API", "Time tracking API", "https://help.getharvest.com/api-v2/"),
|
|
215
|
+
("Hubstaff API", "Time tracking API", "https://developer.hubstaff.com/"),
|
|
216
|
+
("Time Doctor API", "Productivity API", "https://www.timedoctor.com/"),
|
|
217
|
+
("RescueTime API", "Productivity API", "https://www.rescuetime.com/developers"),
|
|
218
|
+
("DeskTime API", "Time tracking API", "https://desktime.com/"),
|
|
219
|
+
("Timing App API", "Mac time tracking", "https://timingapp.com/"),
|
|
220
|
+
("Everhour API", "Time tracking API", "https://everhour.docs.apiary.io/"),
|
|
221
|
+
("Paymo API", "Project time tracking", "https://github.com/nicewage/paymo/wiki"),
|
|
222
|
+
],
|
|
223
|
+
"E-Signatures": [
|
|
224
|
+
("DocuSign API", "E-signature API", "https://developers.docusign.com/"),
|
|
225
|
+
("HelloSign API", "E-signature API", "https://developers.hellosign.com/"),
|
|
226
|
+
("PandaDoc API", "Document automation", "https://developers.pandadoc.com/"),
|
|
227
|
+
("SignNow API", "E-signature API", "https://docs.signnow.com/"),
|
|
228
|
+
("Adobe Sign API", "E-signature API", "https://acrobatservices.adobe.com/dc-integration-creation-app-cdn/"),
|
|
229
|
+
("SignRequest API", "E-signature API", "https://signrequest.com/api/v1/docs/"),
|
|
230
|
+
("Eversign API", "E-signature API", "https://eversign.com/api"),
|
|
231
|
+
("RightSignature API", "E-signature API", "https://rightsignature.com/"),
|
|
232
|
+
("SignWell API", "E-signature API", "https://www.signwell.com/"),
|
|
233
|
+
("Zoho Sign API", "E-signature API", "https://www.zoho.com/sign/api/"),
|
|
234
|
+
],
|
|
235
|
+
"Knowledge Base": [
|
|
236
|
+
("Intercom Articles API", "Help center API", "https://developers.intercom.com/"),
|
|
237
|
+
("Zendesk Guide API", "Knowledge base API", "https://developer.zendesk.com/"),
|
|
238
|
+
("Freshdesk KB API", "Knowledge base API", "https://developers.freshdesk.com/"),
|
|
239
|
+
("HelpScout API", "Help docs API", "https://developer.helpscout.com/"),
|
|
240
|
+
("Document360 API", "Knowledge base API", "https://document360.com/"),
|
|
241
|
+
("Notion API", "Knowledge management", "https://developers.notion.com/"),
|
|
242
|
+
("Confluence API", "Wiki platform API", "https://developer.atlassian.com/cloud/confluence/"),
|
|
243
|
+
("Guru API", "Knowledge platform API", "https://developer.getguru.com/"),
|
|
244
|
+
("Slite API", "Team knowledge API", "https://slite.com/"),
|
|
245
|
+
("Nuclino API", "Knowledge base API", "https://help.nuclino.com/"),
|
|
246
|
+
],
|
|
247
|
+
"Website Builders": [
|
|
248
|
+
("Webflow API", "Website builder API", "https://developers.webflow.com/"),
|
|
249
|
+
("Wix API", "Website builder API", "https://dev.wix.com/"),
|
|
250
|
+
("Squarespace API", "Website builder API", "https://developers.squarespace.com/"),
|
|
251
|
+
("Weebly API", "Website builder API", "https://www.weebly.com/developer/"),
|
|
252
|
+
("Duda API", "Website builder API", "https://developer.duda.co/"),
|
|
253
|
+
("Carrd API", "Simple websites API", "https://carrd.co/"),
|
|
254
|
+
("Framer API", "Web design API", "https://www.framer.com/developers/"),
|
|
255
|
+
("Editor X API", "Website builder API", "https://www.editorx.com/"),
|
|
256
|
+
("Readymag API", "Web publishing API", "https://readymag.com/"),
|
|
257
|
+
("Tilda API", "Website builder API", "https://tilda.cc/"),
|
|
258
|
+
],
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
def main():
|
|
262
|
+
print(f"🎯 Final Batch Expansion - {datetime.now().strftime('%H:%M')}")
|
|
263
|
+
|
|
264
|
+
registry = load_registry()
|
|
265
|
+
existing_ids = {api['id'] for api in registry['apis']}
|
|
266
|
+
initial = len(registry['apis'])
|
|
267
|
+
|
|
268
|
+
added = 0
|
|
269
|
+
for category, apis in FINAL_BATCH.items():
|
|
270
|
+
for name, desc, link in apis:
|
|
271
|
+
api_id = generate_id(name)
|
|
272
|
+
if api_id not in existing_ids:
|
|
273
|
+
registry['apis'].append({
|
|
274
|
+
"id": api_id,
|
|
275
|
+
"name": name,
|
|
276
|
+
"description": desc,
|
|
277
|
+
"category": category,
|
|
278
|
+
"auth": "apiKey",
|
|
279
|
+
"https": True,
|
|
280
|
+
"cors": "unknown",
|
|
281
|
+
"link": link,
|
|
282
|
+
"pricing": "unknown",
|
|
283
|
+
"keywords": [],
|
|
284
|
+
"source": "final_batch_02_22"
|
|
285
|
+
})
|
|
286
|
+
existing_ids.add(api_id)
|
|
287
|
+
added += 1
|
|
288
|
+
else:
|
|
289
|
+
uid = f"{api_id}-{unique_hash(link)}"
|
|
290
|
+
if uid not in existing_ids:
|
|
291
|
+
registry['apis'].append({
|
|
292
|
+
"id": uid,
|
|
293
|
+
"name": name,
|
|
294
|
+
"description": desc,
|
|
295
|
+
"category": category,
|
|
296
|
+
"auth": "apiKey",
|
|
297
|
+
"https": True,
|
|
298
|
+
"cors": "unknown",
|
|
299
|
+
"link": link,
|
|
300
|
+
"pricing": "unknown",
|
|
301
|
+
"keywords": [],
|
|
302
|
+
"source": "final_batch_02_22"
|
|
303
|
+
})
|
|
304
|
+
existing_ids.add(uid)
|
|
305
|
+
added += 1
|
|
306
|
+
|
|
307
|
+
registry['count'] = len(registry['apis'])
|
|
308
|
+
registry['lastUpdated'] = datetime.now().strftime('%Y-%m-%d')
|
|
309
|
+
save_registry(registry)
|
|
310
|
+
|
|
311
|
+
print(f"✅ Added {added} APIs | Total: {registry['count']}")
|
|
312
|
+
return added
|
|
313
|
+
|
|
314
|
+
if __name__ == "__main__":
|
|
315
|
+
main()
|