@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,353 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""More APIs to reach 1000+ per run"""
|
|
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: str) -> str:
|
|
13
|
+
return re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')[:50]
|
|
14
|
+
|
|
15
|
+
def unique_hash(s: str) -> str:
|
|
16
|
+
return hashlib.md5(s.encode()).hexdigest()[:6]
|
|
17
|
+
|
|
18
|
+
def load_registry():
|
|
19
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
20
|
+
return json.load(f)
|
|
21
|
+
|
|
22
|
+
def save_registry(registry):
|
|
23
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
24
|
+
json.dump(registry, f, indent=2)
|
|
25
|
+
|
|
26
|
+
MORE_APIS = {
|
|
27
|
+
"Insurance": [
|
|
28
|
+
("Lemonade API", "Insurance platform API", "https://www.lemonade.com/"),
|
|
29
|
+
("Root Insurance API", "Auto insurance API", "https://root.com/developers/"),
|
|
30
|
+
("Hippo Insurance API", "Home insurance API", "https://www.hippo.com/"),
|
|
31
|
+
("Metromile API", "Pay-per-mile insurance", "https://www.metromile.com/"),
|
|
32
|
+
("Oscar Health API", "Health insurance API", "https://www.hioscar.com/"),
|
|
33
|
+
("Bright Health API", "Health insurance platform", "https://brighthealthgroup.com/"),
|
|
34
|
+
("Clover Health API", "Medicare advantage API", "https://www.cloverhealth.com/"),
|
|
35
|
+
("Clearcover API", "Auto insurance API", "https://clearcover.com/"),
|
|
36
|
+
("Kin Insurance API", "Home insurance API", "https://www.kin.com/"),
|
|
37
|
+
("Branch Insurance API", "Home and auto insurance", "https://www.ourbranch.com/"),
|
|
38
|
+
],
|
|
39
|
+
"Construction": [
|
|
40
|
+
("Procore API", "Construction management API", "https://developers.procore.com/"),
|
|
41
|
+
("PlanGrid API", "Construction productivity API", "https://www.autodesk.com/products/plangrid/"),
|
|
42
|
+
("Bluebeam API", "PDF and collaboration API", "https://www.bluebeam.com/"),
|
|
43
|
+
("BuilderTrend API", "Construction software API", "https://buildertrend.com/"),
|
|
44
|
+
("CoConstruct API", "Home building software API", "https://www.coconstruct.com/"),
|
|
45
|
+
("Fieldwire API", "Jobsite management API", "https://www.fieldwire.com/"),
|
|
46
|
+
("Raken API", "Daily reporting API", "https://www.rakenapp.com/"),
|
|
47
|
+
("Autodesk Construction Cloud", "BIM platform API", "https://forge.autodesk.com/"),
|
|
48
|
+
("Trimble Connect", "Construction collaboration API", "https://connect.trimble.com/"),
|
|
49
|
+
("OpenSpace API", "Reality capture API", "https://www.openspace.ai/"),
|
|
50
|
+
],
|
|
51
|
+
"Nonprofit": [
|
|
52
|
+
("Salesforce Nonprofit Cloud", "Nonprofit CRM API", "https://www.salesforce.org/nonprofit/"),
|
|
53
|
+
("Bloomerang API", "Donor management API", "https://bloomerang.co/"),
|
|
54
|
+
("Little Green Light", "Donor database API", "https://www.littlegreenlight.com/"),
|
|
55
|
+
("Network for Good", "Fundraising platform API", "https://www.networkforgood.com/"),
|
|
56
|
+
("Classy API", "Online fundraising API", "https://developers.classy.org/"),
|
|
57
|
+
("GoFundMe Charity API", "Crowdfunding API", "https://charity.gofundme.com/"),
|
|
58
|
+
("GuideStar API", "Nonprofit data API", "https://www.guidestar.org/"),
|
|
59
|
+
("Charity Navigator API", "Charity ratings API", "https://www.charitynavigator.org/"),
|
|
60
|
+
("DonorBox API", "Donation forms API", "https://donorbox.org/"),
|
|
61
|
+
("Givebutter API", "Fundraising platform API", "https://givebutter.com/"),
|
|
62
|
+
],
|
|
63
|
+
"Manufacturing": [
|
|
64
|
+
("SAP Manufacturing", "Industrial software API", "https://www.sap.com/products/scm/manufacturing-execution.html"),
|
|
65
|
+
("Siemens MindSphere", "Industrial IoT platform", "https://siemens.mindsphere.io/"),
|
|
66
|
+
("Rockwell Automation", "Industrial automation API", "https://www.rockwellautomation.com/"),
|
|
67
|
+
("FANUC API", "Robotics and CNC API", "https://www.fanucamerica.com/"),
|
|
68
|
+
("ABB Robotics API", "Industrial robotics API", "https://new.abb.com/products/robotics/"),
|
|
69
|
+
("Kuka Robotics API", "Robot programming API", "https://www.kuka.com/"),
|
|
70
|
+
("Universal Robots API", "Cobot programming API", "https://www.universal-robots.com/"),
|
|
71
|
+
("Tulip API", "Manufacturing apps platform", "https://tulip.co/"),
|
|
72
|
+
("Sight Machine", "Manufacturing analytics API", "https://sightmachine.com/"),
|
|
73
|
+
("Augury API", "Machine health API", "https://www.augury.com/"),
|
|
74
|
+
],
|
|
75
|
+
"Restaurant/POS": [
|
|
76
|
+
("Square POS API", "Point of sale API", "https://developer.squareup.com/"),
|
|
77
|
+
("Toast API", "Restaurant POS API", "https://pos.toasttab.com/"),
|
|
78
|
+
("Clover API", "POS platform API", "https://www.clover.com/developers"),
|
|
79
|
+
("Lightspeed API", "Retail and restaurant API", "https://developers.lightspeedhq.com/"),
|
|
80
|
+
("Revel Systems API", "iPad POS API", "https://revelsystems.com/"),
|
|
81
|
+
("TouchBistro API", "Restaurant management API", "https://www.touchbistro.com/"),
|
|
82
|
+
("Olo API", "Online ordering API", "https://developer.olo.com/"),
|
|
83
|
+
("ChowNow API", "Online ordering platform", "https://get.chownow.com/"),
|
|
84
|
+
("DoorDash Drive API", "Delivery platform API", "https://developer.doordash.com/"),
|
|
85
|
+
("Uber Eats API", "Food delivery API", "https://developer.uber.com/docs/eats"),
|
|
86
|
+
("Grubhub API", "Food ordering API", "https://www.grubhub.com/"),
|
|
87
|
+
("Postmates API", "Delivery platform API", "https://postmates.com/developer/"),
|
|
88
|
+
("Instacart API", "Grocery delivery API", "https://www.instacart.com/company/"),
|
|
89
|
+
("Rappi API", "Delivery platform API", "https://rappi.com/"),
|
|
90
|
+
("OpenTable API", "Restaurant reservations", "https://www.opentable.com/start/"),
|
|
91
|
+
("Resy API", "Restaurant booking API", "https://resy.com/"),
|
|
92
|
+
("Yelp Reservations", "Restaurant booking API", "https://www.yelp-reservations.com/"),
|
|
93
|
+
("SevenRooms API", "Restaurant CRM API", "https://sevenrooms.com/"),
|
|
94
|
+
("MarketMan API", "Inventory management API", "https://www.marketman.com/"),
|
|
95
|
+
("BlueCart API", "Restaurant ordering API", "https://www.bluecart.com/"),
|
|
96
|
+
],
|
|
97
|
+
"Event Management": [
|
|
98
|
+
("Eventbrite API", "Event ticketing API", "https://www.eventbrite.com/platform/api"),
|
|
99
|
+
("Ticketmaster API", "Ticket sales API", "https://developer.ticketmaster.com/"),
|
|
100
|
+
("Cvent API", "Event management API", "https://developers.cvent.com/"),
|
|
101
|
+
("Bizzabo API", "Event experience API", "https://www.bizzabo.com/"),
|
|
102
|
+
("Hopin API", "Virtual events API", "https://hopin.com/"),
|
|
103
|
+
("Splash API", "Event marketing API", "https://splashthat.com/"),
|
|
104
|
+
("Eventzilla API", "Event registration API", "https://www.eventzilla.net/"),
|
|
105
|
+
("Whova API", "Event app API", "https://whova.com/"),
|
|
106
|
+
("Swoogo API", "Event management API", "https://swoogo.events/"),
|
|
107
|
+
("Hubilo API", "Virtual event platform", "https://hubilo.com/"),
|
|
108
|
+
("Airmeet API", "Virtual event platform", "https://www.airmeet.com/"),
|
|
109
|
+
("Run The World API", "Online event platform", "https://www.runtheworld.today/"),
|
|
110
|
+
("HeySummit API", "Virtual summit platform", "https://heysummit.com/"),
|
|
111
|
+
("Goldcast API", "B2B event platform", "https://www.goldcast.io/"),
|
|
112
|
+
("Welcome API", "Virtual event platform", "https://www.experiencewelcome.com/"),
|
|
113
|
+
],
|
|
114
|
+
"Accounting": [
|
|
115
|
+
("QuickBooks API", "Accounting software API", "https://developer.intuit.com/"),
|
|
116
|
+
("Xero API", "Accounting platform API", "https://developer.xero.com/"),
|
|
117
|
+
("FreshBooks API", "Invoice and accounting API", "https://www.freshbooks.com/api"),
|
|
118
|
+
("Wave API", "Small business accounting", "https://developer.waveapps.com/"),
|
|
119
|
+
("Zoho Books API", "Accounting software API", "https://www.zoho.com/books/api/"),
|
|
120
|
+
("Sage API", "Business management API", "https://developer.sage.com/"),
|
|
121
|
+
("NetSuite API", "ERP platform API", "https://www.netsuite.com/portal/developers/"),
|
|
122
|
+
("FreeAgent API", "Accounting software API", "https://dev.freeagent.com/"),
|
|
123
|
+
("Harvest API", "Time tracking API", "https://www.getharvest.com/api"),
|
|
124
|
+
("Bench API", "Bookkeeping service API", "https://bench.co/"),
|
|
125
|
+
("Pilot API", "Startup accounting API", "https://pilot.com/"),
|
|
126
|
+
("Ramp API", "Corporate card API", "https://ramp.com/"),
|
|
127
|
+
("Brex API", "Corporate card API", "https://developer.brex.com/"),
|
|
128
|
+
("Mercury API", "Startup banking API", "https://mercury.com/"),
|
|
129
|
+
("Melio API", "B2B payments API", "https://www.meliopayments.com/"),
|
|
130
|
+
],
|
|
131
|
+
"ERP": [
|
|
132
|
+
("SAP API", "Enterprise software API", "https://api.sap.com/"),
|
|
133
|
+
("Oracle ERP Cloud", "Cloud ERP API", "https://docs.oracle.com/en/cloud/saas/"),
|
|
134
|
+
("Microsoft Dynamics 365", "Business apps API", "https://docs.microsoft.com/dynamics365/"),
|
|
135
|
+
("Workday API", "Finance and HR API", "https://community.workday.com/"),
|
|
136
|
+
("Infor API", "Enterprise software API", "https://www.infor.com/"),
|
|
137
|
+
("Epicor API", "Manufacturing ERP API", "https://www.epicor.com/"),
|
|
138
|
+
("IFS API", "Enterprise software API", "https://www.ifs.com/"),
|
|
139
|
+
("Unit4 API", "ERP platform API", "https://www.unit4.com/"),
|
|
140
|
+
("Acumatica API", "Cloud ERP API", "https://www.acumatica.com/"),
|
|
141
|
+
("SYSPRO API", "Manufacturing ERP API", "https://www.syspro.com/"),
|
|
142
|
+
],
|
|
143
|
+
"3D & CAD": [
|
|
144
|
+
("Autodesk Forge", "CAD and 3D platform API", "https://forge.autodesk.com/"),
|
|
145
|
+
("Onshape API", "Cloud CAD API", "https://onshape-public.github.io/docs/"),
|
|
146
|
+
("Fusion 360 API", "CAD/CAM platform API", "https://www.autodesk.com/products/fusion-360/"),
|
|
147
|
+
("SolidWorks API", "3D CAD API", "https://www.solidworks.com/"),
|
|
148
|
+
("SketchUp API", "3D modeling API", "https://developer.sketchup.com/"),
|
|
149
|
+
("Rhino3D API", "3D modeling API", "https://developer.rhino3d.com/"),
|
|
150
|
+
("Blender API", "Open-source 3D API", "https://docs.blender.org/api/"),
|
|
151
|
+
("Three.js", "3D graphics library", "https://threejs.org/docs/"),
|
|
152
|
+
("Unity API", "Game engine API", "https://docs.unity3d.com/ScriptReference/"),
|
|
153
|
+
("Unreal Engine API", "Game engine API", "https://docs.unrealengine.com/"),
|
|
154
|
+
("Spline API", "Web 3D design tool", "https://spline.design/"),
|
|
155
|
+
("Clara.io API", "Cloud 3D modeling", "https://clara.io/"),
|
|
156
|
+
("Vectary API", "3D design platform", "https://www.vectary.com/"),
|
|
157
|
+
("Shapr3D API", "iPad CAD app API", "https://www.shapr3d.com/"),
|
|
158
|
+
("Gravity Sketch", "VR design API", "https://www.gravitysketch.com/"),
|
|
159
|
+
],
|
|
160
|
+
"Translation": [
|
|
161
|
+
("Google Cloud Translation", "Translation API", "https://cloud.google.com/translate/docs/"),
|
|
162
|
+
("DeepL API", "AI translation API", "https://www.deepl.com/docs-api"),
|
|
163
|
+
("Microsoft Translator", "Translation service API", "https://docs.microsoft.com/azure/cognitive-services/translator/"),
|
|
164
|
+
("Amazon Translate", "ML translation API", "https://docs.aws.amazon.com/translate/"),
|
|
165
|
+
("IBM Watson Language", "Language translation API", "https://cloud.ibm.com/apidocs/language-translator"),
|
|
166
|
+
("Yandex Translate API", "Translation service API", "https://yandex.com/dev/translate/"),
|
|
167
|
+
("ModernMT API", "Neural translation API", "https://www.modernmt.com/"),
|
|
168
|
+
("Unbabel API", "AI translation platform", "https://www.unbabel.com/"),
|
|
169
|
+
("Smartling API", "Translation management API", "https://api-reference.smartling.com/"),
|
|
170
|
+
("Transifex API", "Localization platform API", "https://developers.transifex.com/"),
|
|
171
|
+
("Crowdin API", "Localization management API", "https://developer.crowdin.com/"),
|
|
172
|
+
("Lokalise API", "Translation management API", "https://developers.lokalise.com/"),
|
|
173
|
+
("Phrase API", "Localization platform API", "https://developers.phrase.com/"),
|
|
174
|
+
("POEditor API", "Translation management API", "https://poeditor.com/docs/api"),
|
|
175
|
+
("Lilt API", "AI translation API", "https://lilt.com/developers/"),
|
|
176
|
+
],
|
|
177
|
+
"Shipping": [
|
|
178
|
+
("FedEx API", "Shipping services API", "https://developer.fedex.com/"),
|
|
179
|
+
("UPS API", "Shipping and tracking API", "https://developer.ups.com/"),
|
|
180
|
+
("USPS API", "US postal service API", "https://www.usps.com/business/web-tools-apis/"),
|
|
181
|
+
("DHL API", "Global shipping API", "https://developer.dhl.com/"),
|
|
182
|
+
("Canada Post API", "Canadian postal API", "https://www.canadapost.ca/cpc/en/business/shipping/developers.page"),
|
|
183
|
+
("Royal Mail API", "UK postal API", "https://www.royalmail.com/business/shipping-api"),
|
|
184
|
+
("Australia Post API", "Australian postal API", "https://developers.auspost.com.au/"),
|
|
185
|
+
("Pitney Bowes API", "Shipping solutions API", "https://www.pitneybowes.com/us/developer.html"),
|
|
186
|
+
("Stamps.com API", "Postage API", "https://www.stamps.com/"),
|
|
187
|
+
("Endicia API", "Postage and shipping API", "https://www.endicia.com/"),
|
|
188
|
+
("Ordoro API", "Shipping management API", "https://www.ordoro.com/"),
|
|
189
|
+
("ShipBob API", "Fulfillment platform API", "https://developer.shipbob.com/"),
|
|
190
|
+
("Fulfillment by Amazon", "FBA API", "https://developer-docs.amazon.com/sp-api/"),
|
|
191
|
+
("ShipHero API", "Warehouse management API", "https://developer.shiphero.com/"),
|
|
192
|
+
("Deliverr API", "E-commerce fulfillment API", "https://www.deliverr.com/"),
|
|
193
|
+
],
|
|
194
|
+
"Legal Tech": [
|
|
195
|
+
("Ironclad API", "Contract management API", "https://developer.ironcladapp.com/"),
|
|
196
|
+
("DocuSign CLM", "Contract lifecycle API", "https://developers.docusign.com/docs/clm-api/"),
|
|
197
|
+
("Juro API", "Contract automation API", "https://juro.com/"),
|
|
198
|
+
("Agiloft API", "Contract management API", "https://www.agiloft.com/"),
|
|
199
|
+
("ContractPodAi", "AI contract management", "https://contractpodai.com/"),
|
|
200
|
+
("LinkSquares API", "Contract analytics API", "https://linksquares.com/"),
|
|
201
|
+
("Concord API", "Contract management API", "https://www.concordnow.com/"),
|
|
202
|
+
("Evisort API", "AI contract analysis", "https://www.evisort.com/"),
|
|
203
|
+
("Logikcull API", "E-discovery API", "https://www.logikcull.com/"),
|
|
204
|
+
("Relativity API", "E-discovery platform API", "https://developer.relativity.com/"),
|
|
205
|
+
],
|
|
206
|
+
"Productivity": [
|
|
207
|
+
("Zapier API", "Automation platform API", "https://zapier.com/developer/documentation/"),
|
|
208
|
+
("Make (Integromat) API", "Automation API", "https://www.make.com/en/api-documentation"),
|
|
209
|
+
("n8n API", "Workflow automation API", "https://docs.n8n.io/api/"),
|
|
210
|
+
("Pipedream API", "Developer automation API", "https://pipedream.com/docs/api"),
|
|
211
|
+
("Tray.io API", "Integration platform API", "https://tray.io/documentation/"),
|
|
212
|
+
("Workato API", "Enterprise automation API", "https://docs.workato.com/"),
|
|
213
|
+
("Automate.io API", "Automation platform API", "https://automate.io/"),
|
|
214
|
+
("Paragon API", "Embedded integrations API", "https://docs.useparagon.com/"),
|
|
215
|
+
("Merge API", "Unified API platform", "https://merge.dev/docs/"),
|
|
216
|
+
("Finch API", "Employment systems API", "https://developer.tryfinch.com/"),
|
|
217
|
+
("Kombo API", "HR integrations API", "https://www.kombo.dev/"),
|
|
218
|
+
("Apideck API", "Unified APIs platform", "https://developers.apideck.com/"),
|
|
219
|
+
("Alloy API", "Commerce integrations API", "https://docs.runalloy.com/"),
|
|
220
|
+
("Vessel API", "CRM integrations API", "https://docs.vessel.land/"),
|
|
221
|
+
("Hotglue API", "Embedded ETL API", "https://hotglue.com/docs"),
|
|
222
|
+
],
|
|
223
|
+
"Data Engineering": [
|
|
224
|
+
("Snowflake API", "Data warehouse API", "https://docs.snowflake.com/en/developer-guide/sql-api/"),
|
|
225
|
+
("Databricks API", "Data lakehouse API", "https://docs.databricks.com/dev-tools/api/"),
|
|
226
|
+
("BigQuery API", "Google data warehouse", "https://cloud.google.com/bigquery/docs/reference/rest"),
|
|
227
|
+
("Redshift API", "AWS data warehouse", "https://docs.aws.amazon.com/redshift/"),
|
|
228
|
+
("dbt Cloud API", "Data transformation API", "https://docs.getdbt.com/dbt-cloud/api-v2"),
|
|
229
|
+
("Fivetran API", "Data integration API", "https://fivetran.com/docs/rest-api"),
|
|
230
|
+
("Airbyte API", "Data integration platform", "https://docs.airbyte.com/api-documentation"),
|
|
231
|
+
("Stitch API", "ETL platform API", "https://www.stitchdata.com/docs/developers/"),
|
|
232
|
+
("Census API", "Reverse ETL API", "https://docs.getcensus.com/"),
|
|
233
|
+
("Hightouch API", "Reverse ETL platform", "https://hightouch.com/docs/"),
|
|
234
|
+
("Rudderstack API", "Customer data API", "https://www.rudderstack.com/docs/api/"),
|
|
235
|
+
("Hevo API", "Data pipeline API", "https://docs.hevodata.com/"),
|
|
236
|
+
("Matillion API", "ETL platform API", "https://www.matillion.com/"),
|
|
237
|
+
("Talend API", "Data integration API", "https://www.talend.com/"),
|
|
238
|
+
("Apache Airflow API", "Workflow orchestration", "https://airflow.apache.org/docs/apache-airflow/stable/stable-rest-api-ref.html"),
|
|
239
|
+
("Prefect API", "Workflow orchestration", "https://docs.prefect.io/api-ref/"),
|
|
240
|
+
("Dagster API", "Data orchestration API", "https://docs.dagster.io/concepts/dagit/graphql"),
|
|
241
|
+
("Mage API", "Data pipeline tool", "https://docs.mage.ai/development/guides/rest-api"),
|
|
242
|
+
("Great Expectations", "Data quality API", "https://docs.greatexpectations.io/"),
|
|
243
|
+
("Monte Carlo API", "Data observability API", "https://docs.getmontecarlo.com/"),
|
|
244
|
+
],
|
|
245
|
+
"Biometrics": [
|
|
246
|
+
("Face++ API", "Facial recognition API", "https://www.faceplusplus.com/"),
|
|
247
|
+
("Amazon Rekognition", "Image analysis API", "https://docs.aws.amazon.com/rekognition/"),
|
|
248
|
+
("Microsoft Face API", "Facial recognition API", "https://docs.microsoft.com/azure/cognitive-services/face/"),
|
|
249
|
+
("Kairos API", "Face recognition API", "https://www.kairos.com/docs/api/"),
|
|
250
|
+
("BioID API", "Biometric authentication", "https://www.bioid.com/"),
|
|
251
|
+
("iProov API", "Liveness detection API", "https://www.iproov.com/"),
|
|
252
|
+
("Onfido API", "Identity verification API", "https://documentation.onfido.com/"),
|
|
253
|
+
("Jumio API", "Identity verification API", "https://www.jumio.com/"),
|
|
254
|
+
("Veriff API", "Identity verification API", "https://developers.veriff.com/"),
|
|
255
|
+
("Socure API", "Identity verification API", "https://developer.socure.com/"),
|
|
256
|
+
("Persona API", "Identity platform API", "https://docs.withpersona.com/"),
|
|
257
|
+
("Alloy API", "Identity decisioning API", "https://www.alloy.com/"),
|
|
258
|
+
("Trulioo API", "Global identity API", "https://developer.trulioo.com/"),
|
|
259
|
+
("Yoti API", "Digital identity API", "https://developers.yoti.com/"),
|
|
260
|
+
("ID.me API", "Identity network API", "https://developers.id.me/"),
|
|
261
|
+
],
|
|
262
|
+
"Video": [
|
|
263
|
+
("YouTube Data API", "YouTube platform API", "https://developers.google.com/youtube/v3"),
|
|
264
|
+
("Vimeo API", "Video platform API", "https://developer.vimeo.com/"),
|
|
265
|
+
("Wistia API", "Video hosting API", "https://wistia.com/support/developers"),
|
|
266
|
+
("Brightcove API", "Video platform API", "https://apis.support.brightcove.com/"),
|
|
267
|
+
("JW Player API", "Video player API", "https://developer.jwplayer.com/"),
|
|
268
|
+
("Kaltura API", "Video platform API", "https://developer.kaltura.com/"),
|
|
269
|
+
("Bitmovin API", "Video encoding API", "https://developer.bitmovin.com/"),
|
|
270
|
+
("AWS MediaConvert", "Video transcoding API", "https://docs.aws.amazon.com/mediaconvert/"),
|
|
271
|
+
("Encoding.com API", "Video encoding API", "https://www.encoding.com/"),
|
|
272
|
+
("Cloudflare Stream", "Video streaming API", "https://developers.cloudflare.com/stream/"),
|
|
273
|
+
("Bunny Stream", "Video hosting API", "https://docs.bunny.net/docs/stream-overview"),
|
|
274
|
+
("api.video", "Video infrastructure API", "https://docs.api.video/"),
|
|
275
|
+
("Ziggeo API", "Video recording API", "https://ziggeo.com/docs/"),
|
|
276
|
+
("Vidyard API", "Video marketing API", "https://knowledge.vidyard.com/hc/en-us/articles/360009996754"),
|
|
277
|
+
("Loom API", "Video messaging API", "https://dev.loom.com/docs"),
|
|
278
|
+
],
|
|
279
|
+
"Telecom": [
|
|
280
|
+
("Plivo API", "Cloud communications API", "https://www.plivo.com/docs/"),
|
|
281
|
+
("Bandwidth API", "Communications platform", "https://dev.bandwidth.com/"),
|
|
282
|
+
("Telnyx API", "Communications API", "https://developers.telnyx.com/"),
|
|
283
|
+
("SignalWire API", "Communications API", "https://developer.signalwire.com/"),
|
|
284
|
+
("RingCentral API", "Business communications", "https://developers.ringcentral.com/"),
|
|
285
|
+
("8x8 API", "Communications platform", "https://developer.8x8.com/"),
|
|
286
|
+
("Dialpad API", "Business phone API", "https://developers.dialpad.com/"),
|
|
287
|
+
("Aircall API", "Phone system API", "https://developer.aircall.io/"),
|
|
288
|
+
("Grasshopper API", "Virtual phone API", "https://www.grasshopper.com/"),
|
|
289
|
+
("OpenPhone API", "Business phone API", "https://www.openphone.com/"),
|
|
290
|
+
("JustCall API", "Sales phone API", "https://justcall.io/api-docs/"),
|
|
291
|
+
("CloudTalk API", "Call center API", "https://developers.cloudtalk.io/"),
|
|
292
|
+
("Five9 API", "Contact center API", "https://developer.five9.com/"),
|
|
293
|
+
("Genesys Cloud API", "Contact center API", "https://developer.genesys.cloud/"),
|
|
294
|
+
("Twilio Flex", "Contact center API", "https://www.twilio.com/docs/flex"),
|
|
295
|
+
],
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
def main():
|
|
299
|
+
print(f"📦 More APIs Expansion - {datetime.now().strftime('%H:%M')}")
|
|
300
|
+
|
|
301
|
+
registry = load_registry()
|
|
302
|
+
existing_ids = {api['id'] for api in registry['apis']}
|
|
303
|
+
initial = len(registry['apis'])
|
|
304
|
+
|
|
305
|
+
added = 0
|
|
306
|
+
for category, apis in MORE_APIS.items():
|
|
307
|
+
for name, desc, link in apis:
|
|
308
|
+
api_id = generate_id(name)
|
|
309
|
+
if api_id not in existing_ids:
|
|
310
|
+
registry['apis'].append({
|
|
311
|
+
"id": api_id,
|
|
312
|
+
"name": name,
|
|
313
|
+
"description": desc,
|
|
314
|
+
"category": category,
|
|
315
|
+
"auth": "apiKey",
|
|
316
|
+
"https": True,
|
|
317
|
+
"cors": "unknown",
|
|
318
|
+
"link": link,
|
|
319
|
+
"pricing": "unknown",
|
|
320
|
+
"keywords": [category.lower().replace(" ", "-")],
|
|
321
|
+
"source": "more_apis_02_22"
|
|
322
|
+
})
|
|
323
|
+
existing_ids.add(api_id)
|
|
324
|
+
added += 1
|
|
325
|
+
else:
|
|
326
|
+
# Try unique ID
|
|
327
|
+
uid = f"{api_id}-{unique_hash(link)}"
|
|
328
|
+
if uid not in existing_ids:
|
|
329
|
+
registry['apis'].append({
|
|
330
|
+
"id": uid,
|
|
331
|
+
"name": name,
|
|
332
|
+
"description": desc,
|
|
333
|
+
"category": category,
|
|
334
|
+
"auth": "apiKey",
|
|
335
|
+
"https": True,
|
|
336
|
+
"cors": "unknown",
|
|
337
|
+
"link": link,
|
|
338
|
+
"pricing": "unknown",
|
|
339
|
+
"keywords": [category.lower().replace(" ", "-")],
|
|
340
|
+
"source": "more_apis_02_22"
|
|
341
|
+
})
|
|
342
|
+
existing_ids.add(uid)
|
|
343
|
+
added += 1
|
|
344
|
+
|
|
345
|
+
registry['count'] = len(registry['apis'])
|
|
346
|
+
registry['lastUpdated'] = datetime.now().strftime('%Y-%m-%d')
|
|
347
|
+
save_registry(registry)
|
|
348
|
+
|
|
349
|
+
print(f"✅ Added {added} APIs | Total: {registry['count']}")
|
|
350
|
+
return added
|
|
351
|
+
|
|
352
|
+
if __name__ == "__main__":
|
|
353
|
+
main()
|