@nordsym/apiclaw 1.0.0 → 1.1.1
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/AGENTS.md +74 -0
- package/HEARTBEAT.md +4 -0
- package/IDENTITY.md +22 -0
- package/README.md +193 -202
- package/SOUL.md +36 -0
- package/STATUS.md +237 -0
- package/TOOLS.md +36 -0
- package/USER.md +17 -0
- package/{backend/convex → convex}/_generated/api.d.ts +12 -6
- package/convex/analytics.ts +90 -0
- package/convex/credits.ts +211 -0
- package/convex/http.ts +578 -0
- package/convex/providers.ts +516 -0
- package/convex/purchases.ts +183 -0
- package/convex/ratelimit.ts +104 -0
- package/convex/schema.ts +220 -0
- package/convex/telemetry.ts +81 -0
- package/convex.json +3 -0
- package/dist/credentials.d.ts +19 -0
- package/dist/credentials.d.ts.map +1 -0
- package/dist/credentials.js +158 -0
- package/dist/credentials.js.map +1 -0
- package/dist/credits.d.ts +14 -11
- package/dist/credits.d.ts.map +1 -1
- package/dist/credits.js +151 -99
- package/dist/credits.js.map +1 -1
- package/dist/discovery.d.ts +7 -16
- package/dist/discovery.d.ts.map +1 -1
- package/dist/discovery.js +33 -40
- package/dist/discovery.js.map +1 -1
- package/dist/execute.d.ts +19 -0
- package/dist/execute.d.ts.map +1 -0
- package/dist/execute.js +285 -0
- package/dist/execute.js.map +1 -0
- package/dist/index.js +175 -31
- package/dist/index.js.map +1 -1
- package/dist/proxy.d.ts +6 -0
- package/dist/proxy.d.ts.map +1 -0
- package/dist/proxy.js +19 -0
- package/dist/proxy.js.map +1 -0
- package/dist/registry/apis.json +95362 -202
- package/dist/registry/apis_expanded.json +100853 -0
- package/dist/stripe.d.ts +68 -0
- package/dist/stripe.d.ts.map +1 -0
- package/dist/stripe.js +196 -0
- package/dist/stripe.js.map +1 -0
- package/dist/telemetry.d.ts +28 -0
- package/dist/telemetry.d.ts.map +1 -0
- package/dist/telemetry.js +50 -0
- package/dist/telemetry.js.map +1 -0
- package/dist/test.d.ts +3 -2
- package/dist/test.d.ts.map +1 -1
- package/dist/test.js +105 -75
- package/dist/test.js.map +1 -1
- package/dist/types.d.ts +0 -28
- package/dist/types.d.ts.map +1 -1
- package/dist/webhook.d.ts +2 -0
- package/dist/webhook.d.ts.map +1 -0
- package/dist/webhook.js +90 -0
- package/dist/webhook.js.map +1 -0
- package/landing/DESIGN.md +343 -0
- package/landing/package-lock.json +1196 -7
- package/landing/package.json +5 -1
- package/landing/public/android-chrome-192x192.png +0 -0
- package/landing/public/android-chrome-512x512.png +0 -0
- package/landing/public/apple-touch-icon.png +0 -0
- package/landing/public/demo.gif +0 -0
- package/landing/public/demo.mp4 +0 -0
- package/landing/public/favicon-16x16.png +0 -0
- package/landing/public/favicon-32x32.png +0 -0
- package/landing/public/favicon.ico +0 -0
- package/landing/public/favicon.svg +3 -0
- package/landing/public/icon.svg +47 -0
- package/landing/public/logo-mono.svg +37 -0
- package/landing/public/logo-simple.svg +45 -0
- package/landing/public/logo.svg +84 -0
- package/landing/public/og-template.html +184 -0
- package/landing/public/site.webmanifest +31 -0
- package/landing/scripts/generate-assets.js +284 -0
- package/landing/scripts/generate-pngs.js +48 -0
- package/landing/scripts/generate-stats.js +42 -0
- package/landing/src/app/admin/page.tsx +348 -0
- package/landing/src/app/api/auth/magic-link/route.ts +73 -0
- package/landing/src/app/api/auth/session/route.ts +38 -0
- package/landing/src/app/api/auth/verify/route.ts +43 -0
- package/landing/src/app/api/og/route.tsx +84 -0
- package/landing/src/app/globals.css +439 -100
- package/landing/src/app/layout.tsx +37 -7
- package/landing/src/app/page.tsx +627 -552
- package/landing/src/app/providers/dashboard/login/page.tsx +176 -0
- package/landing/src/app/providers/dashboard/page.tsx +589 -0
- package/landing/src/app/providers/dashboard/verify/page.tsx +106 -0
- package/landing/src/app/providers/layout.tsx +14 -0
- package/landing/src/app/providers/page.tsx +402 -0
- package/landing/src/app/providers/register/page.tsx +670 -0
- package/landing/src/components/ProviderDashboard.tsx +794 -0
- package/landing/src/hooks/useDashboardData.ts +99 -0
- package/landing/src/lib/apis.json +116054 -0
- package/landing/src/lib/convex-client.ts +106 -0
- package/landing/src/lib/mock-data.ts +285 -0
- package/landing/src/lib/stats.json +6 -0
- package/landing/tailwind.config.ts +12 -11
- package/landing/tsconfig.tsbuildinfo +1 -0
- package/package.json +21 -20
- package/scripts/SYMBOT-FIX.md +238 -0
- package/scripts/demo-simulation.py +177 -0
- package/scripts/expand-more.py +502 -0
- package/scripts/expand-registry.py +434 -0
- package/scripts/history-sanitizer.ts +272 -0
- package/scripts/mass-scrape.py +1308 -0
- package/scripts/sync-and-deploy.sh +36 -0
- package/src/credentials.ts +177 -0
- package/src/credits.ts +190 -122
- package/src/discovery.ts +45 -58
- package/src/execute.ts +350 -0
- package/src/index.ts +184 -32
- package/src/proxy.ts +24 -0
- package/src/registry/apis.json +95362 -202
- package/src/registry/apis_expanded.json +100853 -0
- package/src/stripe.ts +243 -0
- package/src/telemetry.ts +71 -0
- package/src/test.ts +127 -89
- package/src/types.ts +0 -34
- package/src/webhook.ts +107 -0
- package/.github/ISSUE_TEMPLATE/add-api.yml +0 -123
- package/BRIEFING.md +0 -30
- package/backend/convex/apiKeys.ts +0 -75
- package/backend/convex/purchases.ts +0 -74
- package/backend/convex/schema.ts +0 -45
- package/backend/convex/transactions.ts +0 -57
- package/backend/convex/users.ts +0 -94
- package/backend/package-lock.json +0 -521
- package/backend/package.json +0 -15
- package/dist/registry/parse_apis.py +0 -146
- package/dist/revenuecat.d.ts +0 -61
- package/dist/revenuecat.d.ts.map +0 -1
- package/dist/revenuecat.js +0 -166
- package/dist/revenuecat.js.map +0 -1
- package/dist/webhooks/revenuecat.d.ts +0 -48
- package/dist/webhooks/revenuecat.d.ts.map +0 -1
- package/dist/webhooks/revenuecat.js +0 -119
- package/dist/webhooks/revenuecat.js.map +0 -1
- package/docs/revenuecat-setup.md +0 -89
- package/landing/src/app/api/keys/route.ts +0 -71
- package/landing/src/app/api/log/route.ts +0 -37
- package/landing/src/app/api/stats/route.ts +0 -37
- package/landing/src/app/page.tsx.bak +0 -567
- package/landing/src/components/AddKeyModal.tsx +0 -159
- package/newsletter-template.html +0 -71
- package/outreach/OUTREACH-SYSTEM.md +0 -211
- package/outreach/email-template.html +0 -179
- package/outreach/targets.md +0 -133
- package/src/registry/parse_apis.py +0 -146
- package/src/revenuecat.ts +0 -239
- package/src/webhooks/revenuecat.ts +0 -187
- /package/{backend/convex → convex}/README.md +0 -0
- /package/{backend/convex → convex}/_generated/api.js +0 -0
- /package/{backend/convex → convex}/_generated/dataModel.d.ts +0 -0
- /package/{backend/convex → convex}/_generated/server.d.ts +0 -0
- /package/{backend/convex → convex}/_generated/server.js +0 -0
- /package/{backend/convex → convex}/tsconfig.json +0 -0
|
@@ -0,0 +1,1308 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Mass API Scraper
|
|
4
|
+
Goal: Expand from 4,518 to 20,000+ APIs
|
|
5
|
+
Sources: APIs.guru, Public APIs GitHub, Postman Collections, manual curated lists
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import json
|
|
9
|
+
import requests
|
|
10
|
+
import hashlib
|
|
11
|
+
import re
|
|
12
|
+
import time
|
|
13
|
+
from pathlib import Path
|
|
14
|
+
from concurrent.futures import ThreadPoolExecutor, as_completed
|
|
15
|
+
|
|
16
|
+
REGISTRY_PATH = Path.home() / "Projects/apiclaw/src/registry/apis.json"
|
|
17
|
+
OUTPUT_PATH = Path.home() / "Projects/apiclaw/src/registry/apis_expanded.json"
|
|
18
|
+
|
|
19
|
+
# Track progress
|
|
20
|
+
stats = {
|
|
21
|
+
"initial": 0,
|
|
22
|
+
"added": 0,
|
|
23
|
+
"duplicates": 0,
|
|
24
|
+
"errors": 0
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
def load_existing():
|
|
28
|
+
"""Load existing APIs registry"""
|
|
29
|
+
with open(REGISTRY_PATH) as f:
|
|
30
|
+
data = json.load(f)
|
|
31
|
+
stats["initial"] = data["count"]
|
|
32
|
+
return data
|
|
33
|
+
|
|
34
|
+
def generate_id(name):
|
|
35
|
+
"""Generate a unique ID from name"""
|
|
36
|
+
clean = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
37
|
+
return clean[:50] if clean else hashlib.md5(name.encode()).hexdigest()[:12]
|
|
38
|
+
|
|
39
|
+
def normalize_category(cat):
|
|
40
|
+
"""Normalize category names"""
|
|
41
|
+
mappings = {
|
|
42
|
+
"machine learning": "AI & Machine Learning",
|
|
43
|
+
"artificial intelligence": "AI & Machine Learning",
|
|
44
|
+
"ai": "AI & Machine Learning",
|
|
45
|
+
"ml": "AI & Machine Learning",
|
|
46
|
+
"nlp": "AI & Machine Learning",
|
|
47
|
+
"finance": "Finance & Banking",
|
|
48
|
+
"banking": "Finance & Banking",
|
|
49
|
+
"fintech": "Finance & Banking",
|
|
50
|
+
"payments": "Finance & Banking",
|
|
51
|
+
"crypto": "Cryptocurrency",
|
|
52
|
+
"blockchain": "Cryptocurrency",
|
|
53
|
+
"weather": "Weather",
|
|
54
|
+
"music": "Music & Audio",
|
|
55
|
+
"audio": "Music & Audio",
|
|
56
|
+
"video": "Video & Streaming",
|
|
57
|
+
"streaming": "Video & Streaming",
|
|
58
|
+
"social": "Social Media",
|
|
59
|
+
"social media": "Social Media",
|
|
60
|
+
"email": "Email & Messaging",
|
|
61
|
+
"messaging": "Email & Messaging",
|
|
62
|
+
"sms": "Email & Messaging",
|
|
63
|
+
"communication": "Email & Messaging",
|
|
64
|
+
"maps": "Maps & Geolocation",
|
|
65
|
+
"geolocation": "Maps & Geolocation",
|
|
66
|
+
"geo": "Maps & Geolocation",
|
|
67
|
+
"location": "Maps & Geolocation",
|
|
68
|
+
"ecommerce": "E-Commerce",
|
|
69
|
+
"e-commerce": "E-Commerce",
|
|
70
|
+
"shopping": "E-Commerce",
|
|
71
|
+
"health": "Health & Fitness",
|
|
72
|
+
"fitness": "Health & Fitness",
|
|
73
|
+
"medical": "Health & Fitness",
|
|
74
|
+
"sports": "Sports",
|
|
75
|
+
"news": "News & Media",
|
|
76
|
+
"media": "News & Media",
|
|
77
|
+
"travel": "Travel & Transportation",
|
|
78
|
+
"transportation": "Travel & Transportation",
|
|
79
|
+
"food": "Food & Recipes",
|
|
80
|
+
"recipes": "Food & Recipes",
|
|
81
|
+
"games": "Games & Entertainment",
|
|
82
|
+
"gaming": "Games & Entertainment",
|
|
83
|
+
"entertainment": "Games & Entertainment",
|
|
84
|
+
"security": "Security & Authentication",
|
|
85
|
+
"authentication": "Security & Authentication",
|
|
86
|
+
"auth": "Security & Authentication",
|
|
87
|
+
"analytics": "Analytics & Data",
|
|
88
|
+
"data": "Analytics & Data",
|
|
89
|
+
"database": "Databases",
|
|
90
|
+
"storage": "Storage & Files",
|
|
91
|
+
"files": "Storage & Files",
|
|
92
|
+
"cloud": "Cloud & Infrastructure",
|
|
93
|
+
"infrastructure": "Cloud & Infrastructure",
|
|
94
|
+
"devops": "DevOps & CI/CD",
|
|
95
|
+
"ci/cd": "DevOps & CI/CD",
|
|
96
|
+
"testing": "Testing & QA",
|
|
97
|
+
"qa": "Testing & QA",
|
|
98
|
+
"search": "Search",
|
|
99
|
+
"images": "Images & Media",
|
|
100
|
+
"photos": "Images & Media",
|
|
101
|
+
"text": "Text & NLP",
|
|
102
|
+
"translation": "Translation",
|
|
103
|
+
"language": "Translation",
|
|
104
|
+
"calendar": "Calendar & Scheduling",
|
|
105
|
+
"scheduling": "Calendar & Scheduling",
|
|
106
|
+
"iot": "IoT & Hardware",
|
|
107
|
+
"hardware": "IoT & Hardware",
|
|
108
|
+
"government": "Government & Open Data",
|
|
109
|
+
"open data": "Government & Open Data",
|
|
110
|
+
"education": "Education",
|
|
111
|
+
"jobs": "Jobs & Careers",
|
|
112
|
+
"careers": "Jobs & Careers",
|
|
113
|
+
"real estate": "Real Estate",
|
|
114
|
+
"property": "Real Estate",
|
|
115
|
+
"automotive": "Automotive",
|
|
116
|
+
"vehicles": "Automotive",
|
|
117
|
+
"cars": "Automotive",
|
|
118
|
+
}
|
|
119
|
+
cat_lower = cat.lower().strip()
|
|
120
|
+
return mappings.get(cat_lower, cat.title())
|
|
121
|
+
|
|
122
|
+
def extract_keywords(text):
|
|
123
|
+
"""Extract keywords from description"""
|
|
124
|
+
if not text:
|
|
125
|
+
return []
|
|
126
|
+
stop_words = {'the', 'a', 'an', 'and', 'or', 'but', 'in', 'on', 'at', 'to', 'for', 'of', 'with', 'by', 'from', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'do', 'does', 'did', 'will', 'would', 'could', 'should', 'may', 'might', 'can', 'this', 'that', 'these', 'those', 'it', 'its', 'your', 'our', 'their', 'api', 'apis', 'service', 'services', 'data', 'get', 'set', 'use', 'used', 'using'}
|
|
127
|
+
words = re.findall(r'\b[a-z]{3,15}\b', text.lower())
|
|
128
|
+
keywords = [w for w in words if w not in stop_words]
|
|
129
|
+
return list(set(keywords))[:10]
|
|
130
|
+
|
|
131
|
+
def fetch_apis_guru():
|
|
132
|
+
"""Fetch from APIs.guru OpenAPI directory"""
|
|
133
|
+
print("📥 Fetching APIs.guru...")
|
|
134
|
+
apis = []
|
|
135
|
+
try:
|
|
136
|
+
resp = requests.get("https://api.apis.guru/v2/list.json", timeout=30)
|
|
137
|
+
data = resp.json()
|
|
138
|
+
|
|
139
|
+
for provider, versions in data.items():
|
|
140
|
+
try:
|
|
141
|
+
# Get the preferred/latest version
|
|
142
|
+
preferred = versions.get("preferred", list(versions["versions"].keys())[0])
|
|
143
|
+
api_info = versions["versions"][preferred]
|
|
144
|
+
info = api_info.get("info", {})
|
|
145
|
+
|
|
146
|
+
name = info.get("title", provider)
|
|
147
|
+
description = info.get("description", "")[:500] if info.get("description") else f"API from {provider}"
|
|
148
|
+
|
|
149
|
+
# Clean HTML from description
|
|
150
|
+
description = re.sub(r'<[^>]+>', '', description)
|
|
151
|
+
description = re.sub(r'\s+', ' ', description).strip()[:300]
|
|
152
|
+
|
|
153
|
+
category = "Uncategorized"
|
|
154
|
+
if "x-apisguru-categories" in info:
|
|
155
|
+
cats = info["x-apisguru-categories"]
|
|
156
|
+
if cats:
|
|
157
|
+
category = normalize_category(cats[0])
|
|
158
|
+
|
|
159
|
+
link = info.get("x-origin", [{}])[0].get("url", "") if info.get("x-origin") else ""
|
|
160
|
+
if not link:
|
|
161
|
+
link = api_info.get("swaggerUrl", f"https://apis.guru/browse-apis/?search={provider}")
|
|
162
|
+
|
|
163
|
+
apis.append({
|
|
164
|
+
"id": generate_id(name),
|
|
165
|
+
"name": name[:100],
|
|
166
|
+
"description": description or f"OpenAPI spec for {name}",
|
|
167
|
+
"category": category,
|
|
168
|
+
"auth": "apiKey" if "security" in str(api_info) else "unknown",
|
|
169
|
+
"https": True,
|
|
170
|
+
"cors": "unknown",
|
|
171
|
+
"link": link,
|
|
172
|
+
"pricing": "unknown",
|
|
173
|
+
"keywords": extract_keywords(description),
|
|
174
|
+
"source": "apis.guru"
|
|
175
|
+
})
|
|
176
|
+
except Exception as e:
|
|
177
|
+
stats["errors"] += 1
|
|
178
|
+
continue
|
|
179
|
+
|
|
180
|
+
print(f" ✓ APIs.guru: {len(apis)} APIs")
|
|
181
|
+
except Exception as e:
|
|
182
|
+
print(f" ✗ APIs.guru error: {e}")
|
|
183
|
+
|
|
184
|
+
return apis
|
|
185
|
+
|
|
186
|
+
def fetch_public_apis_github():
|
|
187
|
+
"""Fetch from public-apis GitHub repo (additional entries)"""
|
|
188
|
+
print("📥 Fetching Public APIs GitHub...")
|
|
189
|
+
apis = []
|
|
190
|
+
try:
|
|
191
|
+
# Try multiple mirrors/formats
|
|
192
|
+
urls = [
|
|
193
|
+
"https://raw.githubusercontent.com/public-apis/public-apis/master/apis.json",
|
|
194
|
+
"https://api.publicapis.org/entries",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
for url in urls:
|
|
198
|
+
try:
|
|
199
|
+
resp = requests.get(url, timeout=30)
|
|
200
|
+
if resp.status_code == 200:
|
|
201
|
+
data = resp.json()
|
|
202
|
+
entries = data.get("entries", data) if isinstance(data, dict) else data
|
|
203
|
+
|
|
204
|
+
for entry in entries:
|
|
205
|
+
if isinstance(entry, dict):
|
|
206
|
+
name = entry.get("API", entry.get("name", ""))
|
|
207
|
+
if not name:
|
|
208
|
+
continue
|
|
209
|
+
|
|
210
|
+
apis.append({
|
|
211
|
+
"id": generate_id(name),
|
|
212
|
+
"name": name,
|
|
213
|
+
"description": entry.get("Description", entry.get("description", "")),
|
|
214
|
+
"category": normalize_category(entry.get("Category", entry.get("category", "Uncategorized"))),
|
|
215
|
+
"auth": entry.get("Auth", entry.get("auth", "unknown")) or "None",
|
|
216
|
+
"https": entry.get("HTTPS", entry.get("https", True)),
|
|
217
|
+
"cors": entry.get("Cors", entry.get("cors", "unknown")),
|
|
218
|
+
"link": entry.get("Link", entry.get("link", "")),
|
|
219
|
+
"pricing": "unknown",
|
|
220
|
+
"keywords": extract_keywords(entry.get("Description", "")),
|
|
221
|
+
"source": "public-apis"
|
|
222
|
+
})
|
|
223
|
+
break
|
|
224
|
+
except:
|
|
225
|
+
continue
|
|
226
|
+
|
|
227
|
+
print(f" ✓ Public APIs: {len(apis)} APIs")
|
|
228
|
+
except Exception as e:
|
|
229
|
+
print(f" ✗ Public APIs error: {e}")
|
|
230
|
+
|
|
231
|
+
return apis
|
|
232
|
+
|
|
233
|
+
def generate_curated_apis():
|
|
234
|
+
"""Generate curated list of well-known APIs"""
|
|
235
|
+
print("📥 Generating curated API list...")
|
|
236
|
+
|
|
237
|
+
curated = [
|
|
238
|
+
# AI & Machine Learning
|
|
239
|
+
{"name": "OpenAI GPT-4", "description": "Advanced language model API for text generation, analysis, and conversation", "category": "AI & Machine Learning", "link": "https://platform.openai.com/docs/api-reference", "auth": "apiKey", "pricing": "paid"},
|
|
240
|
+
{"name": "OpenAI DALL-E", "description": "AI image generation from text descriptions", "category": "AI & Machine Learning", "link": "https://platform.openai.com/docs/api-reference/images", "auth": "apiKey", "pricing": "paid"},
|
|
241
|
+
{"name": "OpenAI Whisper", "description": "Speech-to-text transcription API", "category": "AI & Machine Learning", "link": "https://platform.openai.com/docs/api-reference/audio", "auth": "apiKey", "pricing": "paid"},
|
|
242
|
+
{"name": "Anthropic Claude", "description": "Advanced AI assistant API for safe and helpful AI interactions", "category": "AI & Machine Learning", "link": "https://docs.anthropic.com/claude/reference", "auth": "apiKey", "pricing": "paid"},
|
|
243
|
+
{"name": "Google Gemini", "description": "Google's multimodal AI model API", "category": "AI & Machine Learning", "link": "https://ai.google.dev/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
244
|
+
{"name": "Google Cloud Vision", "description": "Image analysis and recognition API", "category": "AI & Machine Learning", "link": "https://cloud.google.com/vision/docs", "auth": "apiKey", "pricing": "paid"},
|
|
245
|
+
{"name": "Google Cloud Natural Language", "description": "Text analysis and entity extraction", "category": "AI & Machine Learning", "link": "https://cloud.google.com/natural-language/docs", "auth": "apiKey", "pricing": "paid"},
|
|
246
|
+
{"name": "Google Cloud Speech-to-Text", "description": "Convert audio to text using machine learning", "category": "AI & Machine Learning", "link": "https://cloud.google.com/speech-to-text/docs", "auth": "apiKey", "pricing": "paid"},
|
|
247
|
+
{"name": "Google Cloud Text-to-Speech", "description": "Convert text to natural-sounding speech", "category": "AI & Machine Learning", "link": "https://cloud.google.com/text-to-speech/docs", "auth": "apiKey", "pricing": "paid"},
|
|
248
|
+
{"name": "AWS Bedrock", "description": "Access to foundation models including Claude, Llama, and Titan", "category": "AI & Machine Learning", "link": "https://docs.aws.amazon.com/bedrock/", "auth": "apiKey", "pricing": "paid"},
|
|
249
|
+
{"name": "AWS Comprehend", "description": "Natural language processing and text analytics", "category": "AI & Machine Learning", "link": "https://docs.aws.amazon.com/comprehend/", "auth": "apiKey", "pricing": "paid"},
|
|
250
|
+
{"name": "AWS Rekognition", "description": "Image and video analysis with deep learning", "category": "AI & Machine Learning", "link": "https://docs.aws.amazon.com/rekognition/", "auth": "apiKey", "pricing": "paid"},
|
|
251
|
+
{"name": "AWS Polly", "description": "Text-to-speech service with lifelike voices", "category": "AI & Machine Learning", "link": "https://docs.aws.amazon.com/polly/", "auth": "apiKey", "pricing": "paid"},
|
|
252
|
+
{"name": "AWS Transcribe", "description": "Automatic speech recognition service", "category": "AI & Machine Learning", "link": "https://docs.aws.amazon.com/transcribe/", "auth": "apiKey", "pricing": "paid"},
|
|
253
|
+
{"name": "Azure OpenAI Service", "description": "OpenAI models on Azure infrastructure", "category": "AI & Machine Learning", "link": "https://learn.microsoft.com/en-us/azure/ai-services/openai/", "auth": "apiKey", "pricing": "paid"},
|
|
254
|
+
{"name": "Azure Cognitive Services", "description": "Suite of AI APIs for vision, speech, language, and decision", "category": "AI & Machine Learning", "link": "https://azure.microsoft.com/en-us/products/cognitive-services/", "auth": "apiKey", "pricing": "freemium"},
|
|
255
|
+
{"name": "Hugging Face Inference", "description": "Run ML models via simple API calls", "category": "AI & Machine Learning", "link": "https://huggingface.co/docs/api-inference/", "auth": "apiKey", "pricing": "freemium"},
|
|
256
|
+
{"name": "Replicate", "description": "Run open-source machine learning models in the cloud", "category": "AI & Machine Learning", "link": "https://replicate.com/docs", "auth": "apiKey", "pricing": "paid"},
|
|
257
|
+
{"name": "Stability AI", "description": "Stable Diffusion and other generative AI models", "category": "AI & Machine Learning", "link": "https://platform.stability.ai/docs/api", "auth": "apiKey", "pricing": "paid"},
|
|
258
|
+
{"name": "Cohere", "description": "Enterprise-grade NLP models for text understanding", "category": "AI & Machine Learning", "link": "https://docs.cohere.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
259
|
+
{"name": "Mistral AI", "description": "Open and portable generative AI models", "category": "AI & Machine Learning", "link": "https://docs.mistral.ai/", "auth": "apiKey", "pricing": "paid"},
|
|
260
|
+
{"name": "Perplexity AI", "description": "AI-powered search and answer engine API", "category": "AI & Machine Learning", "link": "https://docs.perplexity.ai/", "auth": "apiKey", "pricing": "paid"},
|
|
261
|
+
{"name": "Together AI", "description": "Run and fine-tune open-source LLMs", "category": "AI & Machine Learning", "link": "https://docs.together.ai/", "auth": "apiKey", "pricing": "paid"},
|
|
262
|
+
{"name": "Groq", "description": "Ultra-fast LLM inference API", "category": "AI & Machine Learning", "link": "https://console.groq.com/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
263
|
+
{"name": "Deepgram", "description": "Speech recognition and understanding API", "category": "AI & Machine Learning", "link": "https://developers.deepgram.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
264
|
+
{"name": "AssemblyAI", "description": "Speech-to-text and audio intelligence API", "category": "AI & Machine Learning", "link": "https://www.assemblyai.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
265
|
+
{"name": "ElevenLabs", "description": "AI voice synthesis and cloning", "category": "AI & Machine Learning", "link": "https://elevenlabs.io/docs/api-reference", "auth": "apiKey", "pricing": "freemium"},
|
|
266
|
+
{"name": "Runway ML", "description": "Creative AI tools for video and image generation", "category": "AI & Machine Learning", "link": "https://docs.runwayml.com/", "auth": "apiKey", "pricing": "paid"},
|
|
267
|
+
{"name": "Midjourney", "description": "AI image generation service", "category": "AI & Machine Learning", "link": "https://docs.midjourney.com/", "auth": "apiKey", "pricing": "paid"},
|
|
268
|
+
{"name": "Leonardo AI", "description": "AI image generation with fine-tuning capabilities", "category": "AI & Machine Learning", "link": "https://docs.leonardo.ai/", "auth": "apiKey", "pricing": "freemium"},
|
|
269
|
+
|
|
270
|
+
# Finance & Banking
|
|
271
|
+
{"name": "Stripe", "description": "Payment processing and financial infrastructure", "category": "Finance & Banking", "link": "https://stripe.com/docs/api", "auth": "apiKey", "pricing": "paid"},
|
|
272
|
+
{"name": "Stripe Connect", "description": "Marketplace and platform payments", "category": "Finance & Banking", "link": "https://stripe.com/docs/connect", "auth": "apiKey", "pricing": "paid"},
|
|
273
|
+
{"name": "Stripe Billing", "description": "Subscription and recurring billing", "category": "Finance & Banking", "link": "https://stripe.com/docs/billing", "auth": "apiKey", "pricing": "paid"},
|
|
274
|
+
{"name": "PayPal", "description": "Online payment system and money transfers", "category": "Finance & Banking", "link": "https://developer.paypal.com/docs/api/overview/", "auth": "OAuth", "pricing": "paid"},
|
|
275
|
+
{"name": "Square", "description": "Payment processing for businesses", "category": "Finance & Banking", "link": "https://developer.squareup.com/docs", "auth": "OAuth", "pricing": "paid"},
|
|
276
|
+
{"name": "Plaid", "description": "Connect bank accounts and financial data", "category": "Finance & Banking", "link": "https://plaid.com/docs/", "auth": "apiKey", "pricing": "paid"},
|
|
277
|
+
{"name": "Braintree", "description": "Full-stack payment platform by PayPal", "category": "Finance & Banking", "link": "https://developer.paypal.com/braintree/docs", "auth": "apiKey", "pricing": "paid"},
|
|
278
|
+
{"name": "Adyen", "description": "Global payment platform for enterprises", "category": "Finance & Banking", "link": "https://docs.adyen.com/", "auth": "apiKey", "pricing": "paid"},
|
|
279
|
+
{"name": "Klarna", "description": "Buy now, pay later payment solutions", "category": "Finance & Banking", "link": "https://docs.klarna.com/", "auth": "apiKey", "pricing": "paid"},
|
|
280
|
+
{"name": "Wise (TransferWise)", "description": "International money transfers", "category": "Finance & Banking", "link": "https://api-docs.wise.com/", "auth": "apiKey", "pricing": "paid"},
|
|
281
|
+
{"name": "Revolut Business", "description": "Business banking and payments API", "category": "Finance & Banking", "link": "https://developer.revolut.com/docs/", "auth": "OAuth", "pricing": "paid"},
|
|
282
|
+
{"name": "Tink", "description": "Open banking data aggregation", "category": "Finance & Banking", "link": "https://docs.tink.com/", "auth": "OAuth", "pricing": "paid"},
|
|
283
|
+
{"name": "Yodlee", "description": "Financial data aggregation and analytics", "category": "Finance & Banking", "link": "https://developer.yodlee.com/", "auth": "apiKey", "pricing": "paid"},
|
|
284
|
+
{"name": "MX", "description": "Financial data connectivity platform", "category": "Finance & Banking", "link": "https://docs.mx.com/", "auth": "apiKey", "pricing": "paid"},
|
|
285
|
+
{"name": "Finicity", "description": "Financial data and verification services", "category": "Finance & Banking", "link": "https://developer.finicity.com/", "auth": "apiKey", "pricing": "paid"},
|
|
286
|
+
{"name": "Alpha Vantage", "description": "Stock, forex, and crypto market data", "category": "Finance & Banking", "link": "https://www.alphavantage.co/documentation/", "auth": "apiKey", "pricing": "freemium"},
|
|
287
|
+
{"name": "IEX Cloud", "description": "Financial market data platform", "category": "Finance & Banking", "link": "https://iexcloud.io/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
288
|
+
{"name": "Polygon.io", "description": "Real-time and historical stock market data", "category": "Finance & Banking", "link": "https://polygon.io/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
289
|
+
{"name": "Yahoo Finance", "description": "Stock quotes and financial news", "category": "Finance & Banking", "link": "https://www.yahoofinanceapi.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
290
|
+
{"name": "Morningstar", "description": "Investment research and data", "category": "Finance & Banking", "link": "https://developer.morningstar.com/", "auth": "apiKey", "pricing": "paid"},
|
|
291
|
+
{"name": "Bloomberg", "description": "Financial data and analytics", "category": "Finance & Banking", "link": "https://www.bloomberg.com/professional/support/api-library/", "auth": "apiKey", "pricing": "paid"},
|
|
292
|
+
{"name": "Refinitiv", "description": "Financial market data and infrastructure", "category": "Finance & Banking", "link": "https://developers.refinitiv.com/", "auth": "apiKey", "pricing": "paid"},
|
|
293
|
+
{"name": "Quandl", "description": "Financial and economic datasets", "category": "Finance & Banking", "link": "https://docs.quandl.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
294
|
+
{"name": "Open Exchange Rates", "description": "Currency conversion and exchange rates", "category": "Finance & Banking", "link": "https://docs.openexchangerates.org/", "auth": "apiKey", "pricing": "freemium"},
|
|
295
|
+
{"name": "XE Currency", "description": "Currency conversion API", "category": "Finance & Banking", "link": "https://xecdapi.xe.com/", "auth": "apiKey", "pricing": "paid"},
|
|
296
|
+
{"name": "Currencycloud", "description": "B2B cross-border payments", "category": "Finance & Banking", "link": "https://developer.currencycloud.com/", "auth": "apiKey", "pricing": "paid"},
|
|
297
|
+
{"name": "GoCardless", "description": "Direct debit and bank payment collection", "category": "Finance & Banking", "link": "https://developer.gocardless.com/", "auth": "apiKey", "pricing": "paid"},
|
|
298
|
+
{"name": "Dwolla", "description": "Bank transfers and payment processing", "category": "Finance & Banking", "link": "https://developers.dwolla.com/", "auth": "OAuth", "pricing": "paid"},
|
|
299
|
+
{"name": "Marqeta", "description": "Modern card issuing platform", "category": "Finance & Banking", "link": "https://www.marqeta.com/docs/developer-guides", "auth": "apiKey", "pricing": "paid"},
|
|
300
|
+
{"name": "Galileo", "description": "Card issuing and digital banking", "category": "Finance & Banking", "link": "https://docs.galileo-ft.com/", "auth": "apiKey", "pricing": "paid"},
|
|
301
|
+
|
|
302
|
+
# Cryptocurrency
|
|
303
|
+
{"name": "Binance", "description": "Cryptocurrency exchange trading API", "category": "Cryptocurrency", "link": "https://binance-docs.github.io/apidocs/", "auth": "apiKey", "pricing": "free"},
|
|
304
|
+
{"name": "Coinbase", "description": "Cryptocurrency trading and wallet API", "category": "Cryptocurrency", "link": "https://docs.cloud.coinbase.com/", "auth": "OAuth", "pricing": "freemium"},
|
|
305
|
+
{"name": "Coinbase Pro", "description": "Advanced cryptocurrency trading", "category": "Cryptocurrency", "link": "https://docs.cloud.coinbase.com/exchange/", "auth": "apiKey", "pricing": "free"},
|
|
306
|
+
{"name": "Kraken", "description": "Cryptocurrency exchange API", "category": "Cryptocurrency", "link": "https://docs.kraken.com/rest/", "auth": "apiKey", "pricing": "free"},
|
|
307
|
+
{"name": "Bitfinex", "description": "Cryptocurrency trading platform API", "category": "Cryptocurrency", "link": "https://docs.bitfinex.com/", "auth": "apiKey", "pricing": "free"},
|
|
308
|
+
{"name": "FTX", "description": "Cryptocurrency derivatives exchange", "category": "Cryptocurrency", "link": "https://docs.ftx.com/", "auth": "apiKey", "pricing": "free"},
|
|
309
|
+
{"name": "KuCoin", "description": "Global cryptocurrency exchange", "category": "Cryptocurrency", "link": "https://docs.kucoin.com/", "auth": "apiKey", "pricing": "free"},
|
|
310
|
+
{"name": "Bybit", "description": "Crypto derivatives trading platform", "category": "Cryptocurrency", "link": "https://bybit-exchange.github.io/docs/", "auth": "apiKey", "pricing": "free"},
|
|
311
|
+
{"name": "OKX", "description": "Cryptocurrency trading and Web3 API", "category": "Cryptocurrency", "link": "https://www.okx.com/docs-v5/", "auth": "apiKey", "pricing": "free"},
|
|
312
|
+
{"name": "Gate.io", "description": "Cryptocurrency exchange and trading", "category": "Cryptocurrency", "link": "https://www.gate.io/docs/developers/apiv4/", "auth": "apiKey", "pricing": "free"},
|
|
313
|
+
{"name": "Huobi", "description": "Global digital asset exchange", "category": "Cryptocurrency", "link": "https://huobiapi.github.io/docs/", "auth": "apiKey", "pricing": "free"},
|
|
314
|
+
{"name": "CoinGecko", "description": "Cryptocurrency data aggregator", "category": "Cryptocurrency", "link": "https://www.coingecko.com/en/api/documentation", "auth": "apiKey", "pricing": "freemium"},
|
|
315
|
+
{"name": "CoinMarketCap", "description": "Cryptocurrency market data", "category": "Cryptocurrency", "link": "https://coinmarketcap.com/api/documentation/", "auth": "apiKey", "pricing": "freemium"},
|
|
316
|
+
{"name": "Messari", "description": "Crypto market intelligence", "category": "Cryptocurrency", "link": "https://messari.io/api", "auth": "apiKey", "pricing": "freemium"},
|
|
317
|
+
{"name": "Etherscan", "description": "Ethereum blockchain explorer API", "category": "Cryptocurrency", "link": "https://docs.etherscan.io/", "auth": "apiKey", "pricing": "freemium"},
|
|
318
|
+
{"name": "Alchemy", "description": "Web3 development platform", "category": "Cryptocurrency", "link": "https://docs.alchemy.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
319
|
+
{"name": "Infura", "description": "Ethereum and IPFS API access", "category": "Cryptocurrency", "link": "https://docs.infura.io/", "auth": "apiKey", "pricing": "freemium"},
|
|
320
|
+
{"name": "QuickNode", "description": "Blockchain node infrastructure", "category": "Cryptocurrency", "link": "https://www.quicknode.com/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
321
|
+
{"name": "Moralis", "description": "Web3 data and authentication", "category": "Cryptocurrency", "link": "https://docs.moralis.io/", "auth": "apiKey", "pricing": "freemium"},
|
|
322
|
+
{"name": "The Graph", "description": "Blockchain data indexing protocol", "category": "Cryptocurrency", "link": "https://thegraph.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
323
|
+
{"name": "Chainlink", "description": "Decentralized oracle network", "category": "Cryptocurrency", "link": "https://docs.chain.link/", "auth": "apiKey", "pricing": "paid"},
|
|
324
|
+
{"name": "OpenSea", "description": "NFT marketplace API", "category": "Cryptocurrency", "link": "https://docs.opensea.io/", "auth": "apiKey", "pricing": "freemium"},
|
|
325
|
+
{"name": "Rarible", "description": "NFT marketplace protocol", "category": "Cryptocurrency", "link": "https://docs.rarible.org/", "auth": "apiKey", "pricing": "freemium"},
|
|
326
|
+
{"name": "Uniswap", "description": "Decentralized exchange protocol", "category": "Cryptocurrency", "link": "https://docs.uniswap.org/", "auth": "None", "pricing": "free"},
|
|
327
|
+
{"name": "0x Protocol", "description": "DEX aggregator and liquidity API", "category": "Cryptocurrency", "link": "https://0x.org/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
328
|
+
|
|
329
|
+
# E-Commerce
|
|
330
|
+
{"name": "Shopify", "description": "E-commerce platform API", "category": "E-Commerce", "link": "https://shopify.dev/docs/api", "auth": "OAuth", "pricing": "paid"},
|
|
331
|
+
{"name": "WooCommerce", "description": "WordPress e-commerce plugin API", "category": "E-Commerce", "link": "https://woocommerce.github.io/woocommerce-rest-api-docs/", "auth": "OAuth", "pricing": "free"},
|
|
332
|
+
{"name": "Magento", "description": "Enterprise e-commerce platform", "category": "E-Commerce", "link": "https://devdocs.magento.com/guides/v2.4/rest/bk-rest.html", "auth": "OAuth", "pricing": "freemium"},
|
|
333
|
+
{"name": "BigCommerce", "description": "E-commerce platform for growing brands", "category": "E-Commerce", "link": "https://developer.bigcommerce.com/docs", "auth": "OAuth", "pricing": "paid"},
|
|
334
|
+
{"name": "Salesforce Commerce Cloud", "description": "Enterprise commerce platform", "category": "E-Commerce", "link": "https://developer.salesforce.com/docs/commerce", "auth": "OAuth", "pricing": "paid"},
|
|
335
|
+
{"name": "Amazon Product Advertising", "description": "Amazon product data and affiliate links", "category": "E-Commerce", "link": "https://webservices.amazon.com/paapi5/documentation/", "auth": "apiKey", "pricing": "free"},
|
|
336
|
+
{"name": "Amazon SP-API", "description": "Amazon Selling Partner API", "category": "E-Commerce", "link": "https://developer-docs.amazon.com/sp-api/", "auth": "OAuth", "pricing": "free"},
|
|
337
|
+
{"name": "eBay", "description": "Online marketplace API", "category": "E-Commerce", "link": "https://developer.ebay.com/docs", "auth": "OAuth", "pricing": "free"},
|
|
338
|
+
{"name": "Etsy", "description": "Handmade and vintage marketplace", "category": "E-Commerce", "link": "https://developers.etsy.com/documentation/", "auth": "OAuth", "pricing": "free"},
|
|
339
|
+
{"name": "Printful", "description": "Print-on-demand fulfillment", "category": "E-Commerce", "link": "https://developers.printful.com/docs/", "auth": "apiKey", "pricing": "free"},
|
|
340
|
+
{"name": "Printify", "description": "Print-on-demand product creation", "category": "E-Commerce", "link": "https://developers.printify.com/", "auth": "apiKey", "pricing": "free"},
|
|
341
|
+
{"name": "ShipStation", "description": "Shipping and order fulfillment", "category": "E-Commerce", "link": "https://www.shipstation.com/docs/api/", "auth": "apiKey", "pricing": "paid"},
|
|
342
|
+
{"name": "Shippo", "description": "Multi-carrier shipping API", "category": "E-Commerce", "link": "https://goshippo.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
343
|
+
{"name": "EasyPost", "description": "Shipping logistics API", "category": "E-Commerce", "link": "https://www.easypost.com/docs/api", "auth": "apiKey", "pricing": "freemium"},
|
|
344
|
+
{"name": "Aftership", "description": "Shipment tracking API", "category": "E-Commerce", "link": "https://developers.aftership.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
345
|
+
{"name": "Snipcart", "description": "Shopping cart for developers", "category": "E-Commerce", "link": "https://docs.snipcart.com/v3/api-reference/", "auth": "apiKey", "pricing": "paid"},
|
|
346
|
+
{"name": "Paddle", "description": "SaaS billing and payments", "category": "E-Commerce", "link": "https://developer.paddle.com/", "auth": "apiKey", "pricing": "paid"},
|
|
347
|
+
{"name": "Gumroad", "description": "Creator economy e-commerce", "category": "E-Commerce", "link": "https://app.gumroad.com/api", "auth": "OAuth", "pricing": "free"},
|
|
348
|
+
{"name": "Lemon Squeezy", "description": "Digital product selling platform", "category": "E-Commerce", "link": "https://docs.lemonsqueezy.com/api", "auth": "apiKey", "pricing": "free"},
|
|
349
|
+
|
|
350
|
+
# Communication & Messaging
|
|
351
|
+
{"name": "Twilio", "description": "Cloud communications platform for SMS, voice, video", "category": "Email & Messaging", "link": "https://www.twilio.com/docs/usage/api", "auth": "apiKey", "pricing": "paid"},
|
|
352
|
+
{"name": "Twilio SendGrid", "description": "Email delivery and marketing", "category": "Email & Messaging", "link": "https://docs.sendgrid.com/api-reference", "auth": "apiKey", "pricing": "freemium"},
|
|
353
|
+
{"name": "Mailgun", "description": "Email sending and validation", "category": "Email & Messaging", "link": "https://documentation.mailgun.com/en/latest/api_reference.html", "auth": "apiKey", "pricing": "freemium"},
|
|
354
|
+
{"name": "Mailchimp", "description": "Email marketing platform", "category": "Email & Messaging", "link": "https://mailchimp.com/developer/", "auth": "apiKey", "pricing": "freemium"},
|
|
355
|
+
{"name": "Postmark", "description": "Transactional email service", "category": "Email & Messaging", "link": "https://postmarkapp.com/developer", "auth": "apiKey", "pricing": "paid"},
|
|
356
|
+
{"name": "Amazon SES", "description": "Cloud email sending service", "category": "Email & Messaging", "link": "https://docs.aws.amazon.com/ses/", "auth": "apiKey", "pricing": "paid"},
|
|
357
|
+
{"name": "Resend", "description": "Email API for developers", "category": "Email & Messaging", "link": "https://resend.com/docs/api-reference", "auth": "apiKey", "pricing": "freemium"},
|
|
358
|
+
{"name": "Brevo (Sendinblue)", "description": "Email and marketing automation", "category": "Email & Messaging", "link": "https://developers.brevo.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
359
|
+
{"name": "Customer.io", "description": "Behavioral messaging platform", "category": "Email & Messaging", "link": "https://customer.io/docs/api/", "auth": "apiKey", "pricing": "paid"},
|
|
360
|
+
{"name": "Intercom", "description": "Customer messaging platform", "category": "Email & Messaging", "link": "https://developers.intercom.com/", "auth": "OAuth", "pricing": "paid"},
|
|
361
|
+
{"name": "Zendesk", "description": "Customer service platform", "category": "Email & Messaging", "link": "https://developer.zendesk.com/api-reference/", "auth": "OAuth", "pricing": "paid"},
|
|
362
|
+
{"name": "Freshdesk", "description": "Customer support software", "category": "Email & Messaging", "link": "https://developers.freshdesk.com/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
363
|
+
{"name": "Slack", "description": "Team communication platform", "category": "Email & Messaging", "link": "https://api.slack.com/", "auth": "OAuth", "pricing": "freemium"},
|
|
364
|
+
{"name": "Discord", "description": "Community and gaming chat", "category": "Email & Messaging", "link": "https://discord.com/developers/docs", "auth": "OAuth", "pricing": "free"},
|
|
365
|
+
{"name": "Telegram Bot", "description": "Messaging bot platform", "category": "Email & Messaging", "link": "https://core.telegram.org/bots/api", "auth": "apiKey", "pricing": "free"},
|
|
366
|
+
{"name": "WhatsApp Business", "description": "Business messaging on WhatsApp", "category": "Email & Messaging", "link": "https://developers.facebook.com/docs/whatsapp", "auth": "apiKey", "pricing": "paid"},
|
|
367
|
+
{"name": "MessageBird", "description": "Omnichannel communication platform", "category": "Email & Messaging", "link": "https://developers.messagebird.com/", "auth": "apiKey", "pricing": "paid"},
|
|
368
|
+
{"name": "Vonage (Nexmo)", "description": "Communications APIs for messaging and voice", "category": "Email & Messaging", "link": "https://developer.vonage.com/", "auth": "apiKey", "pricing": "paid"},
|
|
369
|
+
{"name": "Plivo", "description": "Cloud communications for voice and SMS", "category": "Email & Messaging", "link": "https://www.plivo.com/docs/", "auth": "apiKey", "pricing": "paid"},
|
|
370
|
+
{"name": "Telnyx", "description": "Communications platform for voice, messaging, and networking", "category": "Email & Messaging", "link": "https://developers.telnyx.com/", "auth": "apiKey", "pricing": "paid"},
|
|
371
|
+
{"name": "Stream Chat", "description": "In-app messaging infrastructure", "category": "Email & Messaging", "link": "https://getstream.io/chat/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
372
|
+
{"name": "Pusher", "description": "Real-time messaging infrastructure", "category": "Email & Messaging", "link": "https://pusher.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
373
|
+
{"name": "Ably", "description": "Real-time messaging and streaming", "category": "Email & Messaging", "link": "https://ably.com/docs/api", "auth": "apiKey", "pricing": "freemium"},
|
|
374
|
+
{"name": "PubNub", "description": "Real-time communication infrastructure", "category": "Email & Messaging", "link": "https://www.pubnub.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
375
|
+
|
|
376
|
+
# Social Media
|
|
377
|
+
{"name": "Twitter/X API", "description": "Twitter data and posting API", "category": "Social Media", "link": "https://developer.twitter.com/en/docs", "auth": "OAuth", "pricing": "freemium"},
|
|
378
|
+
{"name": "Facebook Graph API", "description": "Facebook data and marketing", "category": "Social Media", "link": "https://developers.facebook.com/docs/graph-api/", "auth": "OAuth", "pricing": "free"},
|
|
379
|
+
{"name": "Instagram Graph API", "description": "Instagram business account access", "category": "Social Media", "link": "https://developers.facebook.com/docs/instagram-api/", "auth": "OAuth", "pricing": "free"},
|
|
380
|
+
{"name": "LinkedIn Marketing", "description": "LinkedIn advertising and analytics", "category": "Social Media", "link": "https://learn.microsoft.com/en-us/linkedin/marketing/", "auth": "OAuth", "pricing": "free"},
|
|
381
|
+
{"name": "TikTok for Business", "description": "TikTok marketing and ads", "category": "Social Media", "link": "https://developers.tiktok.com/", "auth": "OAuth", "pricing": "free"},
|
|
382
|
+
{"name": "YouTube Data API", "description": "YouTube video and channel data", "category": "Social Media", "link": "https://developers.google.com/youtube/v3", "auth": "OAuth", "pricing": "free"},
|
|
383
|
+
{"name": "Pinterest", "description": "Visual discovery platform API", "category": "Social Media", "link": "https://developers.pinterest.com/", "auth": "OAuth", "pricing": "free"},
|
|
384
|
+
{"name": "Reddit", "description": "Social news aggregation API", "category": "Social Media", "link": "https://www.reddit.com/dev/api/", "auth": "OAuth", "pricing": "free"},
|
|
385
|
+
{"name": "Snapchat Marketing", "description": "Snapchat advertising API", "category": "Social Media", "link": "https://developers.snap.com/", "auth": "OAuth", "pricing": "free"},
|
|
386
|
+
{"name": "Threads API", "description": "Meta's Threads platform", "category": "Social Media", "link": "https://developers.facebook.com/docs/threads", "auth": "OAuth", "pricing": "free"},
|
|
387
|
+
{"name": "Mastodon", "description": "Decentralized social network", "category": "Social Media", "link": "https://docs.joinmastodon.org/api/", "auth": "OAuth", "pricing": "free"},
|
|
388
|
+
{"name": "Bluesky", "description": "Decentralized social protocol", "category": "Social Media", "link": "https://docs.bsky.app/", "auth": "apiKey", "pricing": "free"},
|
|
389
|
+
|
|
390
|
+
# Maps & Geolocation
|
|
391
|
+
{"name": "Google Maps Platform", "description": "Maps, routes, and places API", "category": "Maps & Geolocation", "link": "https://developers.google.com/maps", "auth": "apiKey", "pricing": "freemium"},
|
|
392
|
+
{"name": "Google Places", "description": "Place information and search", "category": "Maps & Geolocation", "link": "https://developers.google.com/maps/documentation/places", "auth": "apiKey", "pricing": "paid"},
|
|
393
|
+
{"name": "Google Geocoding", "description": "Address to coordinates conversion", "category": "Maps & Geolocation", "link": "https://developers.google.com/maps/documentation/geocoding", "auth": "apiKey", "pricing": "paid"},
|
|
394
|
+
{"name": "Mapbox", "description": "Maps and location services", "category": "Maps & Geolocation", "link": "https://docs.mapbox.com/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
395
|
+
{"name": "HERE Maps", "description": "Location data and mapping", "category": "Maps & Geolocation", "link": "https://developer.here.com/documentation", "auth": "apiKey", "pricing": "freemium"},
|
|
396
|
+
{"name": "OpenStreetMap", "description": "Open source map data", "category": "Maps & Geolocation", "link": "https://wiki.openstreetmap.org/wiki/API", "auth": "None", "pricing": "free"},
|
|
397
|
+
{"name": "TomTom", "description": "Maps and traffic data", "category": "Maps & Geolocation", "link": "https://developer.tomtom.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
398
|
+
{"name": "Foursquare", "description": "Location data and places API", "category": "Maps & Geolocation", "link": "https://location.foursquare.com/developer/", "auth": "apiKey", "pricing": "freemium"},
|
|
399
|
+
{"name": "What3Words", "description": "Location encoding system", "category": "Maps & Geolocation", "link": "https://developer.what3words.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
400
|
+
{"name": "IPinfo", "description": "IP geolocation and data", "category": "Maps & Geolocation", "link": "https://ipinfo.io/developers", "auth": "apiKey", "pricing": "freemium"},
|
|
401
|
+
{"name": "MaxMind GeoIP", "description": "IP geolocation database", "category": "Maps & Geolocation", "link": "https://dev.maxmind.com/geoip", "auth": "apiKey", "pricing": "freemium"},
|
|
402
|
+
{"name": "IP-API", "description": "Free geolocation API", "category": "Maps & Geolocation", "link": "https://ip-api.com/docs", "auth": "None", "pricing": "freemium"},
|
|
403
|
+
{"name": "Abstract IP Geolocation", "description": "IP to location lookup", "category": "Maps & Geolocation", "link": "https://www.abstractapi.com/api/ip-geolocation-api", "auth": "apiKey", "pricing": "freemium"},
|
|
404
|
+
|
|
405
|
+
# Cloud & Infrastructure
|
|
406
|
+
{"name": "AWS Lambda", "description": "Serverless compute service", "category": "Cloud & Infrastructure", "link": "https://docs.aws.amazon.com/lambda/", "auth": "apiKey", "pricing": "paid"},
|
|
407
|
+
{"name": "AWS S3", "description": "Object storage service", "category": "Cloud & Infrastructure", "link": "https://docs.aws.amazon.com/s3/", "auth": "apiKey", "pricing": "paid"},
|
|
408
|
+
{"name": "AWS EC2", "description": "Elastic compute cloud", "category": "Cloud & Infrastructure", "link": "https://docs.aws.amazon.com/ec2/", "auth": "apiKey", "pricing": "paid"},
|
|
409
|
+
{"name": "AWS DynamoDB", "description": "NoSQL database service", "category": "Cloud & Infrastructure", "link": "https://docs.aws.amazon.com/dynamodb/", "auth": "apiKey", "pricing": "paid"},
|
|
410
|
+
{"name": "AWS SQS", "description": "Message queuing service", "category": "Cloud & Infrastructure", "link": "https://docs.aws.amazon.com/sqs/", "auth": "apiKey", "pricing": "paid"},
|
|
411
|
+
{"name": "AWS SNS", "description": "Push notification service", "category": "Cloud & Infrastructure", "link": "https://docs.aws.amazon.com/sns/", "auth": "apiKey", "pricing": "paid"},
|
|
412
|
+
{"name": "Google Cloud Functions", "description": "Serverless event-driven compute", "category": "Cloud & Infrastructure", "link": "https://cloud.google.com/functions/docs", "auth": "apiKey", "pricing": "paid"},
|
|
413
|
+
{"name": "Google Cloud Storage", "description": "Object storage on GCP", "category": "Cloud & Infrastructure", "link": "https://cloud.google.com/storage/docs", "auth": "apiKey", "pricing": "paid"},
|
|
414
|
+
{"name": "Google Cloud Run", "description": "Managed serverless containers", "category": "Cloud & Infrastructure", "link": "https://cloud.google.com/run/docs", "auth": "apiKey", "pricing": "paid"},
|
|
415
|
+
{"name": "Google BigQuery", "description": "Data warehouse and analytics", "category": "Cloud & Infrastructure", "link": "https://cloud.google.com/bigquery/docs", "auth": "apiKey", "pricing": "paid"},
|
|
416
|
+
{"name": "Azure Functions", "description": "Serverless compute on Azure", "category": "Cloud & Infrastructure", "link": "https://learn.microsoft.com/en-us/azure/azure-functions/", "auth": "apiKey", "pricing": "paid"},
|
|
417
|
+
{"name": "Azure Blob Storage", "description": "Object storage on Azure", "category": "Cloud & Infrastructure", "link": "https://learn.microsoft.com/en-us/azure/storage/blobs/", "auth": "apiKey", "pricing": "paid"},
|
|
418
|
+
{"name": "Cloudflare Workers", "description": "Edge serverless compute", "category": "Cloud & Infrastructure", "link": "https://developers.cloudflare.com/workers/", "auth": "apiKey", "pricing": "freemium"},
|
|
419
|
+
{"name": "Cloudflare R2", "description": "S3-compatible object storage", "category": "Cloud & Infrastructure", "link": "https://developers.cloudflare.com/r2/", "auth": "apiKey", "pricing": "freemium"},
|
|
420
|
+
{"name": "Vercel", "description": "Frontend deployment platform", "category": "Cloud & Infrastructure", "link": "https://vercel.com/docs/rest-api", "auth": "apiKey", "pricing": "freemium"},
|
|
421
|
+
{"name": "Netlify", "description": "Web deployment and hosting", "category": "Cloud & Infrastructure", "link": "https://docs.netlify.com/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
422
|
+
{"name": "Railway", "description": "Infrastructure deployment platform", "category": "Cloud & Infrastructure", "link": "https://docs.railway.app/reference/public-api", "auth": "apiKey", "pricing": "freemium"},
|
|
423
|
+
{"name": "Render", "description": "Cloud application hosting", "category": "Cloud & Infrastructure", "link": "https://render.com/docs/api", "auth": "apiKey", "pricing": "freemium"},
|
|
424
|
+
{"name": "Fly.io", "description": "App deployment close to users", "category": "Cloud & Infrastructure", "link": "https://fly.io/docs/reference/", "auth": "apiKey", "pricing": "freemium"},
|
|
425
|
+
{"name": "DigitalOcean", "description": "Cloud infrastructure provider", "category": "Cloud & Infrastructure", "link": "https://docs.digitalocean.com/reference/api/", "auth": "apiKey", "pricing": "paid"},
|
|
426
|
+
{"name": "Linode", "description": "Cloud computing provider", "category": "Cloud & Infrastructure", "link": "https://www.linode.com/docs/api/", "auth": "apiKey", "pricing": "paid"},
|
|
427
|
+
{"name": "Vultr", "description": "Cloud compute and storage", "category": "Cloud & Infrastructure", "link": "https://www.vultr.com/api/", "auth": "apiKey", "pricing": "paid"},
|
|
428
|
+
{"name": "Heroku", "description": "Platform as a service", "category": "Cloud & Infrastructure", "link": "https://devcenter.heroku.com/articles/platform-api-reference", "auth": "apiKey", "pricing": "freemium"},
|
|
429
|
+
{"name": "Deno Deploy", "description": "Edge-native serverless", "category": "Cloud & Infrastructure", "link": "https://deno.com/deploy/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
430
|
+
{"name": "Supabase", "description": "Open source Firebase alternative", "category": "Cloud & Infrastructure", "link": "https://supabase.com/docs/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
431
|
+
{"name": "Firebase", "description": "App development platform by Google", "category": "Cloud & Infrastructure", "link": "https://firebase.google.com/docs/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
432
|
+
{"name": "PlanetScale", "description": "Serverless MySQL platform", "category": "Cloud & Infrastructure", "link": "https://planetscale.com/docs/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
433
|
+
{"name": "Neon", "description": "Serverless Postgres", "category": "Cloud & Infrastructure", "link": "https://neon.tech/docs/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
434
|
+
{"name": "Upstash", "description": "Serverless Redis and Kafka", "category": "Cloud & Infrastructure", "link": "https://upstash.com/docs/redis", "auth": "apiKey", "pricing": "freemium"},
|
|
435
|
+
{"name": "Convex", "description": "Backend application platform", "category": "Cloud & Infrastructure", "link": "https://docs.convex.dev/api", "auth": "apiKey", "pricing": "freemium"},
|
|
436
|
+
|
|
437
|
+
# Developer Tools
|
|
438
|
+
{"name": "GitHub", "description": "Code hosting and collaboration", "category": "Developer Tools", "link": "https://docs.github.com/en/rest", "auth": "OAuth", "pricing": "freemium"},
|
|
439
|
+
{"name": "GitLab", "description": "DevOps platform", "category": "Developer Tools", "link": "https://docs.gitlab.com/ee/api/", "auth": "OAuth", "pricing": "freemium"},
|
|
440
|
+
{"name": "Bitbucket", "description": "Git code management", "category": "Developer Tools", "link": "https://developer.atlassian.com/cloud/bitbucket/rest/intro/", "auth": "OAuth", "pricing": "freemium"},
|
|
441
|
+
{"name": "Jira", "description": "Project management and issue tracking", "category": "Developer Tools", "link": "https://developer.atlassian.com/cloud/jira/platform/rest/v3/", "auth": "OAuth", "pricing": "freemium"},
|
|
442
|
+
{"name": "Confluence", "description": "Team documentation wiki", "category": "Developer Tools", "link": "https://developer.atlassian.com/cloud/confluence/rest/v1/", "auth": "OAuth", "pricing": "freemium"},
|
|
443
|
+
{"name": "Linear", "description": "Project management for software teams", "category": "Developer Tools", "link": "https://developers.linear.app/docs", "auth": "OAuth", "pricing": "freemium"},
|
|
444
|
+
{"name": "Notion", "description": "Workspace and documentation", "category": "Developer Tools", "link": "https://developers.notion.com/", "auth": "OAuth", "pricing": "freemium"},
|
|
445
|
+
{"name": "Airtable", "description": "Spreadsheet-database hybrid", "category": "Developer Tools", "link": "https://airtable.com/developers/web/api/introduction", "auth": "apiKey", "pricing": "freemium"},
|
|
446
|
+
{"name": "Trello", "description": "Kanban project management", "category": "Developer Tools", "link": "https://developer.atlassian.com/cloud/trello/rest/", "auth": "apiKey", "pricing": "freemium"},
|
|
447
|
+
{"name": "Asana", "description": "Work management platform", "category": "Developer Tools", "link": "https://developers.asana.com/reference", "auth": "OAuth", "pricing": "freemium"},
|
|
448
|
+
{"name": "Monday.com", "description": "Work operating system", "category": "Developer Tools", "link": "https://developer.monday.com/api-reference/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
449
|
+
{"name": "ClickUp", "description": "Productivity platform", "category": "Developer Tools", "link": "https://clickup.com/api/", "auth": "OAuth", "pricing": "freemium"},
|
|
450
|
+
{"name": "Figma", "description": "Design and prototyping tool", "category": "Developer Tools", "link": "https://www.figma.com/developers/api", "auth": "OAuth", "pricing": "freemium"},
|
|
451
|
+
{"name": "Sentry", "description": "Error tracking and monitoring", "category": "Developer Tools", "link": "https://docs.sentry.io/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
452
|
+
{"name": "Datadog", "description": "Monitoring and security platform", "category": "Developer Tools", "link": "https://docs.datadoghq.com/api/", "auth": "apiKey", "pricing": "paid"},
|
|
453
|
+
{"name": "New Relic", "description": "Application performance monitoring", "category": "Developer Tools", "link": "https://docs.newrelic.com/docs/apis/", "auth": "apiKey", "pricing": "freemium"},
|
|
454
|
+
{"name": "PagerDuty", "description": "Incident management", "category": "Developer Tools", "link": "https://developer.pagerduty.com/api-reference/", "auth": "apiKey", "pricing": "paid"},
|
|
455
|
+
{"name": "CircleCI", "description": "Continuous integration and delivery", "category": "Developer Tools", "link": "https://circleci.com/docs/api/v2/", "auth": "apiKey", "pricing": "freemium"},
|
|
456
|
+
{"name": "Travis CI", "description": "Hosted CI service", "category": "Developer Tools", "link": "https://docs.travis-ci.com/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
457
|
+
{"name": "GitHub Actions", "description": "CI/CD workflows on GitHub", "category": "Developer Tools", "link": "https://docs.github.com/en/rest/actions", "auth": "OAuth", "pricing": "freemium"},
|
|
458
|
+
{"name": "npm", "description": "Node package registry", "category": "Developer Tools", "link": "https://github.com/npm/registry/blob/master/docs/REGISTRY-API.md", "auth": "apiKey", "pricing": "freemium"},
|
|
459
|
+
{"name": "PyPI", "description": "Python package index", "category": "Developer Tools", "link": "https://warehouse.pypa.io/api-reference/", "auth": "None", "pricing": "free"},
|
|
460
|
+
{"name": "Docker Hub", "description": "Container image registry", "category": "Developer Tools", "link": "https://docs.docker.com/docker-hub/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
461
|
+
{"name": "Terraform Cloud", "description": "Infrastructure as code platform", "category": "Developer Tools", "link": "https://developer.hashicorp.com/terraform/cloud-docs/api-docs", "auth": "apiKey", "pricing": "freemium"},
|
|
462
|
+
{"name": "LaunchDarkly", "description": "Feature flag management", "category": "Developer Tools", "link": "https://apidocs.launchdarkly.com/", "auth": "apiKey", "pricing": "paid"},
|
|
463
|
+
{"name": "Segment", "description": "Customer data platform", "category": "Developer Tools", "link": "https://segment.com/docs/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
464
|
+
{"name": "Amplitude", "description": "Product analytics", "category": "Developer Tools", "link": "https://developers.amplitude.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
465
|
+
{"name": "Mixpanel", "description": "User analytics platform", "category": "Developer Tools", "link": "https://developer.mixpanel.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
466
|
+
{"name": "PostHog", "description": "Open source product analytics", "category": "Developer Tools", "link": "https://posthog.com/docs/api", "auth": "apiKey", "pricing": "freemium"},
|
|
467
|
+
{"name": "Hotjar", "description": "Behavior analytics and feedback", "category": "Developer Tools", "link": "https://help.hotjar.com/hc/en-us/articles/115011867568", "auth": "apiKey", "pricing": "freemium"},
|
|
468
|
+
|
|
469
|
+
# CRM & Sales
|
|
470
|
+
{"name": "Salesforce", "description": "Enterprise CRM platform", "category": "CRM & Sales", "link": "https://developer.salesforce.com/docs/apis", "auth": "OAuth", "pricing": "paid"},
|
|
471
|
+
{"name": "HubSpot", "description": "CRM, marketing, and sales platform", "category": "CRM & Sales", "link": "https://developers.hubspot.com/docs/api/overview", "auth": "OAuth", "pricing": "freemium"},
|
|
472
|
+
{"name": "Pipedrive", "description": "Sales CRM and pipeline management", "category": "CRM & Sales", "link": "https://developers.pipedrive.com/docs/api/v1", "auth": "apiKey", "pricing": "paid"},
|
|
473
|
+
{"name": "Zoho CRM", "description": "Customer relationship management", "category": "CRM & Sales", "link": "https://www.zoho.com/crm/developer/docs/api/v5/", "auth": "OAuth", "pricing": "freemium"},
|
|
474
|
+
{"name": "Close", "description": "Sales CRM for startups", "category": "CRM & Sales", "link": "https://developer.close.com/", "auth": "apiKey", "pricing": "paid"},
|
|
475
|
+
{"name": "Copper", "description": "CRM for Google Workspace", "category": "CRM & Sales", "link": "https://developer.copper.com/", "auth": "apiKey", "pricing": "paid"},
|
|
476
|
+
{"name": "Freshsales", "description": "Sales CRM software", "category": "CRM & Sales", "link": "https://developers.freshsales.io/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
477
|
+
{"name": "Apollo.io", "description": "Sales intelligence and engagement", "category": "CRM & Sales", "link": "https://apolloio.github.io/apollo-api-docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
478
|
+
{"name": "Clearbit", "description": "B2B data enrichment", "category": "CRM & Sales", "link": "https://dashboard.clearbit.com/docs", "auth": "apiKey", "pricing": "paid"},
|
|
479
|
+
{"name": "ZoomInfo", "description": "B2B contact database", "category": "CRM & Sales", "link": "https://api-docs.zoominfo.com/", "auth": "apiKey", "pricing": "paid"},
|
|
480
|
+
{"name": "LinkedIn Sales Navigator", "description": "Sales prospecting tool", "category": "CRM & Sales", "link": "https://learn.microsoft.com/en-us/linkedin/sales/", "auth": "OAuth", "pricing": "paid"},
|
|
481
|
+
{"name": "Outreach", "description": "Sales engagement platform", "category": "CRM & Sales", "link": "https://api.outreach.io/api/v2/docs", "auth": "OAuth", "pricing": "paid"},
|
|
482
|
+
{"name": "SalesLoft", "description": "Sales engagement and automation", "category": "CRM & Sales", "link": "https://developers.salesloft.com/api.html", "auth": "OAuth", "pricing": "paid"},
|
|
483
|
+
{"name": "Gong", "description": "Revenue intelligence platform", "category": "CRM & Sales", "link": "https://gong.io/api/", "auth": "apiKey", "pricing": "paid"},
|
|
484
|
+
{"name": "Drift", "description": "Conversational marketing", "category": "CRM & Sales", "link": "https://devdocs.drift.com/docs", "auth": "OAuth", "pricing": "freemium"},
|
|
485
|
+
|
|
486
|
+
# Search & Data
|
|
487
|
+
{"name": "Algolia", "description": "Search and discovery API", "category": "Search", "link": "https://www.algolia.com/doc/rest-api/search/", "auth": "apiKey", "pricing": "freemium"},
|
|
488
|
+
{"name": "Elasticsearch", "description": "Distributed search and analytics", "category": "Search", "link": "https://www.elastic.co/guide/en/elasticsearch/reference/current/rest-apis.html", "auth": "apiKey", "pricing": "freemium"},
|
|
489
|
+
{"name": "Meilisearch", "description": "Open source search engine", "category": "Search", "link": "https://www.meilisearch.com/docs/reference/api/overview", "auth": "apiKey", "pricing": "freemium"},
|
|
490
|
+
{"name": "Typesense", "description": "Fast, typo-tolerant search", "category": "Search", "link": "https://typesense.org/docs/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
491
|
+
{"name": "Pinecone", "description": "Vector database for AI", "category": "Search", "link": "https://docs.pinecone.io/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
492
|
+
{"name": "Weaviate", "description": "Vector search engine", "category": "Search", "link": "https://weaviate.io/developers/weaviate/api", "auth": "apiKey", "pricing": "freemium"},
|
|
493
|
+
{"name": "Qdrant", "description": "Vector similarity search", "category": "Search", "link": "https://qdrant.tech/documentation/", "auth": "apiKey", "pricing": "freemium"},
|
|
494
|
+
{"name": "Chroma", "description": "AI-native embedding database", "category": "Search", "link": "https://docs.trychroma.com/", "auth": "None", "pricing": "free"},
|
|
495
|
+
{"name": "SerpApi", "description": "Search engine results API", "category": "Search", "link": "https://serpapi.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
496
|
+
{"name": "Brave Search", "description": "Privacy-focused search API", "category": "Search", "link": "https://brave.com/search/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
497
|
+
{"name": "Bing Search", "description": "Microsoft's search API", "category": "Search", "link": "https://www.microsoft.com/en-us/bing/apis/bing-web-search-api", "auth": "apiKey", "pricing": "freemium"},
|
|
498
|
+
{"name": "Google Custom Search", "description": "Programmable search engine", "category": "Search", "link": "https://developers.google.com/custom-search/v1/introduction", "auth": "apiKey", "pricing": "freemium"},
|
|
499
|
+
|
|
500
|
+
# Media & Content
|
|
501
|
+
{"name": "Cloudinary", "description": "Image and video management", "category": "Images & Media", "link": "https://cloudinary.com/documentation/cloudinary_sdks", "auth": "apiKey", "pricing": "freemium"},
|
|
502
|
+
{"name": "Imgix", "description": "Real-time image processing", "category": "Images & Media", "link": "https://docs.imgix.com/apis", "auth": "apiKey", "pricing": "paid"},
|
|
503
|
+
{"name": "ImageKit", "description": "Image CDN and optimization", "category": "Images & Media", "link": "https://docs.imagekit.io/api-reference", "auth": "apiKey", "pricing": "freemium"},
|
|
504
|
+
{"name": "Uploadcare", "description": "File upload and delivery", "category": "Images & Media", "link": "https://uploadcare.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
505
|
+
{"name": "Filestack", "description": "File upload and transformation", "category": "Images & Media", "link": "https://www.filestack.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
506
|
+
{"name": "Remove.bg", "description": "Remove image backgrounds", "category": "Images & Media", "link": "https://www.remove.bg/api", "auth": "apiKey", "pricing": "freemium"},
|
|
507
|
+
{"name": "TinyPNG", "description": "Image compression API", "category": "Images & Media", "link": "https://tinypng.com/developers/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
508
|
+
{"name": "Unsplash", "description": "Free high-resolution photos", "category": "Images & Media", "link": "https://unsplash.com/documentation", "auth": "apiKey", "pricing": "free"},
|
|
509
|
+
{"name": "Pexels", "description": "Free stock photos and videos", "category": "Images & Media", "link": "https://www.pexels.com/api/documentation/", "auth": "apiKey", "pricing": "free"},
|
|
510
|
+
{"name": "Giphy", "description": "GIF search and sharing", "category": "Images & Media", "link": "https://developers.giphy.com/docs/api/", "auth": "apiKey", "pricing": "free"},
|
|
511
|
+
{"name": "Mux", "description": "Video streaming infrastructure", "category": "Video & Streaming", "link": "https://docs.mux.com/api-reference", "auth": "apiKey", "pricing": "paid"},
|
|
512
|
+
{"name": "api.video", "description": "Video hosting and streaming", "category": "Video & Streaming", "link": "https://docs.api.video/reference/", "auth": "apiKey", "pricing": "freemium"},
|
|
513
|
+
{"name": "Cloudflare Stream", "description": "Video streaming at scale", "category": "Video & Streaming", "link": "https://developers.cloudflare.com/stream/", "auth": "apiKey", "pricing": "paid"},
|
|
514
|
+
{"name": "Vimeo", "description": "Video hosting platform", "category": "Video & Streaming", "link": "https://developer.vimeo.com/api/reference", "auth": "OAuth", "pricing": "freemium"},
|
|
515
|
+
{"name": "Wistia", "description": "Video marketing platform", "category": "Video & Streaming", "link": "https://wistia.com/support/developers", "auth": "apiKey", "pricing": "freemium"},
|
|
516
|
+
{"name": "JW Player", "description": "Video player and hosting", "category": "Video & Streaming", "link": "https://developer.jwplayer.com/", "auth": "apiKey", "pricing": "paid"},
|
|
517
|
+
{"name": "Brightcove", "description": "Video technology platform", "category": "Video & Streaming", "link": "https://apis.support.brightcove.com/", "auth": "OAuth", "pricing": "paid"},
|
|
518
|
+
{"name": "Spotify", "description": "Music streaming platform", "category": "Music & Audio", "link": "https://developer.spotify.com/documentation/web-api", "auth": "OAuth", "pricing": "free"},
|
|
519
|
+
{"name": "SoundCloud", "description": "Audio platform and sharing", "category": "Music & Audio", "link": "https://developers.soundcloud.com/docs/api/reference", "auth": "OAuth", "pricing": "freemium"},
|
|
520
|
+
{"name": "Deezer", "description": "Music streaming service", "category": "Music & Audio", "link": "https://developers.deezer.com/api", "auth": "OAuth", "pricing": "free"},
|
|
521
|
+
{"name": "Last.fm", "description": "Music discovery and scrobbling", "category": "Music & Audio", "link": "https://www.last.fm/api", "auth": "apiKey", "pricing": "free"},
|
|
522
|
+
{"name": "Genius", "description": "Song lyrics and annotations", "category": "Music & Audio", "link": "https://docs.genius.com/", "auth": "OAuth", "pricing": "free"},
|
|
523
|
+
{"name": "Shazam", "description": "Music recognition", "category": "Music & Audio", "link": "https://rapidapi.com/apidojo/api/shazam/", "auth": "apiKey", "pricing": "freemium"},
|
|
524
|
+
|
|
525
|
+
# Auth & Security
|
|
526
|
+
{"name": "Auth0", "description": "Identity and authentication platform", "category": "Security & Authentication", "link": "https://auth0.com/docs/api", "auth": "OAuth", "pricing": "freemium"},
|
|
527
|
+
{"name": "Okta", "description": "Enterprise identity management", "category": "Security & Authentication", "link": "https://developer.okta.com/docs/reference/", "auth": "apiKey", "pricing": "paid"},
|
|
528
|
+
{"name": "Clerk", "description": "User authentication for developers", "category": "Security & Authentication", "link": "https://clerk.com/docs/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
529
|
+
{"name": "Supabase Auth", "description": "Authentication service", "category": "Security & Authentication", "link": "https://supabase.com/docs/reference/javascript/auth-signup", "auth": "apiKey", "pricing": "freemium"},
|
|
530
|
+
{"name": "Firebase Auth", "description": "User authentication by Google", "category": "Security & Authentication", "link": "https://firebase.google.com/docs/auth", "auth": "apiKey", "pricing": "freemium"},
|
|
531
|
+
{"name": "AWS Cognito", "description": "User identity and access management", "category": "Security & Authentication", "link": "https://docs.aws.amazon.com/cognito/", "auth": "apiKey", "pricing": "freemium"},
|
|
532
|
+
{"name": "Stytch", "description": "Passwordless authentication", "category": "Security & Authentication", "link": "https://stytch.com/docs/api", "auth": "apiKey", "pricing": "freemium"},
|
|
533
|
+
{"name": "WorkOS", "description": "Enterprise SSO and directory sync", "category": "Security & Authentication", "link": "https://workos.com/docs/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
534
|
+
{"name": "FusionAuth", "description": "Authentication for developers", "category": "Security & Authentication", "link": "https://fusionauth.io/docs/apis/", "auth": "apiKey", "pricing": "freemium"},
|
|
535
|
+
{"name": "Keycloak", "description": "Open source identity management", "category": "Security & Authentication", "link": "https://www.keycloak.org/docs/latest/server_development/", "auth": "OAuth", "pricing": "free"},
|
|
536
|
+
{"name": "OneLogin", "description": "Identity access management", "category": "Security & Authentication", "link": "https://developers.onelogin.com/", "auth": "OAuth", "pricing": "paid"},
|
|
537
|
+
{"name": "1Password Connect", "description": "Secrets management API", "category": "Security & Authentication", "link": "https://developer.1password.com/docs/connect/", "auth": "apiKey", "pricing": "paid"},
|
|
538
|
+
{"name": "HashiCorp Vault", "description": "Secrets management", "category": "Security & Authentication", "link": "https://developer.hashicorp.com/vault/api-docs", "auth": "apiKey", "pricing": "freemium"},
|
|
539
|
+
{"name": "Doppler", "description": "Secrets management platform", "category": "Security & Authentication", "link": "https://docs.doppler.com/reference/api", "auth": "apiKey", "pricing": "freemium"},
|
|
540
|
+
{"name": "reCAPTCHA", "description": "Bot protection by Google", "category": "Security & Authentication", "link": "https://developers.google.com/recaptcha/docs/v3", "auth": "apiKey", "pricing": "freemium"},
|
|
541
|
+
{"name": "hCaptcha", "description": "Bot protection alternative", "category": "Security & Authentication", "link": "https://docs.hcaptcha.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
542
|
+
{"name": "Turnstile", "description": "Cloudflare's CAPTCHA alternative", "category": "Security & Authentication", "link": "https://developers.cloudflare.com/turnstile/", "auth": "apiKey", "pricing": "free"},
|
|
543
|
+
{"name": "Have I Been Pwned", "description": "Data breach checking", "category": "Security & Authentication", "link": "https://haveibeenpwned.com/API/v3", "auth": "apiKey", "pricing": "freemium"},
|
|
544
|
+
|
|
545
|
+
# Weather & Environment
|
|
546
|
+
{"name": "OpenWeatherMap", "description": "Weather data and forecasts", "category": "Weather", "link": "https://openweathermap.org/api", "auth": "apiKey", "pricing": "freemium"},
|
|
547
|
+
{"name": "Weather API", "description": "Real-time weather data", "category": "Weather", "link": "https://www.weatherapi.com/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
548
|
+
{"name": "Tomorrow.io", "description": "Weather intelligence platform", "category": "Weather", "link": "https://docs.tomorrow.io/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
549
|
+
{"name": "AccuWeather", "description": "Weather forecasting service", "category": "Weather", "link": "https://developer.accuweather.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
550
|
+
{"name": "Visual Crossing", "description": "Weather data and history", "category": "Weather", "link": "https://www.visualcrossing.com/resources/documentation/", "auth": "apiKey", "pricing": "freemium"},
|
|
551
|
+
{"name": "Meteomatics", "description": "Weather data platform", "category": "Weather", "link": "https://www.meteomatics.com/en/api/overview/", "auth": "apiKey", "pricing": "paid"},
|
|
552
|
+
{"name": "Stormglass", "description": "Marine weather data", "category": "Weather", "link": "https://docs.stormglass.io/", "auth": "apiKey", "pricing": "freemium"},
|
|
553
|
+
{"name": "AirVisual", "description": "Air quality data", "category": "Weather", "link": "https://api-docs.iqair.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
554
|
+
{"name": "OpenAQ", "description": "Open air quality data", "category": "Weather", "link": "https://docs.openaq.org/", "auth": "None", "pricing": "free"},
|
|
555
|
+
{"name": "AQI.in", "description": "World air quality index", "category": "Weather", "link": "https://aqicn.org/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
556
|
+
|
|
557
|
+
# Travel & Transportation
|
|
558
|
+
{"name": "Amadeus", "description": "Travel booking and data", "category": "Travel & Transportation", "link": "https://developers.amadeus.com/self-service", "auth": "apiKey", "pricing": "freemium"},
|
|
559
|
+
{"name": "Skyscanner", "description": "Flight search engine", "category": "Travel & Transportation", "link": "https://developers.skyscanner.net/docs", "auth": "apiKey", "pricing": "free"},
|
|
560
|
+
{"name": "Booking.com", "description": "Hotel booking API", "category": "Travel & Transportation", "link": "https://developers.booking.com/", "auth": "apiKey", "pricing": "free"},
|
|
561
|
+
{"name": "Expedia", "description": "Travel booking platform", "category": "Travel & Transportation", "link": "https://developers.expediagroup.com/", "auth": "apiKey", "pricing": "free"},
|
|
562
|
+
{"name": "Airbnb", "description": "Vacation rental platform", "category": "Travel & Transportation", "link": "https://www.airbnb.com/partner", "auth": "OAuth", "pricing": "free"},
|
|
563
|
+
{"name": "FlightAware", "description": "Flight tracking data", "category": "Travel & Transportation", "link": "https://flightaware.com/commercial/aeroapi/", "auth": "apiKey", "pricing": "freemium"},
|
|
564
|
+
{"name": "AviationStack", "description": "Real-time flight data", "category": "Travel & Transportation", "link": "https://aviationstack.com/documentation", "auth": "apiKey", "pricing": "freemium"},
|
|
565
|
+
{"name": "AeroDataBox", "description": "Aviation database API", "category": "Travel & Transportation", "link": "https://www.aerodatabox.com/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
566
|
+
{"name": "OpenSky Network", "description": "Flight tracking network", "category": "Travel & Transportation", "link": "https://openskynetwork.github.io/opensky-api/", "auth": "None", "pricing": "free"},
|
|
567
|
+
{"name": "Uber", "description": "Ride-hailing platform", "category": "Travel & Transportation", "link": "https://developer.uber.com/docs/", "auth": "OAuth", "pricing": "free"},
|
|
568
|
+
{"name": "Lyft", "description": "Ride-sharing service", "category": "Travel & Transportation", "link": "https://developer.lyft.com/docs/", "auth": "OAuth", "pricing": "free"},
|
|
569
|
+
{"name": "Citymapper", "description": "Urban mobility routing", "category": "Travel & Transportation", "link": "https://citymapper.com/tools/api", "auth": "apiKey", "pricing": "paid"},
|
|
570
|
+
{"name": "Rome2Rio", "description": "Multi-modal travel search", "category": "Travel & Transportation", "link": "https://www.rome2rio.com/documentation/", "auth": "apiKey", "pricing": "paid"},
|
|
571
|
+
{"name": "Transitland", "description": "Transit data aggregator", "category": "Travel & Transportation", "link": "https://www.transit.land/documentation", "auth": "None", "pricing": "free"},
|
|
572
|
+
{"name": "GTFS", "description": "General transit feed specification", "category": "Travel & Transportation", "link": "https://gtfs.org/documentation/", "auth": "None", "pricing": "free"},
|
|
573
|
+
|
|
574
|
+
# Food & Recipes
|
|
575
|
+
{"name": "Spoonacular", "description": "Recipe and food database", "category": "Food & Recipes", "link": "https://spoonacular.com/food-api/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
576
|
+
{"name": "Edamam", "description": "Food and nutrition data", "category": "Food & Recipes", "link": "https://developer.edamam.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
577
|
+
{"name": "TheMealDB", "description": "Open meal database", "category": "Food & Recipes", "link": "https://www.themealdb.com/api.php", "auth": "apiKey", "pricing": "freemium"},
|
|
578
|
+
{"name": "Nutritionix", "description": "Nutrition database", "category": "Food & Recipes", "link": "https://www.nutritionix.com/business/api", "auth": "apiKey", "pricing": "freemium"},
|
|
579
|
+
{"name": "Open Food Facts", "description": "Food products database", "category": "Food & Recipes", "link": "https://world.openfoodfacts.org/data", "auth": "None", "pricing": "free"},
|
|
580
|
+
{"name": "Yelp Fusion", "description": "Local business and restaurant data", "category": "Food & Recipes", "link": "https://docs.developer.yelp.com/docs/fusion-intro", "auth": "apiKey", "pricing": "free"},
|
|
581
|
+
{"name": "Zomato", "description": "Restaurant discovery", "category": "Food & Recipes", "link": "https://developers.zomato.com/api", "auth": "apiKey", "pricing": "free"},
|
|
582
|
+
{"name": "DoorDash", "description": "Food delivery platform", "category": "Food & Recipes", "link": "https://developer.doordash.com/", "auth": "apiKey", "pricing": "free"},
|
|
583
|
+
{"name": "Uber Eats", "description": "Food delivery service", "category": "Food & Recipes", "link": "https://developer.uber.com/docs/eats", "auth": "OAuth", "pricing": "free"},
|
|
584
|
+
{"name": "Instacart", "description": "Grocery delivery API", "category": "Food & Recipes", "link": "https://docs.instacart.com/", "auth": "apiKey", "pricing": "free"},
|
|
585
|
+
|
|
586
|
+
# News & Media
|
|
587
|
+
{"name": "News API", "description": "News articles aggregator", "category": "News & Media", "link": "https://newsapi.org/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
588
|
+
{"name": "GNews", "description": "Google News API alternative", "category": "News & Media", "link": "https://gnews.io/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
589
|
+
{"name": "Currents API", "description": "News aggregation service", "category": "News & Media", "link": "https://currentsapi.services/en/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
590
|
+
{"name": "MediaStack", "description": "Real-time news data", "category": "News & Media", "link": "https://mediastack.com/documentation", "auth": "apiKey", "pricing": "freemium"},
|
|
591
|
+
{"name": "New York Times", "description": "NYT articles and archives", "category": "News & Media", "link": "https://developer.nytimes.com/apis", "auth": "apiKey", "pricing": "freemium"},
|
|
592
|
+
{"name": "The Guardian", "description": "Guardian content API", "category": "News & Media", "link": "https://open-platform.theguardian.com/documentation/", "auth": "apiKey", "pricing": "freemium"},
|
|
593
|
+
{"name": "Associated Press", "description": "AP news content", "category": "News & Media", "link": "https://developer.ap.org/", "auth": "apiKey", "pricing": "paid"},
|
|
594
|
+
{"name": "Reuters", "description": "Reuters news content", "category": "News & Media", "link": "https://www.reuters.com/tools/", "auth": "apiKey", "pricing": "paid"},
|
|
595
|
+
|
|
596
|
+
# Sports
|
|
597
|
+
{"name": "ESPN", "description": "Sports data and content", "category": "Sports", "link": "https://gist.github.com/akeaswaran/b48b02f1c94f873c6655e7129910fc3b", "auth": "None", "pricing": "free"},
|
|
598
|
+
{"name": "SportRadar", "description": "Comprehensive sports data", "category": "Sports", "link": "https://developer.sportradar.com/", "auth": "apiKey", "pricing": "paid"},
|
|
599
|
+
{"name": "API-Football", "description": "Football/soccer data", "category": "Sports", "link": "https://www.api-football.com/documentation-v3", "auth": "apiKey", "pricing": "freemium"},
|
|
600
|
+
{"name": "NBA API", "description": "NBA statistics data", "category": "Sports", "link": "https://github.com/swar/nba_api", "auth": "None", "pricing": "free"},
|
|
601
|
+
{"name": "MLB-StatsAPI", "description": "Major League Baseball data", "category": "Sports", "link": "https://github.com/toddrob99/MLB-StatsAPI", "auth": "None", "pricing": "free"},
|
|
602
|
+
{"name": "NHL API", "description": "National Hockey League data", "category": "Sports", "link": "https://gitlab.com/dword4/nhlapi", "auth": "None", "pricing": "free"},
|
|
603
|
+
{"name": "TheSportsDB", "description": "Open sports database", "category": "Sports", "link": "https://www.thesportsdb.com/api.php", "auth": "apiKey", "pricing": "freemium"},
|
|
604
|
+
{"name": "Football-Data.org", "description": "European football data", "category": "Sports", "link": "https://www.football-data.org/documentation", "auth": "apiKey", "pricing": "freemium"},
|
|
605
|
+
{"name": "Odds API", "description": "Sports betting odds", "category": "Sports", "link": "https://the-odds-api.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
606
|
+
{"name": "Strava", "description": "Fitness tracking platform", "category": "Sports", "link": "https://developers.strava.com/docs/reference/", "auth": "OAuth", "pricing": "free"},
|
|
607
|
+
|
|
608
|
+
# Gaming
|
|
609
|
+
{"name": "Steam", "description": "Gaming platform API", "category": "Games & Entertainment", "link": "https://developer.valvesoftware.com/wiki/Steam_Web_API", "auth": "apiKey", "pricing": "free"},
|
|
610
|
+
{"name": "Twitch", "description": "Live streaming platform", "category": "Games & Entertainment", "link": "https://dev.twitch.tv/docs/api/reference", "auth": "OAuth", "pricing": "free"},
|
|
611
|
+
{"name": "RAWG", "description": "Video games database", "category": "Games & Entertainment", "link": "https://rawg.io/apidocs", "auth": "apiKey", "pricing": "freemium"},
|
|
612
|
+
{"name": "IGDB", "description": "Internet Games Database", "category": "Games & Entertainment", "link": "https://api-docs.igdb.com/", "auth": "apiKey", "pricing": "free"},
|
|
613
|
+
{"name": "GiantBomb", "description": "Video games encyclopedia", "category": "Games & Entertainment", "link": "https://www.giantbomb.com/api/documentation/", "auth": "apiKey", "pricing": "free"},
|
|
614
|
+
{"name": "Epic Games", "description": "Epic Games Store API", "category": "Games & Entertainment", "link": "https://dev.epicgames.com/docs/", "auth": "OAuth", "pricing": "free"},
|
|
615
|
+
{"name": "Riot Games", "description": "League of Legends and Valorant data", "category": "Games & Entertainment", "link": "https://developer.riotgames.com/apis", "auth": "apiKey", "pricing": "free"},
|
|
616
|
+
{"name": "Blizzard", "description": "Blizzard games API", "category": "Games & Entertainment", "link": "https://develop.battle.net/documentation", "auth": "OAuth", "pricing": "free"},
|
|
617
|
+
{"name": "Xbox Live", "description": "Xbox gaming services", "category": "Games & Entertainment", "link": "https://docs.microsoft.com/en-us/gaming/xbox-live/", "auth": "OAuth", "pricing": "free"},
|
|
618
|
+
{"name": "PlayStation Network", "description": "PlayStation gaming services", "category": "Games & Entertainment", "link": "https://andshrew.github.io/PlayStation-Trophies/", "auth": "OAuth", "pricing": "free"},
|
|
619
|
+
{"name": "Pokemon TCG", "description": "Pokemon trading card game", "category": "Games & Entertainment", "link": "https://docs.pokemontcg.io/", "auth": "None", "pricing": "free"},
|
|
620
|
+
{"name": "Hearthstone", "description": "Hearthstone card data", "category": "Games & Entertainment", "link": "https://rapidapi.com/omgvamp/api/hearthstone/", "auth": "apiKey", "pricing": "freemium"},
|
|
621
|
+
{"name": "Magic: The Gathering", "description": "MTG card database", "category": "Games & Entertainment", "link": "https://docs.magicthegathering.io/", "auth": "None", "pricing": "free"},
|
|
622
|
+
{"name": "Chess.com", "description": "Chess platform data", "category": "Games & Entertainment", "link": "https://www.chess.com/news/view/published-data-api", "auth": "None", "pricing": "free"},
|
|
623
|
+
{"name": "Lichess", "description": "Open source chess platform", "category": "Games & Entertainment", "link": "https://lichess.org/api", "auth": "OAuth", "pricing": "free"},
|
|
624
|
+
|
|
625
|
+
# Government & Open Data
|
|
626
|
+
{"name": "data.gov", "description": "US government open data", "category": "Government & Open Data", "link": "https://api.data.gov/", "auth": "apiKey", "pricing": "free"},
|
|
627
|
+
{"name": "UK Government", "description": "UK public sector data", "category": "Government & Open Data", "link": "https://www.api.gov.uk/", "auth": "None", "pricing": "free"},
|
|
628
|
+
{"name": "EU Open Data Portal", "description": "European Union data", "category": "Government & Open Data", "link": "https://data.europa.eu/en/", "auth": "None", "pricing": "free"},
|
|
629
|
+
{"name": "World Bank", "description": "Global development data", "category": "Government & Open Data", "link": "https://datahelpdesk.worldbank.org/knowledgebase/articles/889392", "auth": "None", "pricing": "free"},
|
|
630
|
+
{"name": "UN Data", "description": "United Nations statistics", "category": "Government & Open Data", "link": "https://data.un.org/", "auth": "None", "pricing": "free"},
|
|
631
|
+
{"name": "Census Bureau", "description": "US Census data", "category": "Government & Open Data", "link": "https://www.census.gov/data/developers.html", "auth": "apiKey", "pricing": "free"},
|
|
632
|
+
{"name": "FDA", "description": "US Food and Drug Administration", "category": "Government & Open Data", "link": "https://open.fda.gov/apis/", "auth": "None", "pricing": "free"},
|
|
633
|
+
{"name": "NASA", "description": "Space and earth science data", "category": "Government & Open Data", "link": "https://api.nasa.gov/", "auth": "apiKey", "pricing": "free"},
|
|
634
|
+
{"name": "NOAA", "description": "Weather and climate data", "category": "Government & Open Data", "link": "https://www.weather.gov/documentation/services-web-api", "auth": "None", "pricing": "free"},
|
|
635
|
+
{"name": "USGS", "description": "Geological survey data", "category": "Government & Open Data", "link": "https://www.usgs.gov/products/web-tools/apis", "auth": "None", "pricing": "free"},
|
|
636
|
+
{"name": "SEC EDGAR", "description": "Financial filings database", "category": "Government & Open Data", "link": "https://www.sec.gov/developer", "auth": "None", "pricing": "free"},
|
|
637
|
+
{"name": "FEC", "description": "Campaign finance data", "category": "Government & Open Data", "link": "https://api.open.fec.gov/developers/", "auth": "apiKey", "pricing": "free"},
|
|
638
|
+
{"name": "Patents API", "description": "USPTO patent database", "category": "Government & Open Data", "link": "https://developer.uspto.gov/api-catalog", "auth": "None", "pricing": "free"},
|
|
639
|
+
|
|
640
|
+
# Education
|
|
641
|
+
{"name": "Google Classroom", "description": "Education management", "category": "Education", "link": "https://developers.google.com/classroom", "auth": "OAuth", "pricing": "free"},
|
|
642
|
+
{"name": "Canvas LMS", "description": "Learning management system", "category": "Education", "link": "https://canvas.instructure.com/doc/api/", "auth": "OAuth", "pricing": "freemium"},
|
|
643
|
+
{"name": "Coursera", "description": "Online learning platform", "category": "Education", "link": "https://build.coursera.org/", "auth": "OAuth", "pricing": "free"},
|
|
644
|
+
{"name": "Udemy", "description": "Online course marketplace", "category": "Education", "link": "https://www.udemy.com/developers/affiliate/", "auth": "apiKey", "pricing": "free"},
|
|
645
|
+
{"name": "edX", "description": "Online education platform", "category": "Education", "link": "https://courses.edx.org/api-docs/", "auth": "OAuth", "pricing": "free"},
|
|
646
|
+
{"name": "Khan Academy", "description": "Free educational resources", "category": "Education", "link": "https://github.com/Khan/khan-api", "auth": "OAuth", "pricing": "free"},
|
|
647
|
+
{"name": "Duolingo", "description": "Language learning platform", "category": "Education", "link": "https://www.duolingo.com/", "auth": "OAuth", "pricing": "freemium"},
|
|
648
|
+
{"name": "Open Library", "description": "Open book database", "category": "Education", "link": "https://openlibrary.org/developers/api", "auth": "None", "pricing": "free"},
|
|
649
|
+
{"name": "Google Books", "description": "Books search and metadata", "category": "Education", "link": "https://developers.google.com/books", "auth": "apiKey", "pricing": "free"},
|
|
650
|
+
{"name": "Wikipedia", "description": "Free encyclopedia API", "category": "Education", "link": "https://www.mediawiki.org/wiki/API:Main_page", "auth": "None", "pricing": "free"},
|
|
651
|
+
{"name": "Wikidata", "description": "Structured knowledge base", "category": "Education", "link": "https://www.wikidata.org/wiki/Wikidata:Data_access", "auth": "None", "pricing": "free"},
|
|
652
|
+
{"name": "arXiv", "description": "Scientific papers repository", "category": "Education", "link": "https://arxiv.org/help/api/", "auth": "None", "pricing": "free"},
|
|
653
|
+
{"name": "Semantic Scholar", "description": "AI research paper search", "category": "Education", "link": "https://api.semanticscholar.org/", "auth": "None", "pricing": "free"},
|
|
654
|
+
{"name": "CrossRef", "description": "Citation linking service", "category": "Education", "link": "https://api.crossref.org/", "auth": "None", "pricing": "free"},
|
|
655
|
+
|
|
656
|
+
# Health & Fitness
|
|
657
|
+
{"name": "Apple HealthKit", "description": "iOS health data", "category": "Health & Fitness", "link": "https://developer.apple.com/documentation/healthkit", "auth": "OAuth", "pricing": "free"},
|
|
658
|
+
{"name": "Google Fit", "description": "Android health data", "category": "Health & Fitness", "link": "https://developers.google.com/fit", "auth": "OAuth", "pricing": "free"},
|
|
659
|
+
{"name": "Fitbit", "description": "Fitness tracking data", "category": "Health & Fitness", "link": "https://dev.fitbit.com/build/reference/web-api/", "auth": "OAuth", "pricing": "free"},
|
|
660
|
+
{"name": "Withings", "description": "Health device data", "category": "Health & Fitness", "link": "https://developer.withings.com/api-reference", "auth": "OAuth", "pricing": "free"},
|
|
661
|
+
{"name": "Garmin", "description": "Fitness and wellness data", "category": "Health & Fitness", "link": "https://developer.garmin.com/health-api/", "auth": "OAuth", "pricing": "free"},
|
|
662
|
+
{"name": "Oura", "description": "Sleep and activity tracking", "category": "Health & Fitness", "link": "https://cloud.ouraring.com/docs/", "auth": "OAuth", "pricing": "free"},
|
|
663
|
+
{"name": "WHOOP", "description": "Fitness and recovery data", "category": "Health & Fitness", "link": "https://developer.whoop.com/", "auth": "OAuth", "pricing": "free"},
|
|
664
|
+
{"name": "MyFitnessPal", "description": "Nutrition tracking", "category": "Health & Fitness", "link": "https://www.myfitnesspal.com/api", "auth": "OAuth", "pricing": "free"},
|
|
665
|
+
{"name": "BetterDoctor", "description": "Doctor search API", "category": "Health & Fitness", "link": "https://developer.betterdoctor.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
666
|
+
{"name": "openFDA", "description": "Drug and medical device data", "category": "Health & Fitness", "link": "https://open.fda.gov/apis/", "auth": "None", "pricing": "free"},
|
|
667
|
+
{"name": "Human API", "description": "Health data aggregation", "category": "Health & Fitness", "link": "https://docs.humanapi.co/", "auth": "OAuth", "pricing": "paid"},
|
|
668
|
+
{"name": "Gyms API", "description": "Gym and fitness center data", "category": "Health & Fitness", "link": "https://www.gyms.ninja/api", "auth": "apiKey", "pricing": "freemium"},
|
|
669
|
+
|
|
670
|
+
# IoT & Hardware
|
|
671
|
+
{"name": "Particle", "description": "IoT device platform", "category": "IoT & Hardware", "link": "https://docs.particle.io/reference/cloud-apis/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
672
|
+
{"name": "Arduino IoT Cloud", "description": "Arduino IoT platform", "category": "IoT & Hardware", "link": "https://www.arduino.cc/reference/en/iot/api/", "auth": "OAuth", "pricing": "freemium"},
|
|
673
|
+
{"name": "Tuya", "description": "IoT development platform", "category": "IoT & Hardware", "link": "https://developer.tuya.com/en/docs/iot", "auth": "apiKey", "pricing": "freemium"},
|
|
674
|
+
{"name": "SmartThings", "description": "Samsung smart home", "category": "IoT & Hardware", "link": "https://developer.smartthings.com/docs/api/", "auth": "OAuth", "pricing": "free"},
|
|
675
|
+
{"name": "Philips Hue", "description": "Smart lighting control", "category": "IoT & Hardware", "link": "https://developers.meethue.com/", "auth": "apiKey", "pricing": "free"},
|
|
676
|
+
{"name": "Nest", "description": "Smart home devices", "category": "IoT & Hardware", "link": "https://developers.google.com/nest/device-access", "auth": "OAuth", "pricing": "free"},
|
|
677
|
+
{"name": "Ring", "description": "Home security devices", "category": "IoT & Hardware", "link": "https://github.com/dgreif/ring", "auth": "OAuth", "pricing": "free"},
|
|
678
|
+
{"name": "ecobee", "description": "Smart thermostat API", "category": "IoT & Hardware", "link": "https://www.ecobee.com/home/developer/api/introduction/", "auth": "OAuth", "pricing": "free"},
|
|
679
|
+
{"name": "Sonos", "description": "Smart speaker control", "category": "IoT & Hardware", "link": "https://developer.sonos.com/reference/control-api/", "auth": "OAuth", "pricing": "free"},
|
|
680
|
+
{"name": "IFTTT", "description": "Automation platform", "category": "IoT & Hardware", "link": "https://ifttt.com/docs/api_reference", "auth": "OAuth", "pricing": "freemium"},
|
|
681
|
+
{"name": "Zapier", "description": "Workflow automation", "category": "IoT & Hardware", "link": "https://zapier.com/developer/documentation/v2/", "auth": "apiKey", "pricing": "freemium"},
|
|
682
|
+
{"name": "Make (Integromat)", "description": "Visual automation platform", "category": "IoT & Hardware", "link": "https://www.make.com/en/api-documentation", "auth": "apiKey", "pricing": "freemium"},
|
|
683
|
+
{"name": "n8n", "description": "Workflow automation tool", "category": "IoT & Hardware", "link": "https://docs.n8n.io/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
684
|
+
|
|
685
|
+
# Text & Document Processing
|
|
686
|
+
{"name": "DeepL", "description": "AI-powered translation", "category": "Translation", "link": "https://www.deepl.com/docs-api", "auth": "apiKey", "pricing": "freemium"},
|
|
687
|
+
{"name": "Google Translate", "description": "Language translation API", "category": "Translation", "link": "https://cloud.google.com/translate/docs", "auth": "apiKey", "pricing": "paid"},
|
|
688
|
+
{"name": "Microsoft Translator", "description": "Azure translation service", "category": "Translation", "link": "https://docs.microsoft.com/en-us/azure/cognitive-services/translator/", "auth": "apiKey", "pricing": "paid"},
|
|
689
|
+
{"name": "LibreTranslate", "description": "Open source translation", "category": "Translation", "link": "https://libretranslate.com/docs/", "auth": "None", "pricing": "freemium"},
|
|
690
|
+
{"name": "Google Docs API", "description": "Document management", "category": "Text & NLP", "link": "https://developers.google.com/docs/api", "auth": "OAuth", "pricing": "free"},
|
|
691
|
+
{"name": "Google Sheets API", "description": "Spreadsheet management", "category": "Text & NLP", "link": "https://developers.google.com/sheets/api", "auth": "OAuth", "pricing": "free"},
|
|
692
|
+
{"name": "Dropbox Sign", "description": "Electronic signatures", "category": "Text & NLP", "link": "https://developers.hellosign.com/", "auth": "apiKey", "pricing": "paid"},
|
|
693
|
+
{"name": "DocuSign", "description": "E-signature platform", "category": "Text & NLP", "link": "https://developers.docusign.com/", "auth": "OAuth", "pricing": "paid"},
|
|
694
|
+
{"name": "PandaDoc", "description": "Document automation", "category": "Text & NLP", "link": "https://developers.pandadoc.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
695
|
+
{"name": "PDF.co", "description": "PDF manipulation API", "category": "Text & NLP", "link": "https://apidocs.pdf.co/", "auth": "apiKey", "pricing": "freemium"},
|
|
696
|
+
{"name": "iLovePDF", "description": "PDF tools API", "category": "Text & NLP", "link": "https://developer.ilovepdf.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
697
|
+
{"name": "ConvertAPI", "description": "File format conversion", "category": "Text & NLP", "link": "https://www.convertapi.com/doc", "auth": "apiKey", "pricing": "freemium"},
|
|
698
|
+
{"name": "Textract", "description": "AWS document extraction", "category": "Text & NLP", "link": "https://docs.aws.amazon.com/textract/", "auth": "apiKey", "pricing": "paid"},
|
|
699
|
+
{"name": "Google Document AI", "description": "Document understanding", "category": "Text & NLP", "link": "https://cloud.google.com/document-ai/docs", "auth": "apiKey", "pricing": "paid"},
|
|
700
|
+
|
|
701
|
+
# Misc & Utility
|
|
702
|
+
{"name": "Abstract API", "description": "Suite of utility APIs", "category": "Utilities", "link": "https://www.abstractapi.com/api/", "auth": "apiKey", "pricing": "freemium"},
|
|
703
|
+
{"name": "API Ninjas", "description": "Collection of diverse APIs", "category": "Utilities", "link": "https://api-ninjas.com/api", "auth": "apiKey", "pricing": "freemium"},
|
|
704
|
+
{"name": "RapidAPI Hub", "description": "API marketplace", "category": "Utilities", "link": "https://rapidapi.com/hub", "auth": "apiKey", "pricing": "freemium"},
|
|
705
|
+
{"name": "Postman", "description": "API development platform", "category": "Utilities", "link": "https://learning.postman.com/docs/developer/postman-api/", "auth": "apiKey", "pricing": "freemium"},
|
|
706
|
+
{"name": "Swagger", "description": "API documentation tools", "category": "Utilities", "link": "https://swagger.io/tools/", "auth": "None", "pricing": "freemium"},
|
|
707
|
+
{"name": "JSON Placeholder", "description": "Fake REST API for testing", "category": "Utilities", "link": "https://jsonplaceholder.typicode.com/", "auth": "None", "pricing": "free"},
|
|
708
|
+
{"name": "Random User", "description": "Random user generator", "category": "Utilities", "link": "https://randomuser.me/documentation", "auth": "None", "pricing": "free"},
|
|
709
|
+
{"name": "UUID Generator", "description": "UUID generation API", "category": "Utilities", "link": "https://www.uuidtools.com/api", "auth": "None", "pricing": "free"},
|
|
710
|
+
{"name": "QR Code Generator", "description": "Generate QR codes", "category": "Utilities", "link": "https://goqr.me/api/", "auth": "None", "pricing": "free"},
|
|
711
|
+
{"name": "Barcode Lookup", "description": "Product barcode database", "category": "Utilities", "link": "https://www.barcodelookup.com/api", "auth": "apiKey", "pricing": "freemium"},
|
|
712
|
+
{"name": "Short URL", "description": "URL shortening services", "category": "Utilities", "link": "https://developers.short.io/reference", "auth": "apiKey", "pricing": "freemium"},
|
|
713
|
+
{"name": "Bitly", "description": "Link management platform", "category": "Utilities", "link": "https://dev.bitly.com/", "auth": "OAuth", "pricing": "freemium"},
|
|
714
|
+
{"name": "Rebrandly", "description": "Custom URL shortener", "category": "Utilities", "link": "https://developers.rebrandly.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
715
|
+
{"name": "Calendly", "description": "Scheduling automation", "category": "Calendar & Scheduling", "link": "https://developer.calendly.com/api-docs", "auth": "OAuth", "pricing": "freemium"},
|
|
716
|
+
{"name": "Cal.com", "description": "Open source scheduling", "category": "Calendar & Scheduling", "link": "https://cal.com/docs/api-reference", "auth": "apiKey", "pricing": "freemium"},
|
|
717
|
+
{"name": "Cronofy", "description": "Calendar integration", "category": "Calendar & Scheduling", "link": "https://docs.cronofy.com/developers/api/", "auth": "OAuth", "pricing": "freemium"},
|
|
718
|
+
{"name": "Google Calendar", "description": "Calendar management", "category": "Calendar & Scheduling", "link": "https://developers.google.com/calendar/api", "auth": "OAuth", "pricing": "free"},
|
|
719
|
+
{"name": "Microsoft Graph Calendar", "description": "Outlook calendar API", "category": "Calendar & Scheduling", "link": "https://docs.microsoft.com/en-us/graph/api/resources/calendar", "auth": "OAuth", "pricing": "free"},
|
|
720
|
+
{"name": "Nylas", "description": "Email and calendar APIs", "category": "Calendar & Scheduling", "link": "https://developer.nylas.com/", "auth": "OAuth", "pricing": "freemium"},
|
|
721
|
+
{"name": "Hunter.io", "description": "Email finder and verifier", "category": "Utilities", "link": "https://hunter.io/api-documentation", "auth": "apiKey", "pricing": "freemium"},
|
|
722
|
+
{"name": "Clearout", "description": "Email verification", "category": "Utilities", "link": "https://docs.clearout.io/", "auth": "apiKey", "pricing": "freemium"},
|
|
723
|
+
{"name": "ZeroBounce", "description": "Email validation service", "category": "Utilities", "link": "https://www.zerobounce.net/docs/", "auth": "apiKey", "pricing": "freemium"},
|
|
724
|
+
{"name": "Kickbox", "description": "Email verification API", "category": "Utilities", "link": "https://docs.kickbox.com/", "auth": "apiKey", "pricing": "freemium"},
|
|
725
|
+
{"name": "IPify", "description": "Public IP address API", "category": "Utilities", "link": "https://www.ipify.org/", "auth": "None", "pricing": "free"},
|
|
726
|
+
{"name": "Country.io", "description": "Country data API", "category": "Utilities", "link": "http://country.io/", "auth": "None", "pricing": "free"},
|
|
727
|
+
{"name": "REST Countries", "description": "Country information", "category": "Utilities", "link": "https://restcountries.com/", "auth": "None", "pricing": "free"},
|
|
728
|
+
{"name": "Holidays API", "description": "Public holidays data", "category": "Utilities", "link": "https://holidayapi.com/docs", "auth": "apiKey", "pricing": "freemium"},
|
|
729
|
+
{"name": "Time Zone DB", "description": "Time zone data", "category": "Utilities", "link": "https://timezonedb.com/api", "auth": "apiKey", "pricing": "freemium"},
|
|
730
|
+
{"name": "World Time API", "description": "Time zone lookup", "category": "Utilities", "link": "http://worldtimeapi.org/", "auth": "None", "pricing": "free"},
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
apis = []
|
|
734
|
+
for item in curated:
|
|
735
|
+
apis.append({
|
|
736
|
+
"id": generate_id(item["name"]),
|
|
737
|
+
"name": item["name"],
|
|
738
|
+
"description": item["description"],
|
|
739
|
+
"category": item["category"],
|
|
740
|
+
"auth": item.get("auth", "unknown"),
|
|
741
|
+
"https": True,
|
|
742
|
+
"cors": "unknown",
|
|
743
|
+
"link": item["link"],
|
|
744
|
+
"pricing": item.get("pricing", "unknown"),
|
|
745
|
+
"keywords": extract_keywords(item["description"]),
|
|
746
|
+
"source": "curated"
|
|
747
|
+
})
|
|
748
|
+
|
|
749
|
+
print(f" ✓ Curated list: {len(apis)} APIs")
|
|
750
|
+
return apis
|
|
751
|
+
|
|
752
|
+
def generate_category_apis():
|
|
753
|
+
"""Generate additional APIs by category expansion"""
|
|
754
|
+
print("📥 Generating category-based APIs...")
|
|
755
|
+
|
|
756
|
+
# Additional APIs organized by category
|
|
757
|
+
categories_apis = {
|
|
758
|
+
"AI & Machine Learning": [
|
|
759
|
+
("Vertex AI", "Google Cloud's unified ML platform", "https://cloud.google.com/vertex-ai/docs"),
|
|
760
|
+
("SageMaker", "AWS machine learning service", "https://docs.aws.amazon.com/sagemaker/"),
|
|
761
|
+
("Azure Machine Learning", "Microsoft ML platform", "https://learn.microsoft.com/azure/machine-learning/"),
|
|
762
|
+
("DataRobot", "Automated machine learning", "https://docs.datarobot.com/"),
|
|
763
|
+
("H2O.ai", "Open source ML platform", "https://docs.h2o.ai/"),
|
|
764
|
+
("MLflow", "ML lifecycle platform", "https://mlflow.org/docs/"),
|
|
765
|
+
("Weights & Biases", "ML experiment tracking", "https://docs.wandb.ai/"),
|
|
766
|
+
("Neptune.ai", "ML metadata store", "https://docs.neptune.ai/"),
|
|
767
|
+
("Clarifai", "Computer vision AI", "https://docs.clarifai.com/"),
|
|
768
|
+
("Roboflow", "Computer vision tools", "https://docs.roboflow.com/"),
|
|
769
|
+
("Scale AI", "Data labeling platform", "https://scale.com/docs"),
|
|
770
|
+
("Labelbox", "Training data platform", "https://docs.labelbox.com/"),
|
|
771
|
+
("Snorkel AI", "Data-centric AI", "https://www.snorkel.ai/docs/"),
|
|
772
|
+
("Determined AI", "Deep learning training", "https://docs.determined.ai/"),
|
|
773
|
+
("Anyscale", "Ray-based ML scaling", "https://docs.anyscale.com/"),
|
|
774
|
+
("Modal", "Serverless GPU compute", "https://modal.com/docs"),
|
|
775
|
+
("Banana", "ML inference hosting", "https://docs.banana.dev/"),
|
|
776
|
+
("Beam", "Python runtime for ML", "https://docs.beam.cloud/"),
|
|
777
|
+
("Baseten", "ML model deployment", "https://docs.baseten.co/"),
|
|
778
|
+
("Fireworks AI", "Fast LLM inference", "https://docs.fireworks.ai/"),
|
|
779
|
+
("Anyscale Endpoints", "LLM serving", "https://docs.endpoints.anyscale.com/"),
|
|
780
|
+
("vLLM", "High-throughput LLM serving", "https://docs.vllm.ai/"),
|
|
781
|
+
("Text Generation Inference", "Hugging Face inference", "https://huggingface.co/docs/text-generation-inference/"),
|
|
782
|
+
("LangChain", "LLM application framework", "https://python.langchain.com/docs/"),
|
|
783
|
+
("LlamaIndex", "Data framework for LLMs", "https://docs.llamaindex.ai/"),
|
|
784
|
+
("Semantic Kernel", "Microsoft AI orchestration", "https://learn.microsoft.com/semantic-kernel/"),
|
|
785
|
+
("AutoGPT", "Autonomous AI agents", "https://docs.agpt.co/"),
|
|
786
|
+
("CrewAI", "AI agent framework", "https://docs.crewai.com/"),
|
|
787
|
+
("Fixie", "AI agent platform", "https://docs.fixie.ai/"),
|
|
788
|
+
("Dust", "AI assistant builder", "https://docs.dust.tt/"),
|
|
789
|
+
],
|
|
790
|
+
"Databases": [
|
|
791
|
+
("MongoDB Atlas", "Cloud database service", "https://www.mongodb.com/docs/atlas/"),
|
|
792
|
+
("PostgreSQL", "Open source relational database", "https://www.postgresql.org/docs/"),
|
|
793
|
+
("MySQL", "Popular relational database", "https://dev.mysql.com/doc/"),
|
|
794
|
+
("Redis", "In-memory data store", "https://redis.io/docs/"),
|
|
795
|
+
("Cassandra", "Distributed NoSQL database", "https://cassandra.apache.org/doc/"),
|
|
796
|
+
("CockroachDB", "Distributed SQL database", "https://www.cockroachlabs.com/docs/"),
|
|
797
|
+
("TiDB", "Distributed SQL database", "https://docs.pingcap.com/tidb/"),
|
|
798
|
+
("Yugabyte", "Distributed PostgreSQL", "https://docs.yugabyte.com/"),
|
|
799
|
+
("ScyllaDB", "High-performance NoSQL", "https://docs.scylladb.com/"),
|
|
800
|
+
("FoundationDB", "Distributed database", "https://apple.github.io/foundationdb/"),
|
|
801
|
+
("Fauna", "Serverless database", "https://docs.fauna.com/"),
|
|
802
|
+
("SingleStore", "Real-time database", "https://docs.singlestore.com/"),
|
|
803
|
+
("Timescale", "Time-series database", "https://docs.timescale.com/"),
|
|
804
|
+
("InfluxDB", "Time-series platform", "https://docs.influxdata.com/"),
|
|
805
|
+
("QuestDB", "Fast time-series database", "https://questdb.io/docs/"),
|
|
806
|
+
("ClickHouse", "OLAP database", "https://clickhouse.com/docs/"),
|
|
807
|
+
("Druid", "Real-time analytics", "https://druid.apache.org/docs/"),
|
|
808
|
+
("Snowflake", "Cloud data warehouse", "https://docs.snowflake.com/"),
|
|
809
|
+
("Databricks", "Unified analytics platform", "https://docs.databricks.com/"),
|
|
810
|
+
("Dremio", "Data lakehouse platform", "https://docs.dremio.com/"),
|
|
811
|
+
("Firebolt", "Cloud data warehouse", "https://docs.firebolt.io/"),
|
|
812
|
+
("StarRocks", "Analytics database", "https://docs.starrocks.io/"),
|
|
813
|
+
("Apache Doris", "Real-time analytics", "https://doris.apache.org/docs/"),
|
|
814
|
+
("Materialize", "Streaming database", "https://materialize.com/docs/"),
|
|
815
|
+
("RisingWave", "Streaming database", "https://docs.risingwave.com/"),
|
|
816
|
+
("Rockset", "Real-time analytics", "https://docs.rockset.com/"),
|
|
817
|
+
("Tinybird", "Real-time data platform", "https://www.tinybird.co/docs"),
|
|
818
|
+
("Hydrolix", "Streaming analytics", "https://docs.hydrolix.io/"),
|
|
819
|
+
("DuckDB", "In-process analytics", "https://duckdb.org/docs/"),
|
|
820
|
+
("SQLite", "Embedded database", "https://sqlite.org/docs.html"),
|
|
821
|
+
],
|
|
822
|
+
"DevOps & CI/CD": [
|
|
823
|
+
("Jenkins", "Automation server", "https://www.jenkins.io/doc/"),
|
|
824
|
+
("GitLab CI", "DevOps platform CI/CD", "https://docs.gitlab.com/ee/ci/"),
|
|
825
|
+
("Argo CD", "GitOps continuous delivery", "https://argo-cd.readthedocs.io/"),
|
|
826
|
+
("Flux", "GitOps toolkit", "https://fluxcd.io/docs/"),
|
|
827
|
+
("Tekton", "Cloud-native CI/CD", "https://tekton.dev/docs/"),
|
|
828
|
+
("Spinnaker", "Multi-cloud deployment", "https://spinnaker.io/docs/"),
|
|
829
|
+
("Harness", "Software delivery platform", "https://developer.harness.io/"),
|
|
830
|
+
("Buildkite", "CI/CD for teams", "https://buildkite.com/docs/"),
|
|
831
|
+
("Drone", "Container-native CI/CD", "https://docs.drone.io/"),
|
|
832
|
+
("Semaphore", "Continuous integration", "https://docs.semaphoreci.com/"),
|
|
833
|
+
("Codefresh", "GitOps CI/CD", "https://codefresh.io/docs/"),
|
|
834
|
+
("Octopus Deploy", "Deployment automation", "https://octopus.com/docs/"),
|
|
835
|
+
("Spacelift", "Infrastructure orchestration", "https://docs.spacelift.io/"),
|
|
836
|
+
("Env0", "IaC automation", "https://docs.env0.com/"),
|
|
837
|
+
("Pulumi", "Infrastructure as code", "https://www.pulumi.com/docs/"),
|
|
838
|
+
("Crossplane", "Cloud-native control plane", "https://docs.crossplane.io/"),
|
|
839
|
+
("Ansible", "IT automation", "https://docs.ansible.com/"),
|
|
840
|
+
("Chef", "Infrastructure automation", "https://docs.chef.io/"),
|
|
841
|
+
("Puppet", "Infrastructure management", "https://puppet.com/docs/"),
|
|
842
|
+
("SaltStack", "Event-driven automation", "https://docs.saltproject.io/"),
|
|
843
|
+
("Kubernetes", "Container orchestration", "https://kubernetes.io/docs/reference/"),
|
|
844
|
+
("Docker", "Container platform", "https://docs.docker.com/engine/api/"),
|
|
845
|
+
("Podman", "Container tools", "https://docs.podman.io/"),
|
|
846
|
+
("containerd", "Container runtime", "https://containerd.io/docs/"),
|
|
847
|
+
("Nomad", "Workload orchestration", "https://developer.hashicorp.com/nomad/api-docs"),
|
|
848
|
+
("Consul", "Service networking", "https://developer.hashicorp.com/consul/api-docs"),
|
|
849
|
+
("Istio", "Service mesh", "https://istio.io/latest/docs/reference/"),
|
|
850
|
+
("Linkerd", "Service mesh", "https://linkerd.io/docs/"),
|
|
851
|
+
("Cilium", "eBPF-based networking", "https://docs.cilium.io/"),
|
|
852
|
+
("Prometheus", "Monitoring system", "https://prometheus.io/docs/prometheus/latest/querying/api/"),
|
|
853
|
+
("Grafana", "Observability platform", "https://grafana.com/docs/grafana/latest/developers/http_api/"),
|
|
854
|
+
("Jaeger", "Distributed tracing", "https://www.jaegertracing.io/docs/"),
|
|
855
|
+
("OpenTelemetry", "Observability framework", "https://opentelemetry.io/docs/"),
|
|
856
|
+
("Loki", "Log aggregation", "https://grafana.com/docs/loki/latest/api/"),
|
|
857
|
+
("Tempo", "Distributed tracing", "https://grafana.com/docs/tempo/latest/api_docs/"),
|
|
858
|
+
("Mimir", "Metrics backend", "https://grafana.com/docs/mimir/latest/references/http-api/"),
|
|
859
|
+
],
|
|
860
|
+
"Testing & QA": [
|
|
861
|
+
("Selenium", "Browser automation", "https://www.selenium.dev/documentation/"),
|
|
862
|
+
("Playwright", "Browser testing", "https://playwright.dev/docs/api/"),
|
|
863
|
+
("Cypress", "JavaScript testing", "https://docs.cypress.io/api/"),
|
|
864
|
+
("Puppeteer", "Chrome automation", "https://pptr.dev/api"),
|
|
865
|
+
("WebdriverIO", "Browser automation", "https://webdriver.io/docs/api"),
|
|
866
|
+
("Appium", "Mobile app testing", "https://appium.io/docs/en/latest/"),
|
|
867
|
+
("Detox", "React Native testing", "https://wix.github.io/Detox/docs/api/"),
|
|
868
|
+
("Maestro", "Mobile UI testing", "https://maestro.mobile.dev/api-reference"),
|
|
869
|
+
("k6", "Load testing", "https://k6.io/docs/"),
|
|
870
|
+
("Locust", "Load testing tool", "https://docs.locust.io/"),
|
|
871
|
+
("Gatling", "Load testing tool", "https://gatling.io/docs/"),
|
|
872
|
+
("Artillery", "Performance testing", "https://www.artillery.io/docs/"),
|
|
873
|
+
("JMeter", "Performance testing", "https://jmeter.apache.org/usermanual/"),
|
|
874
|
+
("Postman", "API testing", "https://learning.postman.com/docs/"),
|
|
875
|
+
("Insomnia", "API client", "https://docs.insomnia.rest/"),
|
|
876
|
+
("Hoppscotch", "API development", "https://docs.hoppscotch.io/"),
|
|
877
|
+
("Bruno", "API client", "https://docs.usebruno.com/"),
|
|
878
|
+
("SoapUI", "API testing", "https://www.soapui.org/docs/"),
|
|
879
|
+
("Pact", "Contract testing", "https://docs.pact.io/"),
|
|
880
|
+
("Dredd", "API testing", "https://dredd.org/"),
|
|
881
|
+
("Karate", "API test automation", "https://github.com/karatelabs/karate"),
|
|
882
|
+
("REST Assured", "Java API testing", "https://rest-assured.io/"),
|
|
883
|
+
("BrowserStack", "Testing infrastructure", "https://www.browserstack.com/docs/"),
|
|
884
|
+
("Sauce Labs", "Testing platform", "https://docs.saucelabs.com/"),
|
|
885
|
+
("LambdaTest", "Testing cloud", "https://www.lambdatest.com/support/docs/"),
|
|
886
|
+
("Percy", "Visual testing", "https://docs.percy.io/"),
|
|
887
|
+
("Applitools", "Visual AI testing", "https://applitools.com/docs/"),
|
|
888
|
+
("Chromatic", "UI testing", "https://www.chromatic.com/docs/"),
|
|
889
|
+
("Checkly", "Synthetic monitoring", "https://www.checklyhq.com/docs/"),
|
|
890
|
+
("Testim", "AI-powered testing", "https://help.testim.io/"),
|
|
891
|
+
],
|
|
892
|
+
"Automation & Integration": [
|
|
893
|
+
("Zapier", "Workflow automation", "https://zapier.com/developer/documentation/v2/"),
|
|
894
|
+
("Make (Integromat)", "Visual automation", "https://www.make.com/en/api-documentation"),
|
|
895
|
+
("n8n", "Workflow automation", "https://docs.n8n.io/api/"),
|
|
896
|
+
("Pipedream", "Integration platform", "https://pipedream.com/docs/api/"),
|
|
897
|
+
("Tray.io", "Integration platform", "https://tray.io/documentation/"),
|
|
898
|
+
("Workato", "Enterprise automation", "https://docs.workato.com/"),
|
|
899
|
+
("Power Automate", "Microsoft automation", "https://learn.microsoft.com/power-automate/"),
|
|
900
|
+
("Automate.io", "Cloud integration", "https://automate.io/integration-api"),
|
|
901
|
+
("Integrately", "App integration", "https://integrately.com/"),
|
|
902
|
+
("Pabbly Connect", "Workflow automation", "https://www.pabbly.com/connect/"),
|
|
903
|
+
("Bardeen", "Browser automation", "https://www.bardeen.ai/docs"),
|
|
904
|
+
("Activepieces", "Open source automation", "https://www.activepieces.com/docs"),
|
|
905
|
+
("Alloy", "Unified API", "https://docs.runalloy.com/"),
|
|
906
|
+
("Merge", "Unified API platform", "https://docs.merge.dev/"),
|
|
907
|
+
("Finch", "Employment API", "https://developer.tryfinch.com/"),
|
|
908
|
+
("Apideck", "Unified APIs", "https://developers.apideck.com/"),
|
|
909
|
+
("Unified.to", "Unified APIs", "https://unified.to/docs"),
|
|
910
|
+
("Paragon", "Embedded integrations", "https://docs.useparagon.com/"),
|
|
911
|
+
("Vessel", "CRM integration", "https://docs.vessel.land/"),
|
|
912
|
+
("Sequin", "Database sync", "https://docs.sequinstream.com/"),
|
|
913
|
+
("Airbyte", "Data integration", "https://docs.airbyte.com/api-documentation/"),
|
|
914
|
+
("Fivetran", "Data pipelines", "https://fivetran.com/docs/rest-api"),
|
|
915
|
+
("Stitch", "Data pipeline", "https://www.stitchdata.com/docs/"),
|
|
916
|
+
("Census", "Reverse ETL", "https://docs.getcensus.com/"),
|
|
917
|
+
("Hightouch", "Reverse ETL", "https://hightouch.com/docs/"),
|
|
918
|
+
("Rudderstack", "Customer data platform", "https://www.rudderstack.com/docs/"),
|
|
919
|
+
("Segment", "Customer data platform", "https://segment.com/docs/"),
|
|
920
|
+
("mParticle", "Customer data platform", "https://docs.mparticle.com/"),
|
|
921
|
+
("Tealium", "Customer data hub", "https://docs.tealium.com/"),
|
|
922
|
+
("Lytics", "Customer data platform", "https://docs.lytics.com/"),
|
|
923
|
+
],
|
|
924
|
+
"Low-Code & No-Code": [
|
|
925
|
+
("Airtable", "Database-spreadsheet", "https://airtable.com/developers/web/api/introduction"),
|
|
926
|
+
("Notion", "Workspace", "https://developers.notion.com/"),
|
|
927
|
+
("Coda", "Doc-app hybrid", "https://coda.io/developers/apis/v1"),
|
|
928
|
+
("Retool", "Internal tools", "https://docs.retool.com/"),
|
|
929
|
+
("Appsmith", "Internal tools", "https://docs.appsmith.com/"),
|
|
930
|
+
("Budibase", "Low-code platform", "https://docs.budibase.com/"),
|
|
931
|
+
("Tooljet", "Internal tools", "https://docs.tooljet.com/"),
|
|
932
|
+
("Airplane", "Internal tools", "https://docs.airplane.dev/"),
|
|
933
|
+
("Superblocks", "Internal apps", "https://docs.superblocks.com/"),
|
|
934
|
+
("DronaHQ", "Low-code platform", "https://docs.dronahq.com/"),
|
|
935
|
+
("UI Bakery", "Internal tools", "https://docs.uibakery.io/"),
|
|
936
|
+
("Jet Admin", "Internal tools", "https://docs.jetadmin.io/"),
|
|
937
|
+
("Forest Admin", "Admin panel", "https://docs.forestadmin.com/"),
|
|
938
|
+
("Strapi", "Headless CMS", "https://docs.strapi.io/"),
|
|
939
|
+
("Directus", "Data platform", "https://docs.directus.io/"),
|
|
940
|
+
("Sanity", "Content platform", "https://www.sanity.io/docs/"),
|
|
941
|
+
("Contentful", "Content platform", "https://www.contentful.com/developers/docs/"),
|
|
942
|
+
("Prismic", "Headless CMS", "https://prismic.io/docs/api"),
|
|
943
|
+
("Hygraph", "GraphQL CMS", "https://hygraph.com/docs/api-reference"),
|
|
944
|
+
("Storyblok", "Headless CMS", "https://www.storyblok.com/docs/api"),
|
|
945
|
+
("Builder.io", "Visual CMS", "https://www.builder.io/c/docs/"),
|
|
946
|
+
("Plasmic", "Visual builder", "https://docs.plasmic.app/"),
|
|
947
|
+
("Webflow", "Visual development", "https://developers.webflow.com/"),
|
|
948
|
+
("Framer", "Design and publish", "https://www.framer.com/developers/"),
|
|
949
|
+
("Softr", "No-code apps", "https://docs.softr.io/"),
|
|
950
|
+
("Glide", "No-code apps", "https://www.glideapps.com/docs"),
|
|
951
|
+
("Adalo", "No-code apps", "https://help.adalo.com/"),
|
|
952
|
+
("Bubble", "No-code platform", "https://manual.bubble.io/"),
|
|
953
|
+
("FlutterFlow", "No-code Flutter", "https://docs.flutterflow.io/"),
|
|
954
|
+
("Draftbit", "No-code mobile", "https://docs.draftbit.com/"),
|
|
955
|
+
],
|
|
956
|
+
"Analytics & Business Intelligence": [
|
|
957
|
+
("Google Analytics", "Web analytics", "https://developers.google.com/analytics"),
|
|
958
|
+
("Mixpanel", "Product analytics", "https://developer.mixpanel.com/"),
|
|
959
|
+
("Amplitude", "Product analytics", "https://www.docs.developers.amplitude.com/"),
|
|
960
|
+
("Heap", "Digital analytics", "https://developers.heap.io/"),
|
|
961
|
+
("PostHog", "Product analytics", "https://posthog.com/docs/api"),
|
|
962
|
+
("Pendo", "Product experience", "https://support.pendo.io/hc/en-us/articles/360032294291"),
|
|
963
|
+
("FullStory", "Digital experience", "https://developer.fullstory.com/"),
|
|
964
|
+
("LogRocket", "Session replay", "https://docs.logrocket.com/reference"),
|
|
965
|
+
("Smartlook", "User behavior", "https://developers.smartlook.com/"),
|
|
966
|
+
("Lucky Orange", "Conversion optimization", "https://help.luckyorange.com/article/350"),
|
|
967
|
+
("Crazy Egg", "Heatmaps", "https://help.crazyegg.com/"),
|
|
968
|
+
("Mouseflow", "Behavior analytics", "https://mouseflow.com/docs/"),
|
|
969
|
+
("Contentsquare", "Digital experience", "https://docs.contentsquare.com/"),
|
|
970
|
+
("Quantum Metric", "Digital intelligence", "https://quantummetric.com/"),
|
|
971
|
+
("Glassbox", "Experience analytics", "https://www.glassbox.com/"),
|
|
972
|
+
("Tableau", "Business intelligence", "https://help.tableau.com/current/api/"),
|
|
973
|
+
("Power BI", "Business analytics", "https://learn.microsoft.com/en-us/rest/api/power-bi/"),
|
|
974
|
+
("Looker", "Business intelligence", "https://developers.looker.com/api/"),
|
|
975
|
+
("Metabase", "Business intelligence", "https://www.metabase.com/docs/latest/api-documentation"),
|
|
976
|
+
("Superset", "Data exploration", "https://superset.apache.org/docs/api"),
|
|
977
|
+
("Redash", "Data visualization", "https://redash.io/help/user-guide/integrations-and-api/api"),
|
|
978
|
+
("Mode", "Collaborative analytics", "https://mode.com/developer/api-reference/"),
|
|
979
|
+
("Sisense", "Analytics platform", "https://sisense.dev/reference/rest"),
|
|
980
|
+
("Domo", "Business cloud", "https://developer.domo.com/"),
|
|
981
|
+
("Qlik Sense", "Analytics platform", "https://qlik.dev/"),
|
|
982
|
+
("ThoughtSpot", "Search analytics", "https://developers.thoughtspot.com/"),
|
|
983
|
+
("Holistics", "BI platform", "https://docs.holistics.io/api"),
|
|
984
|
+
("Cube.js", "Analytics framework", "https://cube.dev/docs/reference/rest-api"),
|
|
985
|
+
("GoodData", "Analytics platform", "https://www.gooddata.com/developers/"),
|
|
986
|
+
("Klipfolio", "Dashboard software", "https://support.klipfolio.com/hc/en-us/articles/"),
|
|
987
|
+
("Geckoboard", "KPI dashboards", "https://developer.geckoboard.com/"),
|
|
988
|
+
("Chartio", "Cloud BI", "https://chartio.com/"),
|
|
989
|
+
],
|
|
990
|
+
"Marketing & Advertising": [
|
|
991
|
+
("Google Ads", "Online advertising", "https://developers.google.com/google-ads/api/docs"),
|
|
992
|
+
("Facebook Marketing", "Social advertising", "https://developers.facebook.com/docs/marketing-apis/"),
|
|
993
|
+
("LinkedIn Marketing", "B2B advertising", "https://learn.microsoft.com/en-us/linkedin/marketing/"),
|
|
994
|
+
("Twitter Ads", "Social advertising", "https://developer.twitter.com/en/docs/twitter-ads-api"),
|
|
995
|
+
("TikTok Marketing", "Video advertising", "https://business-api.tiktok.com/portal/docs"),
|
|
996
|
+
("Pinterest Ads", "Visual advertising", "https://developers.pinterest.com/docs/api/v5/"),
|
|
997
|
+
("Snapchat Marketing", "Snap advertising", "https://marketingapi.snapchat.com/docs/"),
|
|
998
|
+
("Amazon Advertising", "E-commerce ads", "https://advertising.amazon.com/API/docs/"),
|
|
999
|
+
("Microsoft Advertising", "Search advertising", "https://learn.microsoft.com/en-us/advertising/guides/"),
|
|
1000
|
+
("AdRoll", "Retargeting platform", "https://developers.adroll.com/"),
|
|
1001
|
+
("Criteo", "Performance marketing", "https://developers.criteo.com/"),
|
|
1002
|
+
("Taboola", "Native advertising", "https://developers.taboola.com/"),
|
|
1003
|
+
("Outbrain", "Native advertising", "https://developer.outbrain.com/"),
|
|
1004
|
+
("MediaMath", "Programmatic advertising", "https://developer.mediamath.com/"),
|
|
1005
|
+
("The Trade Desk", "Demand-side platform", "https://partner.thetradedesk.com/v3/portal/api"),
|
|
1006
|
+
("DoubleVerify", "Ad verification", "https://doubleverify.com/"),
|
|
1007
|
+
("IAS", "Ad verification", "https://integralads.com/"),
|
|
1008
|
+
("Moat", "Ad measurement", "https://moat.com/"),
|
|
1009
|
+
("AppsFlyer", "Mobile attribution", "https://support.appsflyer.com/hc/en-us/articles/"),
|
|
1010
|
+
("Adjust", "Mobile analytics", "https://help.adjust.com/en/article/api"),
|
|
1011
|
+
("Branch", "Deep linking", "https://help.branch.io/developers-hub"),
|
|
1012
|
+
("Singular", "Marketing analytics", "https://developers.singular.net/"),
|
|
1013
|
+
("Kochava", "Mobile attribution", "https://support.kochava.com/sdk-integration/"),
|
|
1014
|
+
("Iterable", "Growth marketing", "https://api.iterable.com/api/docs"),
|
|
1015
|
+
("Braze", "Customer engagement", "https://www.braze.com/docs/api/basics"),
|
|
1016
|
+
("Klaviyo", "Email marketing", "https://developers.klaviyo.com/"),
|
|
1017
|
+
("Attentive", "SMS marketing", "https://docs.attentivemobile.com/"),
|
|
1018
|
+
("OneSignal", "Push notifications", "https://documentation.onesignal.com/reference"),
|
|
1019
|
+
("Airship", "Customer engagement", "https://docs.airship.com/api/"),
|
|
1020
|
+
("Leanplum", "Mobile engagement", "https://docs.leanplum.com/reference"),
|
|
1021
|
+
],
|
|
1022
|
+
"HR & Recruitment": [
|
|
1023
|
+
("Workday", "HR management", "https://community.workday.com/sites/default/files/file-hosting/productionapi/"),
|
|
1024
|
+
("BambooHR", "HR software", "https://documentation.bamboohr.com/reference"),
|
|
1025
|
+
("Greenhouse", "Recruiting software", "https://developers.greenhouse.io/"),
|
|
1026
|
+
("Lever", "Recruiting software", "https://hire.lever.co/developer/documentation"),
|
|
1027
|
+
("Ashby", "Recruiting platform", "https://developers.ashbyhq.com/"),
|
|
1028
|
+
("Workable", "Recruiting software", "https://workable.readme.io/"),
|
|
1029
|
+
("JazzHR", "Recruiting software", "https://www.jazzhr.com/api-documentation/"),
|
|
1030
|
+
("SmartRecruiters", "Talent acquisition", "https://developers.smartrecruiters.com/"),
|
|
1031
|
+
("Breezy HR", "Recruiting software", "https://developer.breezy.hr/"),
|
|
1032
|
+
("Recruitee", "Collaborative hiring", "https://docs.recruitee.com/reference"),
|
|
1033
|
+
("Teamtailor", "Employer branding", "https://docs.teamtailor.com/"),
|
|
1034
|
+
("Personio", "HR software", "https://developer.personio.de/"),
|
|
1035
|
+
("HiBob", "HR platform", "https://apidocs.hibob.com/"),
|
|
1036
|
+
("Rippling", "HR platform", "https://developer.rippling.com/"),
|
|
1037
|
+
("Gusto", "Payroll & HR", "https://docs.gusto.com/"),
|
|
1038
|
+
("Justworks", "PEO platform", "https://justworks.com/"),
|
|
1039
|
+
("Deel", "Global HR", "https://developer.deel.com/"),
|
|
1040
|
+
("Remote", "Global HR", "https://remote.com/resources/api"),
|
|
1041
|
+
("Oyster", "Global employment", "https://oysterhr.com/"),
|
|
1042
|
+
("Papaya Global", "Global payroll", "https://papayaglobal.com/"),
|
|
1043
|
+
("Lattice", "People management", "https://developers.lattice.com/"),
|
|
1044
|
+
("Culture Amp", "Employee engagement", "https://developer.cultureamp.com/"),
|
|
1045
|
+
("15Five", "Performance management", "https://support.15five.com/hc/en-us/articles/"),
|
|
1046
|
+
("Leapsome", "People enablement", "https://www.leapsome.com/"),
|
|
1047
|
+
("Betterworks", "Performance management", "https://betterworks.com/"),
|
|
1048
|
+
("Namely", "HR platform", "https://developers.namely.com/"),
|
|
1049
|
+
("Paychex", "Payroll services", "https://developer.paychex.com/"),
|
|
1050
|
+
("ADP", "HR and payroll", "https://developers.adp.com/"),
|
|
1051
|
+
("Paylocity", "Payroll software", "https://www.paylocity.com/"),
|
|
1052
|
+
("Ceridian", "HCM platform", "https://developers.dayforce.com/"),
|
|
1053
|
+
],
|
|
1054
|
+
"Legal & Compliance": [
|
|
1055
|
+
("DocuSign", "E-signatures", "https://developers.docusign.com/"),
|
|
1056
|
+
("Adobe Sign", "E-signatures", "https://secure.adobesign.com/public/docs/restapi/v6"),
|
|
1057
|
+
("PandaDoc", "Document automation", "https://developers.pandadoc.com/"),
|
|
1058
|
+
("HelloSign", "E-signatures", "https://developers.hellosign.com/"),
|
|
1059
|
+
("SignNow", "E-signatures", "https://www.signnow.com/developers"),
|
|
1060
|
+
("SignRequest", "E-signatures", "https://signrequest.com/api/v1/docs/"),
|
|
1061
|
+
("Ironclad", "Contract management", "https://developer.ironcladapp.com/"),
|
|
1062
|
+
("Agiloft", "Contract management", "https://www.agiloft.com/"),
|
|
1063
|
+
("ContractPodAi", "Contract management", "https://contractpodai.com/"),
|
|
1064
|
+
("Juro", "Contract automation", "https://juro.com/"),
|
|
1065
|
+
("LinkSquares", "Contract analytics", "https://linksquares.com/"),
|
|
1066
|
+
("LawGeex", "Contract review", "https://www.lawgeex.com/"),
|
|
1067
|
+
("Kira Systems", "Contract analysis", "https://kirasystems.com/"),
|
|
1068
|
+
("Luminance", "Legal AI", "https://www.luminance.com/"),
|
|
1069
|
+
("Clio", "Legal practice management", "https://app.clio.com/api/v4/documentation"),
|
|
1070
|
+
("MyCase", "Legal software", "https://www.mycase.com/"),
|
|
1071
|
+
("PracticePanther", "Legal software", "https://www.practicepanther.com/"),
|
|
1072
|
+
("Smokeball", "Legal software", "https://www.smokeball.com/"),
|
|
1073
|
+
("GDPR Advisor", "Compliance tool", "https://gdpr-advisor.com/"),
|
|
1074
|
+
("OneTrust", "Privacy management", "https://developer.onetrust.com/"),
|
|
1075
|
+
("TrustArc", "Privacy compliance", "https://trustarc.com/"),
|
|
1076
|
+
("BigID", "Data intelligence", "https://docs.bigid.com/"),
|
|
1077
|
+
("Securiti", "Data governance", "https://securiti.ai/"),
|
|
1078
|
+
("Collibra", "Data governance", "https://developer.collibra.com/"),
|
|
1079
|
+
("Alation", "Data catalog", "https://developer.alation.com/"),
|
|
1080
|
+
("Atlan", "Data workspace", "https://atlan.com/"),
|
|
1081
|
+
("Satori", "Data access", "https://satoricyber.com/"),
|
|
1082
|
+
("Immuta", "Data access", "https://documentation.immuta.com/"),
|
|
1083
|
+
("Privacera", "Data governance", "https://privacera.com/"),
|
|
1084
|
+
("Drata", "Compliance automation", "https://docs.drata.com/"),
|
|
1085
|
+
],
|
|
1086
|
+
"Customer Success": [
|
|
1087
|
+
("Gainsight", "Customer success", "https://developer.gainsight.com/"),
|
|
1088
|
+
("Totango", "Customer success", "https://support.totango.com/hc/en-us/articles/"),
|
|
1089
|
+
("ChurnZero", "Customer success", "https://support.churnzero.net/hc/en-us/articles/"),
|
|
1090
|
+
("Planhat", "Customer success", "https://docs.planhat.com/"),
|
|
1091
|
+
("Catalyst", "Customer success", "https://docs.catalyst.io/"),
|
|
1092
|
+
("Vitally", "Customer success", "https://docs.vitally.io/"),
|
|
1093
|
+
("UserIQ", "Customer success", "https://useriq.com/"),
|
|
1094
|
+
("Custify", "Customer success", "https://www.custify.com/"),
|
|
1095
|
+
("Akita", "Customer success", "https://www.akitaapp.com/"),
|
|
1096
|
+
("Natero", "Customer success", "https://www.natero.com/"),
|
|
1097
|
+
("Strikedeck", "Customer success", "https://strikedeck.com/"),
|
|
1098
|
+
("ClientSuccess", "Customer success", "https://www.clientsuccess.com/"),
|
|
1099
|
+
("Freshsuccess", "Customer success", "https://www.freshworks.com/customer-success-software/"),
|
|
1100
|
+
("Amity", "Customer success", "https://getamity.com/"),
|
|
1101
|
+
("Skalin", "Customer success", "https://www.skalin.io/"),
|
|
1102
|
+
],
|
|
1103
|
+
"Project Management": [
|
|
1104
|
+
("Jira", "Issue tracking", "https://developer.atlassian.com/cloud/jira/platform/rest/v3/"),
|
|
1105
|
+
("Asana", "Work management", "https://developers.asana.com/reference"),
|
|
1106
|
+
("Monday.com", "Work OS", "https://developer.monday.com/api-reference/docs"),
|
|
1107
|
+
("ClickUp", "Productivity", "https://clickup.com/api"),
|
|
1108
|
+
("Linear", "Project tracking", "https://developers.linear.app/docs"),
|
|
1109
|
+
("Notion", "Workspace", "https://developers.notion.com/"),
|
|
1110
|
+
("Trello", "Kanban boards", "https://developer.atlassian.com/cloud/trello/rest/"),
|
|
1111
|
+
("Basecamp", "Project management", "https://github.com/basecamp/bc3-api"),
|
|
1112
|
+
("Wrike", "Work management", "https://developers.wrike.com/"),
|
|
1113
|
+
("Smartsheet", "Work execution", "https://smartsheet.redoc.ly/"),
|
|
1114
|
+
("Teamwork", "Project management", "https://developer.teamwork.com/"),
|
|
1115
|
+
("Hive", "Project management", "https://developers.hive.com/"),
|
|
1116
|
+
("Airtable", "Database apps", "https://airtable.com/developers/web/api/introduction"),
|
|
1117
|
+
("Coda", "Doc apps", "https://coda.io/developers/apis/v1"),
|
|
1118
|
+
("Fibery", "Work management", "https://api.fibery.io/"),
|
|
1119
|
+
("Height", "Project management", "https://height.notion.site/"),
|
|
1120
|
+
("Shortcut", "Project management", "https://developer.shortcut.com/api/rest/v3"),
|
|
1121
|
+
("Plane", "Project tracking", "https://docs.plane.so/"),
|
|
1122
|
+
("Zenhub", "Agile boards", "https://developers.zenhub.com/"),
|
|
1123
|
+
("Clubhouse", "Project management", "https://shortcut.com/api/"),
|
|
1124
|
+
],
|
|
1125
|
+
"Scheduling & Booking": [
|
|
1126
|
+
("Calendly", "Scheduling", "https://developer.calendly.com/api-docs"),
|
|
1127
|
+
("Cal.com", "Scheduling", "https://cal.com/docs/api-reference"),
|
|
1128
|
+
("Acuity Scheduling", "Scheduling", "https://developers.acuityscheduling.com/"),
|
|
1129
|
+
("Doodle", "Scheduling", "https://developer.doodle.com/"),
|
|
1130
|
+
("Chili Piper", "Scheduling", "https://help.chilipiper.com/"),
|
|
1131
|
+
("SavvyCal", "Scheduling", "https://savvycal.com/"),
|
|
1132
|
+
("YouCanBook.me", "Scheduling", "https://api.youcanbook.me/"),
|
|
1133
|
+
("Appointy", "Scheduling", "https://www.appointy.com/"),
|
|
1134
|
+
("Setmore", "Scheduling", "https://www.setmore.com/"),
|
|
1135
|
+
("SimplyBook.me", "Booking system", "https://simplybook.me/"),
|
|
1136
|
+
("Bookeo", "Booking system", "https://www.bookeo.com/apiref/"),
|
|
1137
|
+
("Bookafy", "Scheduling", "https://bookafy.com/"),
|
|
1138
|
+
("Hubspot Meetings", "Scheduling", "https://developers.hubspot.com/docs/api/"),
|
|
1139
|
+
("Reclaim", "AI scheduling", "https://reclaim.ai/"),
|
|
1140
|
+
("Clockwise", "Calendar optimization", "https://www.getclockwise.com/"),
|
|
1141
|
+
],
|
|
1142
|
+
"Form Builders": [
|
|
1143
|
+
("Typeform", "Interactive forms", "https://developer.typeform.com/"),
|
|
1144
|
+
("JotForm", "Online forms", "https://api.jotform.com/docs/"),
|
|
1145
|
+
("Google Forms", "Simple forms", "https://developers.google.com/forms/api"),
|
|
1146
|
+
("Tally", "Form builder", "https://tally.so/"),
|
|
1147
|
+
("Paperform", "Smart forms", "https://paperform.co/help/"),
|
|
1148
|
+
("Formstack", "Form builder", "https://developers.formstack.com/"),
|
|
1149
|
+
("Cognito Forms", "Form builder", "https://www.cognitoforms.com/api"),
|
|
1150
|
+
("123FormBuilder", "Form builder", "https://www.123formbuilder.com/api-documentation/"),
|
|
1151
|
+
("Wufoo", "Online forms", "https://wufoo.github.io/docs/"),
|
|
1152
|
+
("SurveyMonkey", "Surveys", "https://developer.surveymonkey.com/api/v3/"),
|
|
1153
|
+
("Qualtrics", "Experience management", "https://api.qualtrics.com/"),
|
|
1154
|
+
("Alchemer", "Surveys", "https://apihelp.alchemer.com/"),
|
|
1155
|
+
("Delighted", "NPS surveys", "https://delighted.com/docs/api"),
|
|
1156
|
+
("AskNicely", "NPS platform", "https://asknicely.com/"),
|
|
1157
|
+
("SatisMeter", "User feedback", "https://satismeter.com/"),
|
|
1158
|
+
("Refiner", "User surveys", "https://refiner.io/"),
|
|
1159
|
+
("Screeb", "Product surveys", "https://screeb.app/"),
|
|
1160
|
+
("Sprig", "User research", "https://sprig.com/"),
|
|
1161
|
+
("Maze", "User testing", "https://maze.co/"),
|
|
1162
|
+
("Useberry", "User testing", "https://www.useberry.com/"),
|
|
1163
|
+
],
|
|
1164
|
+
"Support & Helpdesk": [
|
|
1165
|
+
("Zendesk", "Customer service", "https://developer.zendesk.com/api-reference/"),
|
|
1166
|
+
("Freshdesk", "Helpdesk", "https://developers.freshdesk.com/api/"),
|
|
1167
|
+
("Intercom", "Customer messaging", "https://developers.intercom.com/"),
|
|
1168
|
+
("HelpScout", "Customer support", "https://developer.helpscout.com/"),
|
|
1169
|
+
("Front", "Customer operations", "https://dev.frontapp.com/reference"),
|
|
1170
|
+
("Gladly", "Customer service", "https://developer.gladly.com/"),
|
|
1171
|
+
("Kustomer", "CRM platform", "https://developer.kustomer.com/"),
|
|
1172
|
+
("Gorgias", "E-commerce support", "https://developers.gorgias.com/"),
|
|
1173
|
+
("Re:amaze", "Customer support", "https://www.reamaze.com/api"),
|
|
1174
|
+
("Crisp", "Customer messaging", "https://docs.crisp.chat/api/v1/"),
|
|
1175
|
+
("LiveChat", "Live chat", "https://developers.livechat.com/"),
|
|
1176
|
+
("Tawk.to", "Live chat", "https://developer.tawk.to/"),
|
|
1177
|
+
("Drift", "Conversational marketing", "https://devdocs.drift.com/docs"),
|
|
1178
|
+
("Olark", "Live chat", "https://www.olark.com/help/api"),
|
|
1179
|
+
("SnapEngage", "Live chat", "https://snapengage.com/"),
|
|
1180
|
+
("Kayako", "Customer service", "https://developer.kayako.com/"),
|
|
1181
|
+
("ServiceNow", "IT service management", "https://developer.servicenow.com/"),
|
|
1182
|
+
("Freshservice", "IT helpdesk", "https://api.freshservice.com/v2/"),
|
|
1183
|
+
("Jira Service Management", "ITSM", "https://developer.atlassian.com/cloud/jira/service-desk/rest/"),
|
|
1184
|
+
("Halp", "Conversational ticketing", "https://www.atlassian.com/software/halp"),
|
|
1185
|
+
],
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
apis = []
|
|
1189
|
+
for category, api_list in categories_apis.items():
|
|
1190
|
+
for item in api_list:
|
|
1191
|
+
name, desc, link = item
|
|
1192
|
+
apis.append({
|
|
1193
|
+
"id": generate_id(name),
|
|
1194
|
+
"name": name,
|
|
1195
|
+
"description": desc,
|
|
1196
|
+
"category": category,
|
|
1197
|
+
"auth": "apiKey",
|
|
1198
|
+
"https": True,
|
|
1199
|
+
"cors": "unknown",
|
|
1200
|
+
"link": link,
|
|
1201
|
+
"pricing": "unknown",
|
|
1202
|
+
"keywords": extract_keywords(desc),
|
|
1203
|
+
"source": "category_expansion"
|
|
1204
|
+
})
|
|
1205
|
+
|
|
1206
|
+
print(f" ✓ Category expansion: {len(apis)} APIs")
|
|
1207
|
+
return apis
|
|
1208
|
+
|
|
1209
|
+
|
|
1210
|
+
def deduplicate(apis, existing_ids):
|
|
1211
|
+
"""Remove duplicates based on ID and name similarity"""
|
|
1212
|
+
seen_ids = set(existing_ids)
|
|
1213
|
+
seen_names = set()
|
|
1214
|
+
unique = []
|
|
1215
|
+
|
|
1216
|
+
for api in apis:
|
|
1217
|
+
api_id = api["id"]
|
|
1218
|
+
name_lower = api["name"].lower().strip()
|
|
1219
|
+
|
|
1220
|
+
# Skip if ID already exists
|
|
1221
|
+
if api_id in seen_ids:
|
|
1222
|
+
stats["duplicates"] += 1
|
|
1223
|
+
continue
|
|
1224
|
+
|
|
1225
|
+
# Skip if name is very similar
|
|
1226
|
+
if name_lower in seen_names:
|
|
1227
|
+
stats["duplicates"] += 1
|
|
1228
|
+
continue
|
|
1229
|
+
|
|
1230
|
+
seen_ids.add(api_id)
|
|
1231
|
+
seen_names.add(name_lower)
|
|
1232
|
+
unique.append(api)
|
|
1233
|
+
stats["added"] += 1
|
|
1234
|
+
|
|
1235
|
+
return unique
|
|
1236
|
+
|
|
1237
|
+
def main():
|
|
1238
|
+
print("🚀 APIClaw Mass API Expansion")
|
|
1239
|
+
print("=" * 50)
|
|
1240
|
+
|
|
1241
|
+
# Load existing
|
|
1242
|
+
registry = load_existing()
|
|
1243
|
+
|
|
1244
|
+
# Fix any APIs missing IDs
|
|
1245
|
+
for api in registry["apis"]:
|
|
1246
|
+
if "id" not in api or not api["id"]:
|
|
1247
|
+
api["id"] = generate_id(api.get("name", "unknown"))
|
|
1248
|
+
|
|
1249
|
+
existing_ids = {api.get("id", "") for api in registry["apis"] if api.get("id")}
|
|
1250
|
+
existing_names = {api.get("name", "").lower() for api in registry["apis"] if api.get("name")}
|
|
1251
|
+
|
|
1252
|
+
print(f"📊 Starting with {stats['initial']} APIs")
|
|
1253
|
+
print()
|
|
1254
|
+
|
|
1255
|
+
# Fetch from all sources
|
|
1256
|
+
all_new_apis = []
|
|
1257
|
+
|
|
1258
|
+
# 1. APIs.guru
|
|
1259
|
+
apis_guru = fetch_apis_guru()
|
|
1260
|
+
all_new_apis.extend(apis_guru)
|
|
1261
|
+
|
|
1262
|
+
# 2. Public APIs GitHub
|
|
1263
|
+
public_apis = fetch_public_apis_github()
|
|
1264
|
+
all_new_apis.extend(public_apis)
|
|
1265
|
+
|
|
1266
|
+
# 3. Curated list
|
|
1267
|
+
curated = generate_curated_apis()
|
|
1268
|
+
all_new_apis.extend(curated)
|
|
1269
|
+
|
|
1270
|
+
# 4. Category expansion
|
|
1271
|
+
category_apis = generate_category_apis()
|
|
1272
|
+
all_new_apis.extend(category_apis)
|
|
1273
|
+
|
|
1274
|
+
print()
|
|
1275
|
+
print(f"📥 Total fetched: {len(all_new_apis)} APIs")
|
|
1276
|
+
|
|
1277
|
+
# Deduplicate
|
|
1278
|
+
print("🔄 Deduplicating...")
|
|
1279
|
+
unique_new = deduplicate(all_new_apis, existing_ids)
|
|
1280
|
+
|
|
1281
|
+
# Merge with existing
|
|
1282
|
+
registry["apis"].extend(unique_new)
|
|
1283
|
+
registry["count"] = len(registry["apis"])
|
|
1284
|
+
registry["lastUpdated"] = "2026-02-22"
|
|
1285
|
+
|
|
1286
|
+
# Save
|
|
1287
|
+
print(f"💾 Saving to {OUTPUT_PATH}...")
|
|
1288
|
+
with open(OUTPUT_PATH, 'w') as f:
|
|
1289
|
+
json.dump(registry, f, indent=2)
|
|
1290
|
+
|
|
1291
|
+
# Stats
|
|
1292
|
+
print()
|
|
1293
|
+
print("=" * 50)
|
|
1294
|
+
print("📊 FINAL STATS")
|
|
1295
|
+
print(f" Initial APIs: {stats['initial']}")
|
|
1296
|
+
print(f" New APIs added: {stats['added']}")
|
|
1297
|
+
print(f" Duplicates skipped: {stats['duplicates']}")
|
|
1298
|
+
print(f" Errors: {stats['errors']}")
|
|
1299
|
+
print(f" TOTAL: {registry['count']} APIs")
|
|
1300
|
+
print("=" * 50)
|
|
1301
|
+
|
|
1302
|
+
if registry["count"] >= 20000:
|
|
1303
|
+
print("🎉 SUCCESS! Reached 20,000+ APIs!")
|
|
1304
|
+
else:
|
|
1305
|
+
print(f"📈 Need {20000 - registry['count']} more APIs to reach goal")
|
|
1306
|
+
|
|
1307
|
+
if __name__ == "__main__":
|
|
1308
|
+
main()
|