@nordsym/apiclaw 1.2.1 → 1.2.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/.env.prod +1 -0
- package/AGENTS.md +50 -33
- package/README.md +22 -12
- package/SOUL.md +60 -19
- package/STATUS.md +91 -169
- package/convex/_generated/api.d.ts +6 -0
- package/convex/directCall.ts +598 -0
- package/convex/http.ts +32 -0
- package/convex/providers.ts +341 -26
- package/convex/schema.ts +87 -0
- package/convex/usage.ts +260 -0
- package/convex/waitlist.ts +55 -0
- package/data/combined-02-25.json +5602 -0
- package/data/combined-02-26.json +22102 -0
- package/data/night-batch-02-25.json +2732 -0
- package/data/night-expansion-02-25.json +2872 -0
- package/data/night-expansion-02-26-06-batch2.json +1898 -0
- package/data/night-expansion-02-26-06-batch3.json +1410 -0
- package/data/night-expansion-02-26-06.json +3146 -0
- package/data/night-expansion-02-26-full.json +9726 -0
- package/data/night-expansion-02-26-v2.json +330 -0
- package/data/night-expansion-02-26.json +171 -0
- package/dist/credentials.d.ts.map +1 -1
- package/dist/credentials.js +15 -0
- package/dist/credentials.js.map +1 -1
- package/dist/crypto.d.ts +7 -0
- package/dist/crypto.d.ts.map +1 -0
- package/dist/crypto.js +67 -0
- package/dist/crypto.js.map +1 -0
- package/dist/execute-dynamic.d.ts +116 -0
- package/dist/execute-dynamic.d.ts.map +1 -0
- package/dist/execute-dynamic.js +456 -0
- package/dist/execute-dynamic.js.map +1 -0
- package/dist/execute.d.ts +2 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +111 -5
- package/dist/execute.js.map +1 -1
- package/dist/index.js +35 -4
- 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 +46554 -174
- package/docs/PRD-customer-key-passthrough.md +184 -0
- package/landing/public/badges/available-on-apiclaw.svg +14 -0
- package/landing/scripts/generate-stats.js +75 -4
- package/landing/src/app/admin/page.tsx +1 -1
- package/landing/src/app/api/auth/magic-link/route.ts +9 -2
- package/landing/src/app/api/auth/session/route.ts +1 -1
- package/landing/src/app/api/auth/verify/route.ts +8 -5
- package/landing/src/app/api/og/route.tsx +5 -3
- package/landing/src/app/docs/page.tsx +23 -22
- package/landing/src/app/earn/page.tsx +20 -17
- package/landing/src/app/globals.css +16 -15
- package/landing/src/app/layout.tsx +2 -2
- package/landing/src/app/page.tsx +555 -252
- package/landing/src/app/providers/dashboard/[apiId]/actions/[actionId]/edit/page.tsx +600 -0
- package/landing/src/app/providers/dashboard/[apiId]/actions/new/page.tsx +583 -0
- package/landing/src/app/providers/dashboard/[apiId]/actions/page.tsx +301 -0
- package/landing/src/app/providers/dashboard/[apiId]/direct-call/page.tsx +659 -0
- package/landing/src/app/providers/dashboard/[apiId]/page.tsx +381 -0
- package/landing/src/app/providers/dashboard/[apiId]/test/page.tsx +418 -0
- package/landing/src/app/providers/dashboard/layout.tsx +292 -0
- package/landing/src/app/providers/dashboard/page.tsx +353 -290
- package/landing/src/app/providers/page.tsx +6 -5
- package/landing/src/app/providers/register/page.tsx +88 -11
- package/landing/src/components/AiClientDropdown.tsx +85 -0
- package/landing/src/components/ConfigHelperModal.tsx +113 -0
- package/landing/src/components/HeroTabs.tsx +187 -0
- package/landing/src/components/ShareIntegrationModal.tsx +198 -0
- package/landing/src/hooks/useDashboardData.ts +53 -1
- package/landing/src/lib/apis.json +46554 -174
- package/landing/src/lib/convex-client.ts +28 -5
- package/landing/src/lib/stats.json +4 -4
- package/landing/tsconfig.tsbuildinfo +1 -1
- package/night-expansion-02-26-06-batch2.py +368 -0
- package/night-expansion-02-26-06-batch3.py +299 -0
- package/night-expansion-02-26-06.py +756 -0
- package/package.json +2 -1
- package/scripts/bulk-add-public-apis-v2.py +418 -0
- 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/scripts/night-expansion-02-26-v2.py +296 -0
- package/scripts/night-expansion-02-26.py +890 -0
- package/scripts/seed-complete-api.js +181 -0
- package/scripts/seed-demo-api.sh +44 -0
- package/src/credentials.ts +16 -0
- package/src/crypto.ts +75 -0
- package/src/execute-dynamic.ts +589 -0
- package/src/execute.ts +127 -5
- package/src/index.ts +40 -4
- package/src/proxy.ts +1 -1
- package/src/registry/apis.json +46554 -174
|
@@ -0,0 +1,695 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Night Expansion Batch 2 - 2026-02-24 06:00
|
|
4
|
+
Target: Add 1000+ more unique APIs
|
|
5
|
+
Focus: Enterprise, Regional, Niche categories
|
|
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')
|
|
22
|
+
|
|
23
|
+
# More niche and unique APIs
|
|
24
|
+
NEW_APIS = [
|
|
25
|
+
# === ACCOUNTING & BOOKKEEPING ===
|
|
26
|
+
{"name": "QuickBooks Online", "desc": "Small business accounting", "cat": "Finance", "auth": "OAuth"},
|
|
27
|
+
{"name": "Xero", "desc": "Cloud accounting software", "cat": "Finance", "auth": "OAuth"},
|
|
28
|
+
{"name": "FreshBooks", "desc": "Invoice and accounting", "cat": "Finance", "auth": "OAuth"},
|
|
29
|
+
{"name": "Wave Accounting", "desc": "Free accounting software", "cat": "Finance", "auth": "apiKey"},
|
|
30
|
+
{"name": "Sage Intacct", "desc": "Cloud financial management", "cat": "Finance", "auth": "apiKey"},
|
|
31
|
+
{"name": "Zoho Books", "desc": "Online accounting", "cat": "Finance", "auth": "OAuth"},
|
|
32
|
+
{"name": "Kashoo", "desc": "Simple cloud accounting", "cat": "Finance", "auth": "apiKey"},
|
|
33
|
+
{"name": "Bench", "desc": "Bookkeeping service", "cat": "Finance", "auth": "apiKey"},
|
|
34
|
+
{"name": "Pilot", "desc": "Bookkeeping for startups", "cat": "Finance", "auth": "apiKey"},
|
|
35
|
+
{"name": "Fiskl", "desc": "Accounting app", "cat": "Finance", "auth": "apiKey"},
|
|
36
|
+
{"name": "ZipBooks", "desc": "Free accounting", "cat": "Finance", "auth": "apiKey"},
|
|
37
|
+
{"name": "Akaunting", "desc": "Open source accounting", "cat": "Finance", "auth": "apiKey"},
|
|
38
|
+
{"name": "Manager.io", "desc": "Free accounting software", "cat": "Finance", "auth": "None"},
|
|
39
|
+
{"name": "GnuCash", "desc": "Open source finance", "cat": "Finance", "auth": "None"},
|
|
40
|
+
{"name": "Odoo Accounting", "desc": "ERP accounting module", "cat": "Finance", "auth": "apiKey"},
|
|
41
|
+
{"name": "ERPNext", "desc": "Open source ERP", "cat": "Business", "auth": "apiKey"},
|
|
42
|
+
{"name": "Dolibarr", "desc": "Open source ERP/CRM", "cat": "Business", "auth": "apiKey"},
|
|
43
|
+
|
|
44
|
+
# === CONSTRUCTION & REAL ESTATE ===
|
|
45
|
+
{"name": "Procore", "desc": "Construction management", "cat": "Business", "auth": "OAuth"},
|
|
46
|
+
{"name": "PlanGrid", "desc": "Construction productivity", "cat": "Business", "auth": "apiKey"},
|
|
47
|
+
{"name": "Autodesk Construction Cloud", "desc": "Construction software", "cat": "Business", "auth": "OAuth"},
|
|
48
|
+
{"name": "Buildertrend", "desc": "Home builder software", "cat": "Business", "auth": "apiKey"},
|
|
49
|
+
{"name": "CoConstruct", "desc": "Home builder management", "cat": "Business", "auth": "apiKey"},
|
|
50
|
+
{"name": "Fieldwire", "desc": "Field management", "cat": "Business", "auth": "apiKey"},
|
|
51
|
+
{"name": "Raken", "desc": "Daily reporting app", "cat": "Business", "auth": "apiKey"},
|
|
52
|
+
{"name": "Bluebeam", "desc": "PDF markup for AEC", "cat": "Documents", "auth": "apiKey"},
|
|
53
|
+
{"name": "Trimble Connect", "desc": "Construction collaboration", "cat": "Business", "auth": "apiKey"},
|
|
54
|
+
{"name": "BIM 360", "desc": "Building information modeling", "cat": "Business", "auth": "OAuth"},
|
|
55
|
+
{"name": "Zillow", "desc": "Real estate marketplace", "cat": "Real Estate", "auth": "apiKey"},
|
|
56
|
+
{"name": "Redfin", "desc": "Real estate brokerage", "cat": "Real Estate", "auth": "apiKey"},
|
|
57
|
+
{"name": "Realtor.com", "desc": "Real estate listings", "cat": "Real Estate", "auth": "apiKey"},
|
|
58
|
+
{"name": "Trulia", "desc": "Real estate search", "cat": "Real Estate", "auth": "apiKey"},
|
|
59
|
+
{"name": "Apartments.com", "desc": "Rental listings", "cat": "Real Estate", "auth": "apiKey"},
|
|
60
|
+
{"name": "Rentals.com", "desc": "Rental marketplace", "cat": "Real Estate", "auth": "apiKey"},
|
|
61
|
+
{"name": "CoStar", "desc": "Commercial real estate data", "cat": "Real Estate", "auth": "apiKey"},
|
|
62
|
+
{"name": "LoopNet", "desc": "Commercial property", "cat": "Real Estate", "auth": "apiKey"},
|
|
63
|
+
{"name": "Reonomy", "desc": "Commercial real estate data", "cat": "Real Estate", "auth": "apiKey"},
|
|
64
|
+
{"name": "ATTOM Data", "desc": "Property data", "cat": "Real Estate", "auth": "apiKey"},
|
|
65
|
+
{"name": "CoreLogic", "desc": "Property data analytics", "cat": "Real Estate", "auth": "apiKey"},
|
|
66
|
+
{"name": "HouseCanary", "desc": "Real estate valuation", "cat": "Real Estate", "auth": "apiKey"},
|
|
67
|
+
{"name": "Mashvisor", "desc": "Investment property analytics", "cat": "Real Estate", "auth": "apiKey"},
|
|
68
|
+
{"name": "RentCafe", "desc": "Property management", "cat": "Real Estate", "auth": "apiKey"},
|
|
69
|
+
{"name": "AppFolio", "desc": "Property management", "cat": "Real Estate", "auth": "apiKey"},
|
|
70
|
+
{"name": "Buildium", "desc": "Property management", "cat": "Real Estate", "auth": "apiKey"},
|
|
71
|
+
{"name": "Rentec Direct", "desc": "Property management", "cat": "Real Estate", "auth": "apiKey"},
|
|
72
|
+
{"name": "TenantCloud", "desc": "Rental management", "cat": "Real Estate", "auth": "apiKey"},
|
|
73
|
+
{"name": "Innago", "desc": "Property management", "cat": "Real Estate", "auth": "apiKey"},
|
|
74
|
+
{"name": "Avail", "desc": "DIY landlord software", "cat": "Real Estate", "auth": "apiKey"},
|
|
75
|
+
|
|
76
|
+
# === AGRICULTURE & FARMING ===
|
|
77
|
+
{"name": "John Deere Operations", "desc": "Farm management", "cat": "Science", "auth": "OAuth"},
|
|
78
|
+
{"name": "Climate FieldView", "desc": "Digital farming", "cat": "Science", "auth": "apiKey"},
|
|
79
|
+
{"name": "Granular", "desc": "Farm management software", "cat": "Science", "auth": "apiKey"},
|
|
80
|
+
{"name": "Farmers Edge", "desc": "Digital agriculture", "cat": "Science", "auth": "apiKey"},
|
|
81
|
+
{"name": "Ag Leader", "desc": "Precision agriculture", "cat": "Science", "auth": "apiKey"},
|
|
82
|
+
{"name": "Trimble Ag", "desc": "Agriculture technology", "cat": "Science", "auth": "apiKey"},
|
|
83
|
+
{"name": "CNH Industrial", "desc": "Agricultural equipment", "cat": "Science", "auth": "apiKey"},
|
|
84
|
+
{"name": "AGCO Connect", "desc": "Farm equipment data", "cat": "Science", "auth": "apiKey"},
|
|
85
|
+
{"name": "Bushel", "desc": "Grain marketing", "cat": "Science", "auth": "apiKey"},
|
|
86
|
+
{"name": "Indigo Agriculture", "desc": "Agricultural marketplace", "cat": "Science", "auth": "apiKey"},
|
|
87
|
+
{"name": "FBN Farm", "desc": "Farmer's business network", "cat": "Science", "auth": "apiKey"},
|
|
88
|
+
{"name": "Agrivi", "desc": "Farm management", "cat": "Science", "auth": "apiKey"},
|
|
89
|
+
{"name": "Cropio", "desc": "Satellite monitoring", "cat": "Science", "auth": "apiKey"},
|
|
90
|
+
{"name": "Agworld", "desc": "Farm record keeping", "cat": "Science", "auth": "apiKey"},
|
|
91
|
+
{"name": "AgriWebb", "desc": "Livestock management", "cat": "Science", "auth": "apiKey"},
|
|
92
|
+
{"name": "Farmbrite", "desc": "Farm management", "cat": "Science", "auth": "apiKey"},
|
|
93
|
+
|
|
94
|
+
# === MANUFACTURING & SUPPLY CHAIN ===
|
|
95
|
+
{"name": "SAP S4HANA", "desc": "Enterprise resource planning", "cat": "Business", "auth": "OAuth"},
|
|
96
|
+
{"name": "Oracle SCM Cloud", "desc": "Supply chain management", "cat": "Business", "auth": "OAuth"},
|
|
97
|
+
{"name": "Kinaxis", "desc": "Supply chain planning", "cat": "Business", "auth": "apiKey"},
|
|
98
|
+
{"name": "Blue Yonder", "desc": "Supply chain solutions", "cat": "Business", "auth": "apiKey"},
|
|
99
|
+
{"name": "E2open", "desc": "Supply chain software", "cat": "Business", "auth": "apiKey"},
|
|
100
|
+
{"name": "Coupa", "desc": "Spend management", "cat": "Business", "auth": "apiKey"},
|
|
101
|
+
{"name": "Ariba", "desc": "Procurement network", "cat": "Business", "auth": "OAuth"},
|
|
102
|
+
{"name": "Jaggaer", "desc": "Procurement solutions", "cat": "Business", "auth": "apiKey"},
|
|
103
|
+
{"name": "Infor", "desc": "Industry cloud software", "cat": "Business", "auth": "apiKey"},
|
|
104
|
+
{"name": "Epicor", "desc": "Manufacturing ERP", "cat": "Business", "auth": "apiKey"},
|
|
105
|
+
{"name": "Plex Systems", "desc": "Smart manufacturing", "cat": "Business", "auth": "apiKey"},
|
|
106
|
+
{"name": "IQMS", "desc": "Manufacturing ERP", "cat": "Business", "auth": "apiKey"},
|
|
107
|
+
{"name": "Fishbowl", "desc": "Inventory management", "cat": "Business", "auth": "apiKey"},
|
|
108
|
+
{"name": "Cin7", "desc": "Inventory management", "cat": "Business", "auth": "apiKey"},
|
|
109
|
+
{"name": "TradeGecko", "desc": "Inventory platform", "cat": "Business", "auth": "apiKey"},
|
|
110
|
+
{"name": "Ordoro", "desc": "Inventory and shipping", "cat": "Business", "auth": "apiKey"},
|
|
111
|
+
{"name": "Skubana", "desc": "Operations platform", "cat": "Business", "auth": "apiKey"},
|
|
112
|
+
{"name": "Brightpearl", "desc": "Retail operations", "cat": "Business", "auth": "apiKey"},
|
|
113
|
+
{"name": "Acumatica", "desc": "Cloud ERP", "cat": "Business", "auth": "apiKey"},
|
|
114
|
+
{"name": "Syspro", "desc": "Manufacturing ERP", "cat": "Business", "auth": "apiKey"},
|
|
115
|
+
{"name": "QAD", "desc": "Manufacturing ERP", "cat": "Business", "auth": "apiKey"},
|
|
116
|
+
{"name": "Aptean", "desc": "Industry ERP", "cat": "Business", "auth": "apiKey"},
|
|
117
|
+
{"name": "Global Shop Solutions", "desc": "ERP for manufacturers", "cat": "Business", "auth": "apiKey"},
|
|
118
|
+
{"name": "JobBOSS", "desc": "Shop management", "cat": "Business", "auth": "apiKey"},
|
|
119
|
+
{"name": "E2 Shop System", "desc": "Shop floor control", "cat": "Business", "auth": "apiKey"},
|
|
120
|
+
|
|
121
|
+
# === AUTOMOTIVE ===
|
|
122
|
+
{"name": "Tesla Fleet", "desc": "Tesla fleet management", "cat": "Transportation", "auth": "OAuth"},
|
|
123
|
+
{"name": "Ford API", "desc": "Ford vehicle data", "cat": "Transportation", "auth": "OAuth"},
|
|
124
|
+
{"name": "GM Developer", "desc": "General Motors API", "cat": "Transportation", "auth": "OAuth"},
|
|
125
|
+
{"name": "BMW Connected Drive", "desc": "BMW connectivity", "cat": "Transportation", "auth": "OAuth"},
|
|
126
|
+
{"name": "Mercedes me", "desc": "Mercedes connectivity", "cat": "Transportation", "auth": "OAuth"},
|
|
127
|
+
{"name": "Audi Connect", "desc": "Audi services", "cat": "Transportation", "auth": "OAuth"},
|
|
128
|
+
{"name": "Volvo On Call", "desc": "Volvo connectivity", "cat": "Transportation", "auth": "OAuth"},
|
|
129
|
+
{"name": "Porsche Connect", "desc": "Porsche services", "cat": "Transportation", "auth": "OAuth"},
|
|
130
|
+
{"name": "Hyundai Blue Link", "desc": "Hyundai connectivity", "cat": "Transportation", "auth": "OAuth"},
|
|
131
|
+
{"name": "Kia Connect", "desc": "Kia connectivity", "cat": "Transportation", "auth": "OAuth"},
|
|
132
|
+
{"name": "Toyota Connected", "desc": "Toyota services", "cat": "Transportation", "auth": "OAuth"},
|
|
133
|
+
{"name": "Nissan Connect", "desc": "Nissan connectivity", "cat": "Transportation", "auth": "OAuth"},
|
|
134
|
+
{"name": "Honda Connected", "desc": "Honda services", "cat": "Transportation", "auth": "OAuth"},
|
|
135
|
+
{"name": "Subaru Starlink", "desc": "Subaru connectivity", "cat": "Transportation", "auth": "OAuth"},
|
|
136
|
+
{"name": "Smartcar", "desc": "Vehicle data API", "cat": "Transportation", "auth": "OAuth"},
|
|
137
|
+
{"name": "Carvana", "desc": "Online car buying", "cat": "Transportation", "auth": "apiKey"},
|
|
138
|
+
{"name": "Vroom", "desc": "Online car sales", "cat": "Transportation", "auth": "apiKey"},
|
|
139
|
+
{"name": "CarGurus", "desc": "Car shopping", "cat": "Transportation", "auth": "apiKey"},
|
|
140
|
+
{"name": "AutoTrader", "desc": "Car marketplace", "cat": "Transportation", "auth": "apiKey"},
|
|
141
|
+
{"name": "Cars.com", "desc": "Auto marketplace", "cat": "Transportation", "auth": "apiKey"},
|
|
142
|
+
{"name": "TrueCar", "desc": "Car pricing data", "cat": "Transportation", "auth": "apiKey"},
|
|
143
|
+
{"name": "Kelley Blue Book", "desc": "Vehicle values", "cat": "Transportation", "auth": "apiKey"},
|
|
144
|
+
{"name": "Edmunds", "desc": "Car reviews and data", "cat": "Transportation", "auth": "apiKey"},
|
|
145
|
+
{"name": "NHTSA", "desc": "Vehicle safety data", "cat": "Transportation", "auth": "None"},
|
|
146
|
+
{"name": "Carfax", "desc": "Vehicle history", "cat": "Transportation", "auth": "apiKey"},
|
|
147
|
+
{"name": "AutoCheck", "desc": "Vehicle history reports", "cat": "Transportation", "auth": "apiKey"},
|
|
148
|
+
{"name": "VINwiki", "desc": "Vehicle history platform", "cat": "Transportation", "auth": "apiKey"},
|
|
149
|
+
{"name": "Turo", "desc": "Car sharing marketplace", "cat": "Transportation", "auth": "OAuth"},
|
|
150
|
+
{"name": "Getaround", "desc": "Car sharing", "cat": "Transportation", "auth": "OAuth"},
|
|
151
|
+
{"name": "Zipcar", "desc": "Car sharing service", "cat": "Transportation", "auth": "OAuth"},
|
|
152
|
+
{"name": "Enterprise CarShare", "desc": "Car sharing", "cat": "Transportation", "auth": "apiKey"},
|
|
153
|
+
{"name": "ChargePoint", "desc": "EV charging network", "cat": "Transportation", "auth": "apiKey"},
|
|
154
|
+
{"name": "EVgo", "desc": "EV charging", "cat": "Transportation", "auth": "apiKey"},
|
|
155
|
+
{"name": "Electrify America", "desc": "EV charging network", "cat": "Transportation", "auth": "apiKey"},
|
|
156
|
+
{"name": "PlugShare", "desc": "EV charging map", "cat": "Transportation", "auth": "apiKey"},
|
|
157
|
+
{"name": "Open Charge Map", "desc": "EV charging locations", "cat": "Transportation", "auth": "None"},
|
|
158
|
+
|
|
159
|
+
# === LEGAL TECH ===
|
|
160
|
+
{"name": "Clio", "desc": "Legal practice management", "cat": "Documents", "auth": "OAuth"},
|
|
161
|
+
{"name": "PracticePanther", "desc": "Legal software", "cat": "Documents", "auth": "apiKey"},
|
|
162
|
+
{"name": "MyCase", "desc": "Legal case management", "cat": "Documents", "auth": "apiKey"},
|
|
163
|
+
{"name": "CosmoLex", "desc": "Legal practice software", "cat": "Documents", "auth": "apiKey"},
|
|
164
|
+
{"name": "Smokeball", "desc": "Legal software", "cat": "Documents", "auth": "apiKey"},
|
|
165
|
+
{"name": "Rocket Matter", "desc": "Legal software", "cat": "Documents", "auth": "apiKey"},
|
|
166
|
+
{"name": "LawPay", "desc": "Legal payment processing", "cat": "Finance", "auth": "apiKey"},
|
|
167
|
+
{"name": "NetDocuments", "desc": "Legal document management", "cat": "Documents", "auth": "apiKey"},
|
|
168
|
+
{"name": "iManage", "desc": "Document management", "cat": "Documents", "auth": "apiKey"},
|
|
169
|
+
{"name": "Relativity", "desc": "eDiscovery platform", "cat": "Documents", "auth": "apiKey"},
|
|
170
|
+
{"name": "Logikcull", "desc": "eDiscovery software", "cat": "Documents", "auth": "apiKey"},
|
|
171
|
+
{"name": "DISCO", "desc": "Legal technology", "cat": "Documents", "auth": "apiKey"},
|
|
172
|
+
{"name": "Exterro", "desc": "Legal GRC software", "cat": "Documents", "auth": "apiKey"},
|
|
173
|
+
{"name": "Lex Machina", "desc": "Legal analytics", "cat": "Documents", "auth": "apiKey"},
|
|
174
|
+
{"name": "Ravel Law", "desc": "Legal research", "cat": "Documents", "auth": "apiKey"},
|
|
175
|
+
{"name": "Fastcase", "desc": "Legal research", "cat": "Documents", "auth": "apiKey"},
|
|
176
|
+
{"name": "Casetext", "desc": "AI legal research", "cat": "Documents", "auth": "apiKey"},
|
|
177
|
+
{"name": "LegalMation", "desc": "Litigation automation", "cat": "Documents", "auth": "apiKey"},
|
|
178
|
+
{"name": "Axiom", "desc": "Legal services", "cat": "Documents", "auth": "apiKey"},
|
|
179
|
+
|
|
180
|
+
# === INSURANCE ===
|
|
181
|
+
{"name": "Guidewire", "desc": "Insurance platform", "cat": "Finance", "auth": "apiKey"},
|
|
182
|
+
{"name": "Duck Creek", "desc": "Insurance software", "cat": "Finance", "auth": "apiKey"},
|
|
183
|
+
{"name": "Majesco", "desc": "Insurance technology", "cat": "Finance", "auth": "apiKey"},
|
|
184
|
+
{"name": "One Inc", "desc": "Insurance payments", "cat": "Finance", "auth": "apiKey"},
|
|
185
|
+
{"name": "Vertafore", "desc": "Insurance software", "cat": "Finance", "auth": "apiKey"},
|
|
186
|
+
{"name": "Applied Systems", "desc": "Insurance technology", "cat": "Finance", "auth": "apiKey"},
|
|
187
|
+
{"name": "EZLynx", "desc": "Insurance agency", "cat": "Finance", "auth": "apiKey"},
|
|
188
|
+
{"name": "HawkSoft", "desc": "Insurance agency software", "cat": "Finance", "auth": "apiKey"},
|
|
189
|
+
{"name": "Lemonade", "desc": "Digital insurance", "cat": "Finance", "auth": "apiKey"},
|
|
190
|
+
{"name": "Hippo", "desc": "Home insurance", "cat": "Finance", "auth": "apiKey"},
|
|
191
|
+
{"name": "Root Insurance", "desc": "Car insurance", "cat": "Finance", "auth": "apiKey"},
|
|
192
|
+
{"name": "Metromile", "desc": "Pay-per-mile insurance", "cat": "Finance", "auth": "apiKey"},
|
|
193
|
+
{"name": "Branch", "desc": "Home and auto insurance", "cat": "Finance", "auth": "apiKey"},
|
|
194
|
+
{"name": "Clearcover", "desc": "Car insurance", "cat": "Finance", "auth": "apiKey"},
|
|
195
|
+
{"name": "Next Insurance", "desc": "Small business insurance", "cat": "Finance", "auth": "apiKey"},
|
|
196
|
+
{"name": "Coalition", "desc": "Cyber insurance", "cat": "Finance", "auth": "apiKey"},
|
|
197
|
+
{"name": "At-Bay", "desc": "Cyber insurance", "cat": "Finance", "auth": "apiKey"},
|
|
198
|
+
{"name": "Corvus Insurance", "desc": "Commercial insurance", "cat": "Finance", "auth": "apiKey"},
|
|
199
|
+
{"name": "Bold Penguin", "desc": "Commercial insurance", "cat": "Finance", "auth": "apiKey"},
|
|
200
|
+
{"name": "CoverWallet", "desc": "Business insurance", "cat": "Finance", "auth": "apiKey"},
|
|
201
|
+
{"name": "Embroker", "desc": "Business insurance", "cat": "Finance", "auth": "apiKey"},
|
|
202
|
+
{"name": "Vouch", "desc": "Startup insurance", "cat": "Finance", "auth": "apiKey"},
|
|
203
|
+
{"name": "Pie Insurance", "desc": "Workers comp", "cat": "Finance", "auth": "apiKey"},
|
|
204
|
+
|
|
205
|
+
# === TELECOM ===
|
|
206
|
+
{"name": "Twilio Programmable Voice", "desc": "Voice APIs", "cat": "Communication", "auth": "apiKey"},
|
|
207
|
+
{"name": "Vonage", "desc": "Communications APIs", "cat": "Communication", "auth": "apiKey"},
|
|
208
|
+
{"name": "Plivo", "desc": "Cloud communications", "cat": "Communication", "auth": "apiKey"},
|
|
209
|
+
{"name": "Bandwidth", "desc": "Communications platform", "cat": "Communication", "auth": "apiKey"},
|
|
210
|
+
{"name": "Telnyx", "desc": "Telecom platform", "cat": "Communication", "auth": "apiKey"},
|
|
211
|
+
{"name": "MessageBird", "desc": "Omnichannel platform", "cat": "Communication", "auth": "apiKey"},
|
|
212
|
+
{"name": "Infobip", "desc": "Communications platform", "cat": "Communication", "auth": "apiKey"},
|
|
213
|
+
{"name": "Sinch", "desc": "Cloud communications", "cat": "Communication", "auth": "apiKey"},
|
|
214
|
+
{"name": "CM.com", "desc": "Conversational commerce", "cat": "Communication", "auth": "apiKey"},
|
|
215
|
+
{"name": "Kaleyra", "desc": "Cloud communications", "cat": "Communication", "auth": "apiKey"},
|
|
216
|
+
{"name": "RingCentral", "desc": "Business communications", "cat": "Communication", "auth": "OAuth"},
|
|
217
|
+
{"name": "Zoom Phone", "desc": "Cloud phone system", "cat": "Communication", "auth": "OAuth"},
|
|
218
|
+
{"name": "Dialpad", "desc": "AI communications", "cat": "Communication", "auth": "OAuth"},
|
|
219
|
+
{"name": "Aircall", "desc": "Cloud call center", "cat": "Communication", "auth": "apiKey"},
|
|
220
|
+
{"name": "Talkdesk", "desc": "Contact center", "cat": "Communication", "auth": "apiKey"},
|
|
221
|
+
{"name": "Five9", "desc": "Contact center cloud", "cat": "Communication", "auth": "apiKey"},
|
|
222
|
+
{"name": "Genesys Cloud", "desc": "Customer experience", "cat": "Communication", "auth": "apiKey"},
|
|
223
|
+
{"name": "NICE inContact", "desc": "Contact center", "cat": "Communication", "auth": "apiKey"},
|
|
224
|
+
{"name": "8x8", "desc": "Cloud communications", "cat": "Communication", "auth": "apiKey"},
|
|
225
|
+
{"name": "GoTo Connect", "desc": "Business phone", "cat": "Communication", "auth": "apiKey"},
|
|
226
|
+
{"name": "Ooma", "desc": "Business phone", "cat": "Communication", "auth": "apiKey"},
|
|
227
|
+
{"name": "Grasshopper", "desc": "Virtual phone", "cat": "Communication", "auth": "apiKey"},
|
|
228
|
+
{"name": "OpenPhone", "desc": "Business phone", "cat": "Communication", "auth": "apiKey"},
|
|
229
|
+
{"name": "JustCall", "desc": "Cloud phone system", "cat": "Communication", "auth": "apiKey"},
|
|
230
|
+
{"name": "CloudTalk", "desc": "Call center software", "cat": "Communication", "auth": "apiKey"},
|
|
231
|
+
{"name": "Nextiva", "desc": "Business phone", "cat": "Communication", "auth": "apiKey"},
|
|
232
|
+
|
|
233
|
+
# === SPORTS & FITNESS ===
|
|
234
|
+
{"name": "ESPN", "desc": "Sports data and news", "cat": "Sports", "auth": "apiKey"},
|
|
235
|
+
{"name": "Sportradar", "desc": "Sports data provider", "cat": "Sports", "auth": "apiKey"},
|
|
236
|
+
{"name": "Stats Perform", "desc": "Sports data and AI", "cat": "Sports", "auth": "apiKey"},
|
|
237
|
+
{"name": "Genius Sports", "desc": "Sports data platform", "cat": "Sports", "auth": "apiKey"},
|
|
238
|
+
{"name": "SportsData.io", "desc": "Real-time sports data", "cat": "Sports", "auth": "apiKey"},
|
|
239
|
+
{"name": "API-Football", "desc": "Football data API", "cat": "Sports", "auth": "apiKey"},
|
|
240
|
+
{"name": "TheSportsDB", "desc": "Sports database", "cat": "Sports", "auth": "apiKey"},
|
|
241
|
+
{"name": "Balldontlie", "desc": "NBA stats API", "cat": "Sports", "auth": "None"},
|
|
242
|
+
{"name": "MLB Stats", "desc": "Baseball statistics", "cat": "Sports", "auth": "None"},
|
|
243
|
+
{"name": "NHL API", "desc": "Hockey statistics", "cat": "Sports", "auth": "None"},
|
|
244
|
+
{"name": "Formula 1", "desc": "F1 race data", "cat": "Sports", "auth": "None"},
|
|
245
|
+
{"name": "Ergast F1", "desc": "F1 historical data", "cat": "Sports", "auth": "None"},
|
|
246
|
+
{"name": "Football-Data.org", "desc": "Soccer data", "cat": "Sports", "auth": "apiKey"},
|
|
247
|
+
{"name": "Transfermarkt", "desc": "Football transfer data", "cat": "Sports", "auth": "apiKey"},
|
|
248
|
+
{"name": "WhoScored", "desc": "Football ratings", "cat": "Sports", "auth": "apiKey"},
|
|
249
|
+
{"name": "SofaScore", "desc": "Live scores", "cat": "Sports", "auth": "apiKey"},
|
|
250
|
+
{"name": "FlashScore", "desc": "Live scores", "cat": "Sports", "auth": "apiKey"},
|
|
251
|
+
{"name": "Odds API", "desc": "Sports betting odds", "cat": "Sports", "auth": "apiKey"},
|
|
252
|
+
{"name": "BetFair", "desc": "Betting exchange", "cat": "Sports", "auth": "apiKey"},
|
|
253
|
+
{"name": "DraftKings", "desc": "Fantasy sports", "cat": "Sports", "auth": "apiKey"},
|
|
254
|
+
{"name": "FanDuel", "desc": "Fantasy sports", "cat": "Sports", "auth": "apiKey"},
|
|
255
|
+
{"name": "Yahoo Fantasy", "desc": "Fantasy sports", "cat": "Sports", "auth": "OAuth"},
|
|
256
|
+
{"name": "Mindbody", "desc": "Fitness business software", "cat": "Health", "auth": "OAuth"},
|
|
257
|
+
{"name": "ClassPass", "desc": "Fitness membership", "cat": "Health", "auth": "apiKey"},
|
|
258
|
+
{"name": "ABC Fitness", "desc": "Gym management", "cat": "Health", "auth": "apiKey"},
|
|
259
|
+
{"name": "Glofox", "desc": "Gym software", "cat": "Health", "auth": "apiKey"},
|
|
260
|
+
{"name": "PushPress", "desc": "Gym management", "cat": "Health", "auth": "apiKey"},
|
|
261
|
+
{"name": "Wodify", "desc": "CrossFit software", "cat": "Health", "auth": "apiKey"},
|
|
262
|
+
{"name": "Zen Planner", "desc": "Fitness software", "cat": "Health", "auth": "apiKey"},
|
|
263
|
+
{"name": "TeamUp", "desc": "Class scheduling", "cat": "Health", "auth": "apiKey"},
|
|
264
|
+
{"name": "Pike13", "desc": "Client management", "cat": "Health", "auth": "apiKey"},
|
|
265
|
+
|
|
266
|
+
# === ENERGY & UTILITIES ===
|
|
267
|
+
{"name": "Utility API", "desc": "Utility data access", "cat": "Science", "auth": "apiKey"},
|
|
268
|
+
{"name": "Arcadia", "desc": "Energy data platform", "cat": "Science", "auth": "apiKey"},
|
|
269
|
+
{"name": "Uplight", "desc": "Energy experience", "cat": "Science", "auth": "apiKey"},
|
|
270
|
+
{"name": "Sense", "desc": "Home energy monitor", "cat": "IoT", "auth": "OAuth"},
|
|
271
|
+
{"name": "Emporia Energy", "desc": "Energy monitoring", "cat": "IoT", "auth": "apiKey"},
|
|
272
|
+
{"name": "Enphase", "desc": "Solar energy management", "cat": "Science", "auth": "OAuth"},
|
|
273
|
+
{"name": "SolarEdge", "desc": "Solar monitoring", "cat": "Science", "auth": "apiKey"},
|
|
274
|
+
{"name": "SunPower", "desc": "Solar energy", "cat": "Science", "auth": "apiKey"},
|
|
275
|
+
{"name": "Sunrun", "desc": "Residential solar", "cat": "Science", "auth": "apiKey"},
|
|
276
|
+
{"name": "Vivint Solar", "desc": "Home solar", "cat": "Science", "auth": "apiKey"},
|
|
277
|
+
{"name": "Aurora Solar", "desc": "Solar design software", "cat": "Science", "auth": "apiKey"},
|
|
278
|
+
{"name": "Helioscope", "desc": "PV system design", "cat": "Science", "auth": "apiKey"},
|
|
279
|
+
{"name": "PVsyst", "desc": "PV system simulation", "cat": "Science", "auth": "apiKey"},
|
|
280
|
+
{"name": "OpenEI", "desc": "Energy information", "cat": "Science", "auth": "None"},
|
|
281
|
+
{"name": "NREL", "desc": "Renewable energy data", "cat": "Science", "auth": "apiKey"},
|
|
282
|
+
{"name": "EIA", "desc": "Energy information", "cat": "Government", "auth": "apiKey"},
|
|
283
|
+
{"name": "Genability", "desc": "Energy rates API", "cat": "Science", "auth": "apiKey"},
|
|
284
|
+
{"name": "WattTime", "desc": "Grid carbon data", "cat": "Science", "auth": "apiKey"},
|
|
285
|
+
{"name": "Tomorrow.io Carbon", "desc": "Carbon intensity", "cat": "Science", "auth": "apiKey"},
|
|
286
|
+
{"name": "ElectricityMap", "desc": "Real-time CO2 data", "cat": "Science", "auth": "apiKey"},
|
|
287
|
+
|
|
288
|
+
# === LOGISTICS & DELIVERY ===
|
|
289
|
+
{"name": "FedEx", "desc": "Shipping and tracking", "cat": "Logistics", "auth": "apiKey"},
|
|
290
|
+
{"name": "UPS", "desc": "Shipping services", "cat": "Logistics", "auth": "apiKey"},
|
|
291
|
+
{"name": "USPS", "desc": "Postal services", "cat": "Logistics", "auth": "apiKey"},
|
|
292
|
+
{"name": "DHL", "desc": "Express shipping", "cat": "Logistics", "auth": "apiKey"},
|
|
293
|
+
{"name": "Stamps.com", "desc": "Online postage", "cat": "Logistics", "auth": "apiKey"},
|
|
294
|
+
{"name": "Endicia", "desc": "Shipping software", "cat": "Logistics", "auth": "apiKey"},
|
|
295
|
+
{"name": "Pitney Bowes", "desc": "Shipping technology", "cat": "Logistics", "auth": "apiKey"},
|
|
296
|
+
{"name": "ParcelLab", "desc": "Operations experience", "cat": "Logistics", "auth": "apiKey"},
|
|
297
|
+
{"name": "Narvar", "desc": "Post-purchase experience", "cat": "Logistics", "auth": "apiKey"},
|
|
298
|
+
{"name": "Returnly", "desc": "Returns management", "cat": "Logistics", "auth": "apiKey"},
|
|
299
|
+
{"name": "Loop Returns", "desc": "Returns software", "cat": "Logistics", "auth": "apiKey"},
|
|
300
|
+
{"name": "Happy Returns", "desc": "Return solutions", "cat": "Logistics", "auth": "apiKey"},
|
|
301
|
+
{"name": "DoorDash Drive", "desc": "Last mile delivery", "cat": "Logistics", "auth": "apiKey"},
|
|
302
|
+
{"name": "UberEats", "desc": "Food delivery", "cat": "Food", "auth": "OAuth"},
|
|
303
|
+
{"name": "Grubhub", "desc": "Food delivery", "cat": "Food", "auth": "apiKey"},
|
|
304
|
+
{"name": "Postmates", "desc": "Local delivery", "cat": "Logistics", "auth": "apiKey"},
|
|
305
|
+
{"name": "Instacart", "desc": "Grocery delivery", "cat": "Food", "auth": "apiKey"},
|
|
306
|
+
{"name": "Shipt", "desc": "Same-day delivery", "cat": "Logistics", "auth": "apiKey"},
|
|
307
|
+
{"name": "Gopuff", "desc": "Instant delivery", "cat": "Logistics", "auth": "apiKey"},
|
|
308
|
+
{"name": "Deliverr", "desc": "Fulfillment platform", "cat": "Logistics", "auth": "apiKey"},
|
|
309
|
+
{"name": "Flexport", "desc": "Freight forwarding", "cat": "Logistics", "auth": "apiKey"},
|
|
310
|
+
{"name": "Freightos", "desc": "Freight booking", "cat": "Logistics", "auth": "apiKey"},
|
|
311
|
+
{"name": "project44", "desc": "Supply chain visibility", "cat": "Logistics", "auth": "apiKey"},
|
|
312
|
+
{"name": "FourKites", "desc": "Real-time visibility", "cat": "Logistics", "auth": "apiKey"},
|
|
313
|
+
{"name": "Descartes", "desc": "Logistics technology", "cat": "Logistics", "auth": "apiKey"},
|
|
314
|
+
{"name": "Transfix", "desc": "Digital freight", "cat": "Logistics", "auth": "apiKey"},
|
|
315
|
+
{"name": "Convoy", "desc": "Digital freight network", "cat": "Logistics", "auth": "apiKey"},
|
|
316
|
+
{"name": "Uber Freight", "desc": "Trucking marketplace", "cat": "Logistics", "auth": "apiKey"},
|
|
317
|
+
{"name": "Loadsmart", "desc": "Freight shipping", "cat": "Logistics", "auth": "apiKey"},
|
|
318
|
+
{"name": "Samsara", "desc": "Fleet management", "cat": "Logistics", "auth": "apiKey"},
|
|
319
|
+
{"name": "KeepTruckin", "desc": "Fleet management", "cat": "Logistics", "auth": "apiKey"},
|
|
320
|
+
{"name": "Geotab", "desc": "Fleet telematics", "cat": "Logistics", "auth": "apiKey"},
|
|
321
|
+
{"name": "Verizon Connect", "desc": "Fleet management", "cat": "Logistics", "auth": "apiKey"},
|
|
322
|
+
{"name": "Locus", "desc": "Route optimization", "cat": "Logistics", "auth": "apiKey"},
|
|
323
|
+
{"name": "Routific", "desc": "Route optimization", "cat": "Logistics", "auth": "apiKey"},
|
|
324
|
+
{"name": "OptimoRoute", "desc": "Route planning", "cat": "Logistics", "auth": "apiKey"},
|
|
325
|
+
{"name": "Onfleet", "desc": "Last mile delivery", "cat": "Logistics", "auth": "apiKey"},
|
|
326
|
+
{"name": "Bringg", "desc": "Delivery logistics", "cat": "Logistics", "auth": "apiKey"},
|
|
327
|
+
|
|
328
|
+
# === AVIATION ===
|
|
329
|
+
{"name": "FlightAware", "desc": "Flight tracking", "cat": "Transportation", "auth": "apiKey"},
|
|
330
|
+
{"name": "FlightRadar24", "desc": "Live flight tracking", "cat": "Transportation", "auth": "apiKey"},
|
|
331
|
+
{"name": "FlightStats", "desc": "Flight data", "cat": "Transportation", "auth": "apiKey"},
|
|
332
|
+
{"name": "OpenSky Network", "desc": "Flight tracking", "cat": "Transportation", "auth": "None"},
|
|
333
|
+
{"name": "AeroDataBox", "desc": "Aviation data", "cat": "Transportation", "auth": "apiKey"},
|
|
334
|
+
{"name": "Aviation Edge", "desc": "Flight data API", "cat": "Transportation", "auth": "apiKey"},
|
|
335
|
+
{"name": "AirLabs", "desc": "Aviation data", "cat": "Transportation", "auth": "apiKey"},
|
|
336
|
+
{"name": "Duffel", "desc": "Flight booking API", "cat": "Travel", "auth": "apiKey"},
|
|
337
|
+
{"name": "Travelpayouts", "desc": "Travel affiliate", "cat": "Travel", "auth": "apiKey"},
|
|
338
|
+
{"name": "Google Flights", "desc": "Flight search", "cat": "Travel", "auth": "apiKey"},
|
|
339
|
+
{"name": "Hopper", "desc": "Travel booking", "cat": "Travel", "auth": "apiKey"},
|
|
340
|
+
{"name": "KAYAK", "desc": "Travel search", "cat": "Travel", "auth": "apiKey"},
|
|
341
|
+
{"name": "Momondo", "desc": "Travel search", "cat": "Travel", "auth": "apiKey"},
|
|
342
|
+
{"name": "Priceline", "desc": "Travel booking", "cat": "Travel", "auth": "apiKey"},
|
|
343
|
+
{"name": "Expedia", "desc": "Online travel", "cat": "Travel", "auth": "apiKey"},
|
|
344
|
+
{"name": "Booking.com", "desc": "Hotel booking", "cat": "Travel", "auth": "apiKey"},
|
|
345
|
+
{"name": "Hotels.com", "desc": "Hotel booking", "cat": "Travel", "auth": "apiKey"},
|
|
346
|
+
{"name": "Vrbo", "desc": "Vacation rentals", "cat": "Travel", "auth": "apiKey"},
|
|
347
|
+
{"name": "Airbnb", "desc": "Home sharing", "cat": "Travel", "auth": "OAuth"},
|
|
348
|
+
{"name": "Sonder", "desc": "Hospitality", "cat": "Travel", "auth": "apiKey"},
|
|
349
|
+
{"name": "Marriott", "desc": "Hotel chain", "cat": "Travel", "auth": "apiKey"},
|
|
350
|
+
{"name": "Hilton", "desc": "Hotel chain", "cat": "Travel", "auth": "apiKey"},
|
|
351
|
+
{"name": "IHG", "desc": "Hotel chain", "cat": "Travel", "auth": "apiKey"},
|
|
352
|
+
{"name": "Accor", "desc": "Hotel group", "cat": "Travel", "auth": "apiKey"},
|
|
353
|
+
{"name": "Hyatt", "desc": "Hotel chain", "cat": "Travel", "auth": "apiKey"},
|
|
354
|
+
{"name": "Wyndham", "desc": "Hotel chain", "cat": "Travel", "auth": "apiKey"},
|
|
355
|
+
{"name": "Choice Hotels", "desc": "Hotel chain", "cat": "Travel", "auth": "apiKey"},
|
|
356
|
+
{"name": "Best Western", "desc": "Hotel chain", "cat": "Travel", "auth": "apiKey"},
|
|
357
|
+
|
|
358
|
+
# === SCIENCE & RESEARCH ===
|
|
359
|
+
{"name": "Semantic Scholar", "desc": "AI research database", "cat": "Science", "auth": "apiKey"},
|
|
360
|
+
{"name": "arXiv", "desc": "Research preprints", "cat": "Science", "auth": "None"},
|
|
361
|
+
{"name": "CORE", "desc": "Research papers", "cat": "Science", "auth": "apiKey"},
|
|
362
|
+
{"name": "Crossref", "desc": "Scholarly metadata", "cat": "Science", "auth": "None"},
|
|
363
|
+
{"name": "DOI Foundation", "desc": "Digital object identifiers", "cat": "Science", "auth": "None"},
|
|
364
|
+
{"name": "ORCID", "desc": "Researcher identifiers", "cat": "Science", "auth": "apiKey"},
|
|
365
|
+
{"name": "ResearchGate", "desc": "Research network", "cat": "Science", "auth": "apiKey"},
|
|
366
|
+
{"name": "Academia.edu", "desc": "Academic platform", "cat": "Science", "auth": "apiKey"},
|
|
367
|
+
{"name": "Mendeley", "desc": "Reference manager", "cat": "Science", "auth": "OAuth"},
|
|
368
|
+
{"name": "Zotero", "desc": "Research assistant", "cat": "Science", "auth": "apiKey"},
|
|
369
|
+
{"name": "EndNote", "desc": "Reference management", "cat": "Science", "auth": "apiKey"},
|
|
370
|
+
{"name": "Clarivate", "desc": "Research analytics", "cat": "Science", "auth": "apiKey"},
|
|
371
|
+
{"name": "Elsevier", "desc": "Scientific publishing", "cat": "Science", "auth": "apiKey"},
|
|
372
|
+
{"name": "Springer Nature", "desc": "Scientific publishing", "cat": "Science", "auth": "apiKey"},
|
|
373
|
+
{"name": "Wiley", "desc": "Academic publishing", "cat": "Science", "auth": "apiKey"},
|
|
374
|
+
{"name": "Taylor & Francis", "desc": "Academic publisher", "cat": "Science", "auth": "apiKey"},
|
|
375
|
+
{"name": "SAGE Publications", "desc": "Academic publishing", "cat": "Science", "auth": "apiKey"},
|
|
376
|
+
{"name": "IEEE Xplore", "desc": "Technical literature", "cat": "Science", "auth": "apiKey"},
|
|
377
|
+
{"name": "ACM Digital Library", "desc": "Computing literature", "cat": "Science", "auth": "apiKey"},
|
|
378
|
+
{"name": "JSTOR", "desc": "Academic journals", "cat": "Science", "auth": "apiKey"},
|
|
379
|
+
{"name": "ProQuest", "desc": "Research content", "cat": "Science", "auth": "apiKey"},
|
|
380
|
+
{"name": "EBSCO", "desc": "Research databases", "cat": "Science", "auth": "apiKey"},
|
|
381
|
+
{"name": "Scopus", "desc": "Abstract database", "cat": "Science", "auth": "apiKey"},
|
|
382
|
+
{"name": "Web of Science", "desc": "Citation index", "cat": "Science", "auth": "apiKey"},
|
|
383
|
+
{"name": "Dimensions", "desc": "Research database", "cat": "Science", "auth": "apiKey"},
|
|
384
|
+
{"name": "OpenAlex", "desc": "Research data", "cat": "Science", "auth": "None"},
|
|
385
|
+
{"name": "GBIF", "desc": "Biodiversity data", "cat": "Science", "auth": "None"},
|
|
386
|
+
{"name": "NCBI", "desc": "Biotechnology info", "cat": "Science", "auth": "apiKey"},
|
|
387
|
+
{"name": "UniProt", "desc": "Protein database", "cat": "Science", "auth": "None"},
|
|
388
|
+
{"name": "Ensembl", "desc": "Genome database", "cat": "Science", "auth": "None"},
|
|
389
|
+
{"name": "STRING", "desc": "Protein interaction", "cat": "Science", "auth": "None"},
|
|
390
|
+
{"name": "ChEMBL", "desc": "Chemical database", "cat": "Science", "auth": "None"},
|
|
391
|
+
{"name": "DrugBank", "desc": "Drug database", "cat": "Health", "auth": "apiKey"},
|
|
392
|
+
{"name": "RxNorm", "desc": "Drug nomenclature", "cat": "Health", "auth": "None"},
|
|
393
|
+
{"name": "SNOMED CT", "desc": "Medical terminology", "cat": "Health", "auth": "apiKey"},
|
|
394
|
+
{"name": "LOINC", "desc": "Lab codes", "cat": "Health", "auth": "None"},
|
|
395
|
+
{"name": "FHIR", "desc": "Healthcare interoperability", "cat": "Health", "auth": "apiKey"},
|
|
396
|
+
{"name": "HL7", "desc": "Health data standards", "cat": "Health", "auth": "apiKey"},
|
|
397
|
+
|
|
398
|
+
# === TESTING & QA ===
|
|
399
|
+
{"name": "BrowserStack", "desc": "Cross-browser testing", "cat": "Development", "auth": "apiKey"},
|
|
400
|
+
{"name": "Sauce Labs", "desc": "Continuous testing", "cat": "Development", "auth": "apiKey"},
|
|
401
|
+
{"name": "LambdaTest", "desc": "Browser testing", "cat": "Development", "auth": "apiKey"},
|
|
402
|
+
{"name": "Testim", "desc": "AI-powered testing", "cat": "Development", "auth": "apiKey"},
|
|
403
|
+
{"name": "Mabl", "desc": "Intelligent testing", "cat": "Development", "auth": "apiKey"},
|
|
404
|
+
{"name": "Cypress Cloud", "desc": "E2E test analytics", "cat": "Development", "auth": "apiKey"},
|
|
405
|
+
{"name": "Percy", "desc": "Visual testing", "cat": "Development", "auth": "apiKey"},
|
|
406
|
+
{"name": "Chromatic", "desc": "Visual testing", "cat": "Development", "auth": "apiKey"},
|
|
407
|
+
{"name": "Applitools", "desc": "Visual AI testing", "cat": "Development", "auth": "apiKey"},
|
|
408
|
+
{"name": "LoadRunner", "desc": "Performance testing", "cat": "Development", "auth": "apiKey"},
|
|
409
|
+
{"name": "Gatling", "desc": "Load testing", "cat": "Development", "auth": "apiKey"},
|
|
410
|
+
{"name": "k6 Cloud", "desc": "Performance testing", "cat": "Development", "auth": "apiKey"},
|
|
411
|
+
{"name": "BlazeMeter", "desc": "Continuous testing", "cat": "Development", "auth": "apiKey"},
|
|
412
|
+
{"name": "Flood.io", "desc": "Load testing", "cat": "Development", "auth": "apiKey"},
|
|
413
|
+
{"name": "Artillery", "desc": "Load testing", "cat": "Development", "auth": "apiKey"},
|
|
414
|
+
{"name": "Locust", "desc": "Load testing tool", "cat": "Development", "auth": "None"},
|
|
415
|
+
{"name": "TestRail", "desc": "Test management", "cat": "Development", "auth": "apiKey"},
|
|
416
|
+
{"name": "Zephyr", "desc": "Test management", "cat": "Development", "auth": "apiKey"},
|
|
417
|
+
{"name": "PractiTest", "desc": "Test management", "cat": "Development", "auth": "apiKey"},
|
|
418
|
+
{"name": "qTest", "desc": "Test management", "cat": "Development", "auth": "apiKey"},
|
|
419
|
+
{"name": "TestComplete", "desc": "UI testing", "cat": "Development", "auth": "apiKey"},
|
|
420
|
+
{"name": "Ranorex", "desc": "UI testing", "cat": "Development", "auth": "apiKey"},
|
|
421
|
+
{"name": "Katalon", "desc": "Test automation", "cat": "Development", "auth": "apiKey"},
|
|
422
|
+
{"name": "Postman", "desc": "API testing", "cat": "Development", "auth": "apiKey"},
|
|
423
|
+
{"name": "Insomnia", "desc": "API client", "cat": "Development", "auth": "None"},
|
|
424
|
+
{"name": "Hoppscotch", "desc": "API development", "cat": "Development", "auth": "None"},
|
|
425
|
+
{"name": "RapidAPI", "desc": "API marketplace", "cat": "Development", "auth": "apiKey"},
|
|
426
|
+
{"name": "Stoplight", "desc": "API design", "cat": "Development", "auth": "apiKey"},
|
|
427
|
+
{"name": "SwaggerHub", "desc": "API design", "cat": "Development", "auth": "apiKey"},
|
|
428
|
+
{"name": "ReadMe", "desc": "API documentation", "cat": "Development", "auth": "apiKey"},
|
|
429
|
+
{"name": "Mintlify", "desc": "Documentation platform", "cat": "Development", "auth": "apiKey"},
|
|
430
|
+
{"name": "GitBook", "desc": "Documentation platform", "cat": "Development", "auth": "apiKey"},
|
|
431
|
+
{"name": "Docusaurus", "desc": "Documentation tool", "cat": "Development", "auth": "None"},
|
|
432
|
+
{"name": "VuePress", "desc": "Documentation generator", "cat": "Development", "auth": "None"},
|
|
433
|
+
{"name": "Nextra", "desc": "Documentation framework", "cat": "Development", "auth": "None"},
|
|
434
|
+
{"name": "Starlight", "desc": "Documentation framework", "cat": "Development", "auth": "None"},
|
|
435
|
+
|
|
436
|
+
# === VERSION CONTROL & CI/CD ===
|
|
437
|
+
{"name": "GitHub Actions", "desc": "CI/CD automation", "cat": "Development", "auth": "apiKey"},
|
|
438
|
+
{"name": "GitLab CI", "desc": "DevOps platform", "cat": "Development", "auth": "apiKey"},
|
|
439
|
+
{"name": "Bitbucket Pipelines", "desc": "CI/CD for Bitbucket", "cat": "Development", "auth": "apiKey"},
|
|
440
|
+
{"name": "CircleCI", "desc": "Continuous integration", "cat": "Development", "auth": "apiKey"},
|
|
441
|
+
{"name": "Travis CI", "desc": "CI/CD service", "cat": "Development", "auth": "apiKey"},
|
|
442
|
+
{"name": "Jenkins", "desc": "Automation server", "cat": "Development", "auth": "apiKey"},
|
|
443
|
+
{"name": "TeamCity", "desc": "Build management", "cat": "Development", "auth": "apiKey"},
|
|
444
|
+
{"name": "Bamboo", "desc": "CI/CD server", "cat": "Development", "auth": "apiKey"},
|
|
445
|
+
{"name": "Azure DevOps", "desc": "Developer services", "cat": "Development", "auth": "OAuth"},
|
|
446
|
+
{"name": "AWS CodePipeline", "desc": "CI/CD service", "cat": "Development", "auth": "apiKey"},
|
|
447
|
+
{"name": "Google Cloud Build", "desc": "CI/CD platform", "cat": "Development", "auth": "OAuth"},
|
|
448
|
+
{"name": "Buildkite", "desc": "CI/CD platform", "cat": "Development", "auth": "apiKey"},
|
|
449
|
+
{"name": "Drone", "desc": "Container-native CI", "cat": "Development", "auth": "apiKey"},
|
|
450
|
+
{"name": "Semaphore", "desc": "Fast CI/CD", "cat": "Development", "auth": "apiKey"},
|
|
451
|
+
{"name": "Codefresh", "desc": "GitOps CI/CD", "cat": "Development", "auth": "apiKey"},
|
|
452
|
+
{"name": "Harness", "desc": "Software delivery", "cat": "Development", "auth": "apiKey"},
|
|
453
|
+
{"name": "Octopus Deploy", "desc": "Release automation", "cat": "Development", "auth": "apiKey"},
|
|
454
|
+
{"name": "Spinnaker", "desc": "Multi-cloud CD", "cat": "Development", "auth": "None"},
|
|
455
|
+
{"name": "ArgoCD", "desc": "GitOps for K8s", "cat": "Development", "auth": "None"},
|
|
456
|
+
{"name": "Flux", "desc": "GitOps toolkit", "cat": "Development", "auth": "None"},
|
|
457
|
+
{"name": "Tekton", "desc": "Cloud-native CI/CD", "cat": "Development", "auth": "None"},
|
|
458
|
+
{"name": "Gitea", "desc": "Self-hosted Git", "cat": "Development", "auth": "apiKey"},
|
|
459
|
+
{"name": "Gogs", "desc": "Self-hosted Git", "cat": "Development", "auth": "apiKey"},
|
|
460
|
+
{"name": "Phabricator", "desc": "Code collaboration", "cat": "Development", "auth": "apiKey"},
|
|
461
|
+
{"name": "Gerrit", "desc": "Code review", "cat": "Development", "auth": "apiKey"},
|
|
462
|
+
{"name": "Review Board", "desc": "Code review tool", "cat": "Development", "auth": "apiKey"},
|
|
463
|
+
{"name": "Codacy", "desc": "Code quality", "cat": "Development", "auth": "apiKey"},
|
|
464
|
+
{"name": "Code Climate", "desc": "Code quality", "cat": "Development", "auth": "apiKey"},
|
|
465
|
+
{"name": "Codecov", "desc": "Code coverage", "cat": "Development", "auth": "apiKey"},
|
|
466
|
+
{"name": "Coveralls", "desc": "Code coverage", "cat": "Development", "auth": "apiKey"},
|
|
467
|
+
{"name": "Deepsource", "desc": "Code analysis", "cat": "Development", "auth": "apiKey"},
|
|
468
|
+
{"name": "Sourcegraph", "desc": "Code search", "cat": "Development", "auth": "apiKey"},
|
|
469
|
+
{"name": "Tabnine", "desc": "AI code completion", "cat": "Machine Learning", "auth": "apiKey"},
|
|
470
|
+
{"name": "GitHub Copilot", "desc": "AI pair programming", "cat": "Machine Learning", "auth": "apiKey"},
|
|
471
|
+
{"name": "Amazon CodeWhisperer", "desc": "AI coding companion", "cat": "Machine Learning", "auth": "apiKey"},
|
|
472
|
+
{"name": "Codeium", "desc": "Free AI code completion", "cat": "Machine Learning", "auth": "apiKey"},
|
|
473
|
+
{"name": "Cursor", "desc": "AI code editor", "cat": "Machine Learning", "auth": "apiKey"},
|
|
474
|
+
{"name": "Replit", "desc": "Online IDE", "cat": "Development", "auth": "apiKey"},
|
|
475
|
+
{"name": "CodeSandbox", "desc": "Cloud dev environment", "cat": "Development", "auth": "apiKey"},
|
|
476
|
+
{"name": "StackBlitz", "desc": "Web IDE", "cat": "Development", "auth": "apiKey"},
|
|
477
|
+
{"name": "Gitpod", "desc": "Cloud development", "cat": "Development", "auth": "apiKey"},
|
|
478
|
+
{"name": "GitHub Codespaces", "desc": "Cloud dev environment", "cat": "Development", "auth": "apiKey"},
|
|
479
|
+
|
|
480
|
+
# === REGIONAL APIS - EUROPE ===
|
|
481
|
+
{"name": "Stripe Europe", "desc": "European payments", "cat": "Finance", "auth": "apiKey"},
|
|
482
|
+
{"name": "GoCardless", "desc": "European direct debit", "cat": "Finance", "auth": "apiKey"},
|
|
483
|
+
{"name": "Mollie", "desc": "European payments", "cat": "Finance", "auth": "apiKey"},
|
|
484
|
+
{"name": "Adyen Europe", "desc": "European payment platform", "cat": "Finance", "auth": "apiKey"},
|
|
485
|
+
{"name": "PayPal Europe", "desc": "European PayPal", "cat": "Finance", "auth": "OAuth"},
|
|
486
|
+
{"name": "Worldline", "desc": "European payments", "cat": "Finance", "auth": "apiKey"},
|
|
487
|
+
{"name": "Trustpilot", "desc": "Review platform", "cat": "Business", "auth": "apiKey"},
|
|
488
|
+
{"name": "Zalando", "desc": "European e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
489
|
+
{"name": "Otto", "desc": "German e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
490
|
+
{"name": "Cdiscount", "desc": "French e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
491
|
+
{"name": "Fnac", "desc": "French retailer", "cat": "Shopping", "auth": "apiKey"},
|
|
492
|
+
{"name": "MediaMarkt", "desc": "European electronics", "cat": "Shopping", "auth": "apiKey"},
|
|
493
|
+
{"name": "Bol.com", "desc": "Dutch e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
494
|
+
{"name": "Coolblue", "desc": "Dutch retailer", "cat": "Shopping", "auth": "apiKey"},
|
|
495
|
+
{"name": "N26", "desc": "German digital bank", "cat": "Finance", "auth": "apiKey"},
|
|
496
|
+
{"name": "Bunq", "desc": "Dutch digital bank", "cat": "Finance", "auth": "apiKey"},
|
|
497
|
+
{"name": "Monzo", "desc": "UK digital bank", "cat": "Finance", "auth": "OAuth"},
|
|
498
|
+
{"name": "Starling", "desc": "UK digital bank", "cat": "Finance", "auth": "OAuth"},
|
|
499
|
+
{"name": "Tide", "desc": "UK business banking", "cat": "Finance", "auth": "apiKey"},
|
|
500
|
+
{"name": "Qonto", "desc": "European business bank", "cat": "Finance", "auth": "apiKey"},
|
|
501
|
+
{"name": "Penta", "desc": "German business bank", "cat": "Finance", "auth": "apiKey"},
|
|
502
|
+
{"name": "Holvi", "desc": "European business bank", "cat": "Finance", "auth": "apiKey"},
|
|
503
|
+
{"name": "TransferGo", "desc": "European transfers", "cat": "Finance", "auth": "apiKey"},
|
|
504
|
+
{"name": "Azimo", "desc": "European remittances", "cat": "Finance", "auth": "apiKey"},
|
|
505
|
+
{"name": "Paysafe", "desc": "Payment platform", "cat": "Finance", "auth": "apiKey"},
|
|
506
|
+
{"name": "SumUp", "desc": "Card reader platform", "cat": "Finance", "auth": "apiKey"},
|
|
507
|
+
{"name": "Zettle", "desc": "PayPal card reader", "cat": "Finance", "auth": "OAuth"},
|
|
508
|
+
{"name": "Wolt", "desc": "European delivery", "cat": "Food", "auth": "apiKey"},
|
|
509
|
+
{"name": "Just Eat", "desc": "European food delivery", "cat": "Food", "auth": "apiKey"},
|
|
510
|
+
{"name": "Deliveroo", "desc": "Food delivery", "cat": "Food", "auth": "apiKey"},
|
|
511
|
+
{"name": "Glovo", "desc": "Spanish delivery", "cat": "Food", "auth": "apiKey"},
|
|
512
|
+
{"name": "Flink", "desc": "German grocery delivery", "cat": "Food", "auth": "apiKey"},
|
|
513
|
+
{"name": "Gorillas", "desc": "Instant grocery", "cat": "Food", "auth": "apiKey"},
|
|
514
|
+
{"name": "Getir", "desc": "Ultra-fast delivery", "cat": "Food", "auth": "apiKey"},
|
|
515
|
+
{"name": "Budbee", "desc": "Nordic delivery", "cat": "Logistics", "auth": "apiKey"},
|
|
516
|
+
{"name": "Instabox", "desc": "Smart parcel delivery", "cat": "Logistics", "auth": "apiKey"},
|
|
517
|
+
{"name": "DPD", "desc": "European parcel", "cat": "Logistics", "auth": "apiKey"},
|
|
518
|
+
{"name": "GLS", "desc": "European parcel", "cat": "Logistics", "auth": "apiKey"},
|
|
519
|
+
{"name": "Hermes", "desc": "European parcel", "cat": "Logistics", "auth": "apiKey"},
|
|
520
|
+
{"name": "DB Schenker", "desc": "European logistics", "cat": "Logistics", "auth": "apiKey"},
|
|
521
|
+
{"name": "Bring", "desc": "Nordic logistics", "cat": "Logistics", "auth": "apiKey"},
|
|
522
|
+
{"name": "Deutsche Bahn", "desc": "German rail", "cat": "Transportation", "auth": "apiKey"},
|
|
523
|
+
{"name": "SNCF", "desc": "French rail", "cat": "Transportation", "auth": "apiKey"},
|
|
524
|
+
{"name": "Trenitalia", "desc": "Italian rail", "cat": "Transportation", "auth": "apiKey"},
|
|
525
|
+
{"name": "NS", "desc": "Dutch rail", "cat": "Transportation", "auth": "apiKey"},
|
|
526
|
+
{"name": "Eurostar", "desc": "Cross-channel rail", "cat": "Transportation", "auth": "apiKey"},
|
|
527
|
+
{"name": "FlixBus", "desc": "European bus", "cat": "Transportation", "auth": "apiKey"},
|
|
528
|
+
{"name": "BlaBlaCar", "desc": "European carpooling", "cat": "Transportation", "auth": "OAuth"},
|
|
529
|
+
{"name": "Free Now", "desc": "European ride-hailing", "cat": "Transportation", "auth": "apiKey"},
|
|
530
|
+
{"name": "Bolt", "desc": "European mobility", "cat": "Transportation", "auth": "apiKey"},
|
|
531
|
+
{"name": "Cabify", "desc": "Spanish ride-hailing", "cat": "Transportation", "auth": "apiKey"},
|
|
532
|
+
{"name": "Kapten", "desc": "European ride-hailing", "cat": "Transportation", "auth": "apiKey"},
|
|
533
|
+
{"name": "VOI", "desc": "European e-scooters", "cat": "Transportation", "auth": "apiKey"},
|
|
534
|
+
{"name": "Tier", "desc": "European micro-mobility", "cat": "Transportation", "auth": "apiKey"},
|
|
535
|
+
{"name": "Lime Europe", "desc": "European scooters", "cat": "Transportation", "auth": "apiKey"},
|
|
536
|
+
{"name": "Bird Europe", "desc": "European scooters", "cat": "Transportation", "auth": "apiKey"},
|
|
537
|
+
{"name": "Zity", "desc": "European car sharing", "cat": "Transportation", "auth": "apiKey"},
|
|
538
|
+
{"name": "Share Now", "desc": "European car sharing", "cat": "Transportation", "auth": "apiKey"},
|
|
539
|
+
{"name": "Miles", "desc": "German car sharing", "cat": "Transportation", "auth": "apiKey"},
|
|
540
|
+
{"name": "SIXT Share", "desc": "European car sharing", "cat": "Transportation", "auth": "apiKey"},
|
|
541
|
+
|
|
542
|
+
# === REGIONAL APIS - APAC ===
|
|
543
|
+
{"name": "Alipay", "desc": "Chinese payments", "cat": "Finance", "auth": "apiKey"},
|
|
544
|
+
{"name": "WeChat Pay", "desc": "Chinese payments", "cat": "Finance", "auth": "apiKey"},
|
|
545
|
+
{"name": "UnionPay", "desc": "Chinese card network", "cat": "Finance", "auth": "apiKey"},
|
|
546
|
+
{"name": "PayPay", "desc": "Japanese payments", "cat": "Finance", "auth": "apiKey"},
|
|
547
|
+
{"name": "LINE Pay", "desc": "Japanese payments", "cat": "Finance", "auth": "apiKey"},
|
|
548
|
+
{"name": "Rakuten Pay", "desc": "Japanese payments", "cat": "Finance", "auth": "apiKey"},
|
|
549
|
+
{"name": "GrabPay", "desc": "Southeast Asian payments", "cat": "Finance", "auth": "apiKey"},
|
|
550
|
+
{"name": "GoPay", "desc": "Indonesian payments", "cat": "Finance", "auth": "apiKey"},
|
|
551
|
+
{"name": "OVO", "desc": "Indonesian payments", "cat": "Finance", "auth": "apiKey"},
|
|
552
|
+
{"name": "Dana", "desc": "Indonesian payments", "cat": "Finance", "auth": "apiKey"},
|
|
553
|
+
{"name": "Touch n Go", "desc": "Malaysian payments", "cat": "Finance", "auth": "apiKey"},
|
|
554
|
+
{"name": "GCash", "desc": "Philippine payments", "cat": "Finance", "auth": "apiKey"},
|
|
555
|
+
{"name": "Maya", "desc": "Philippine payments", "cat": "Finance", "auth": "apiKey"},
|
|
556
|
+
{"name": "True Money", "desc": "Thai payments", "cat": "Finance", "auth": "apiKey"},
|
|
557
|
+
{"name": "PromptPay", "desc": "Thai payments", "cat": "Finance", "auth": "apiKey"},
|
|
558
|
+
{"name": "MoMo", "desc": "Vietnamese payments", "cat": "Finance", "auth": "apiKey"},
|
|
559
|
+
{"name": "PhonePe", "desc": "Indian payments", "cat": "Finance", "auth": "apiKey"},
|
|
560
|
+
{"name": "Paytm", "desc": "Indian payments", "cat": "Finance", "auth": "apiKey"},
|
|
561
|
+
{"name": "Google Pay India", "desc": "Indian UPI", "cat": "Finance", "auth": "apiKey"},
|
|
562
|
+
{"name": "BharatPe", "desc": "Indian payments", "cat": "Finance", "auth": "apiKey"},
|
|
563
|
+
{"name": "Razorpay", "desc": "Indian payment gateway", "cat": "Finance", "auth": "apiKey"},
|
|
564
|
+
{"name": "PayU India", "desc": "Indian payments", "cat": "Finance", "auth": "apiKey"},
|
|
565
|
+
{"name": "Instamojo", "desc": "Indian payments", "cat": "Finance", "auth": "apiKey"},
|
|
566
|
+
{"name": "Cashfree", "desc": "Indian payments", "cat": "Finance", "auth": "apiKey"},
|
|
567
|
+
{"name": "Alibaba Cloud", "desc": "Chinese cloud", "cat": "Cloud", "auth": "apiKey"},
|
|
568
|
+
{"name": "Tencent Cloud", "desc": "Chinese cloud", "cat": "Cloud", "auth": "apiKey"},
|
|
569
|
+
{"name": "Huawei Cloud", "desc": "Chinese cloud", "cat": "Cloud", "auth": "apiKey"},
|
|
570
|
+
{"name": "NHN Cloud", "desc": "Korean cloud", "cat": "Cloud", "auth": "apiKey"},
|
|
571
|
+
{"name": "NTT Cloud", "desc": "Japanese cloud", "cat": "Cloud", "auth": "apiKey"},
|
|
572
|
+
{"name": "Alibaba AliExpress", "desc": "Chinese e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
573
|
+
{"name": "Taobao", "desc": "Chinese marketplace", "cat": "Shopping", "auth": "apiKey"},
|
|
574
|
+
{"name": "JD.com", "desc": "Chinese e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
575
|
+
{"name": "Pinduoduo", "desc": "Chinese e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
576
|
+
{"name": "Rakuten", "desc": "Japanese e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
577
|
+
{"name": "Amazon Japan", "desc": "Japanese Amazon", "cat": "Shopping", "auth": "apiKey"},
|
|
578
|
+
{"name": "Yahoo Japan", "desc": "Japanese marketplace", "cat": "Shopping", "auth": "apiKey"},
|
|
579
|
+
{"name": "Coupang", "desc": "Korean e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
580
|
+
{"name": "Gmarket", "desc": "Korean marketplace", "cat": "Shopping", "auth": "apiKey"},
|
|
581
|
+
{"name": "11Street", "desc": "Korean e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
582
|
+
{"name": "Shopee", "desc": "Southeast Asian e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
583
|
+
{"name": "Lazada", "desc": "Southeast Asian e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
584
|
+
{"name": "Tokopedia", "desc": "Indonesian e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
585
|
+
{"name": "Bukalapak", "desc": "Indonesian e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
586
|
+
{"name": "Flipkart", "desc": "Indian e-commerce", "cat": "Shopping", "auth": "apiKey"},
|
|
587
|
+
{"name": "Myntra", "desc": "Indian fashion", "cat": "Shopping", "auth": "apiKey"},
|
|
588
|
+
{"name": "Nykaa", "desc": "Indian beauty", "cat": "Shopping", "auth": "apiKey"},
|
|
589
|
+
{"name": "BigBasket", "desc": "Indian grocery", "cat": "Food", "auth": "apiKey"},
|
|
590
|
+
{"name": "Grofers", "desc": "Indian grocery", "cat": "Food", "auth": "apiKey"},
|
|
591
|
+
{"name": "Swiggy", "desc": "Indian food delivery", "cat": "Food", "auth": "apiKey"},
|
|
592
|
+
{"name": "Zomato", "desc": "Indian food delivery", "cat": "Food", "auth": "apiKey"},
|
|
593
|
+
{"name": "Didi", "desc": "Chinese ride-hailing", "cat": "Transportation", "auth": "apiKey"},
|
|
594
|
+
{"name": "Grab", "desc": "Southeast Asian super app", "cat": "Transportation", "auth": "apiKey"},
|
|
595
|
+
{"name": "Gojek", "desc": "Indonesian super app", "cat": "Transportation", "auth": "apiKey"},
|
|
596
|
+
{"name": "Ola", "desc": "Indian ride-hailing", "cat": "Transportation", "auth": "apiKey"},
|
|
597
|
+
{"name": "JapanTaxi", "desc": "Japanese taxi", "cat": "Transportation", "auth": "apiKey"},
|
|
598
|
+
{"name": "Kakao T", "desc": "Korean taxi", "cat": "Transportation", "auth": "apiKey"},
|
|
599
|
+
{"name": "Grab Food", "desc": "Southeast Asian delivery", "cat": "Food", "auth": "apiKey"},
|
|
600
|
+
{"name": "GoFood", "desc": "Indonesian delivery", "cat": "Food", "auth": "apiKey"},
|
|
601
|
+
{"name": "Meituan", "desc": "Chinese delivery", "cat": "Food", "auth": "apiKey"},
|
|
602
|
+
{"name": "Ele.me", "desc": "Chinese delivery", "cat": "Food", "auth": "apiKey"},
|
|
603
|
+
{"name": "Uber Eats APAC", "desc": "APAC delivery", "cat": "Food", "auth": "OAuth"},
|
|
604
|
+
{"name": "foodpanda", "desc": "Asian food delivery", "cat": "Food", "auth": "apiKey"},
|
|
605
|
+
{"name": "LINE", "desc": "Japanese messaging", "cat": "Social", "auth": "OAuth"},
|
|
606
|
+
{"name": "KakaoTalk", "desc": "Korean messaging", "cat": "Social", "auth": "OAuth"},
|
|
607
|
+
{"name": "Viber", "desc": "Messaging app", "cat": "Social", "auth": "apiKey"},
|
|
608
|
+
{"name": "Naver", "desc": "Korean search engine", "cat": "Data", "auth": "apiKey"},
|
|
609
|
+
{"name": "Baidu", "desc": "Chinese search engine", "cat": "Data", "auth": "apiKey"},
|
|
610
|
+
{"name": "Weibo", "desc": "Chinese social media", "cat": "Social", "auth": "OAuth"},
|
|
611
|
+
{"name": "Douyin", "desc": "Chinese TikTok", "cat": "Social", "auth": "apiKey"},
|
|
612
|
+
{"name": "Kuaishou", "desc": "Chinese short video", "cat": "Social", "auth": "apiKey"},
|
|
613
|
+
{"name": "Bilibili", "desc": "Chinese video platform", "cat": "Video", "auth": "apiKey"},
|
|
614
|
+
{"name": "Xiaohongshu", "desc": "Chinese lifestyle app", "cat": "Social", "auth": "apiKey"},
|
|
615
|
+
|
|
616
|
+
# === ADDITIONAL NICHE APIS ===
|
|
617
|
+
{"name": "Twitch Drops", "desc": "Game rewards", "cat": "Games", "auth": "OAuth"},
|
|
618
|
+
{"name": "Epic Games", "desc": "Game platform API", "cat": "Games", "auth": "OAuth"},
|
|
619
|
+
{"name": "GOG Galaxy", "desc": "Game platform", "cat": "Games", "auth": "apiKey"},
|
|
620
|
+
{"name": "Xbox Live", "desc": "Gaming services", "cat": "Games", "auth": "OAuth"},
|
|
621
|
+
{"name": "PlayStation Network", "desc": "Gaming services", "cat": "Games", "auth": "OAuth"},
|
|
622
|
+
{"name": "Nintendo Switch", "desc": "Gaming platform", "cat": "Games", "auth": "OAuth"},
|
|
623
|
+
{"name": "Roblox", "desc": "Gaming platform", "cat": "Games", "auth": "apiKey"},
|
|
624
|
+
{"name": "Unity Cloud", "desc": "Game development", "cat": "Games", "auth": "apiKey"},
|
|
625
|
+
{"name": "Unreal Engine", "desc": "Game engine", "cat": "Games", "auth": "apiKey"},
|
|
626
|
+
{"name": "Godot", "desc": "Game engine", "cat": "Games", "auth": "None"},
|
|
627
|
+
{"name": "PlayFab", "desc": "Game backend", "cat": "Games", "auth": "apiKey"},
|
|
628
|
+
{"name": "GameSparks", "desc": "Game backend", "cat": "Games", "auth": "apiKey"},
|
|
629
|
+
{"name": "Photon Engine", "desc": "Multiplayer engine", "cat": "Games", "auth": "apiKey"},
|
|
630
|
+
{"name": "Mirror", "desc": "Unity networking", "cat": "Games", "auth": "None"},
|
|
631
|
+
{"name": "AccuWeather", "desc": "Weather data", "cat": "Weather", "auth": "apiKey"},
|
|
632
|
+
{"name": "Weather.com", "desc": "Weather data", "cat": "Weather", "auth": "apiKey"},
|
|
633
|
+
{"name": "WeatherAPI", "desc": "Weather data", "cat": "Weather", "auth": "apiKey"},
|
|
634
|
+
{"name": "OpenMeteo", "desc": "Open weather API", "cat": "Weather", "auth": "None"},
|
|
635
|
+
{"name": "Visual Crossing", "desc": "Weather data", "cat": "Weather", "auth": "apiKey"},
|
|
636
|
+
{"name": "Tomorrow.io", "desc": "Weather intelligence", "cat": "Weather", "auth": "apiKey"},
|
|
637
|
+
{"name": "Windy", "desc": "Wind forecast", "cat": "Weather", "auth": "apiKey"},
|
|
638
|
+
{"name": "Yr.no", "desc": "Norwegian weather", "cat": "Weather", "auth": "None"},
|
|
639
|
+
{"name": "Met Office UK", "desc": "UK weather", "cat": "Weather", "auth": "apiKey"},
|
|
640
|
+
{"name": "DWD", "desc": "German weather", "cat": "Weather", "auth": "None"},
|
|
641
|
+
{"name": "Meteomatics", "desc": "Weather data", "cat": "Weather", "auth": "apiKey"},
|
|
642
|
+
{"name": "Climacell", "desc": "Hyperlocal weather", "cat": "Weather", "auth": "apiKey"},
|
|
643
|
+
{"name": "AerisWeather", "desc": "Weather data", "cat": "Weather", "auth": "apiKey"},
|
|
644
|
+
{"name": "Storm Glass", "desc": "Marine weather", "cat": "Weather", "auth": "apiKey"},
|
|
645
|
+
{"name": "World Tides", "desc": "Tide data", "cat": "Science", "auth": "apiKey"},
|
|
646
|
+
{"name": "AQICN", "desc": "Air quality data", "cat": "Science", "auth": "apiKey"},
|
|
647
|
+
{"name": "IQAir", "desc": "Air quality", "cat": "Science", "auth": "apiKey"},
|
|
648
|
+
{"name": "BreezoMeter", "desc": "Air quality", "cat": "Science", "auth": "apiKey"},
|
|
649
|
+
{"name": "Pollen.com", "desc": "Pollen data", "cat": "Health", "auth": "apiKey"},
|
|
650
|
+
{"name": "Ambee", "desc": "Environmental data", "cat": "Science", "auth": "apiKey"},
|
|
651
|
+
{"name": "USGS Earthquake", "desc": "Earthquake data", "cat": "Science", "auth": "None"},
|
|
652
|
+
{"name": "EMSC", "desc": "European seismology", "cat": "Science", "auth": "None"},
|
|
653
|
+
{"name": "GDACS", "desc": "Disaster alerts", "cat": "Science", "auth": "None"},
|
|
654
|
+
{"name": "ReliefWeb", "desc": "Humanitarian data", "cat": "Government", "auth": "None"},
|
|
655
|
+
{"name": "ACLED", "desc": "Conflict data", "cat": "Science", "auth": "apiKey"},
|
|
656
|
+
{"name": "UNOCHA", "desc": "Humanitarian affairs", "cat": "Government", "auth": "None"},
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
# Process and add new APIs
|
|
660
|
+
added = 0
|
|
661
|
+
skipped = 0
|
|
662
|
+
for api in NEW_APIS:
|
|
663
|
+
api_id = make_id(api['name'])
|
|
664
|
+
if api_id in existing_ids:
|
|
665
|
+
skipped += 1
|
|
666
|
+
continue
|
|
667
|
+
|
|
668
|
+
new_api = {
|
|
669
|
+
"id": api_id,
|
|
670
|
+
"name": api['name'],
|
|
671
|
+
"description": api['desc'],
|
|
672
|
+
"category": api['cat'],
|
|
673
|
+
"auth": api['auth'],
|
|
674
|
+
"https": True,
|
|
675
|
+
"cors": "unknown",
|
|
676
|
+
"link": f"https://{api_id.replace('-', '')}.com",
|
|
677
|
+
"pricing": "unknown",
|
|
678
|
+
"keywords": []
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
data['apis'].append(new_api)
|
|
682
|
+
existing_ids.add(api_id)
|
|
683
|
+
added += 1
|
|
684
|
+
|
|
685
|
+
# Update metadata
|
|
686
|
+
data['count'] = len(data['apis'])
|
|
687
|
+
data['lastUpdated'] = datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%SZ')
|
|
688
|
+
|
|
689
|
+
# Write back
|
|
690
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
691
|
+
json.dump(data, f, indent=2)
|
|
692
|
+
|
|
693
|
+
print(f"\n✅ Batch 2 Added: {added} new APIs")
|
|
694
|
+
print(f"⏭️ Skipped: {skipped} (already exist)")
|
|
695
|
+
print(f"📊 Total now: {data['count']}")
|