@nordsym/apiclaw 1.1.2 → 1.1.4
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/EARN-CREDITS-SPEC.md +197 -0
- package/README.md +11 -7
- package/STATUS.md +16 -15
- package/VISION.md +123 -0
- package/dist/credentials.d.ts.map +1 -1
- package/dist/credentials.js +11 -0
- package/dist/credentials.js.map +1 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +75 -0
- package/dist/execute.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/proxy.d.ts.map +1 -1
- package/dist/proxy.js +1 -1
- package/dist/proxy.js.map +1 -1
- package/dist/registry/apis.json +93516 -7139
- package/dist/registry/apis_expanded.json +3123 -3
- package/landing/public/book/index.html +339 -0
- package/landing/src/app/docs/page.tsx +142 -115
- package/landing/src/app/earn/page.tsx +305 -0
- package/landing/src/app/page.tsx +16 -11
- package/landing/src/lib/apis.json +1 -116054
- package/landing/src/lib/stats.json +5 -5
- package/package.json +4 -1
- package/scripts/add-public-apis.py +625 -0
- package/scripts/apisguru-data.json +158837 -0
- package/scripts/bonus-batch.py +250 -0
- package/scripts/bulk-add-apisguru.js +122 -0
- package/scripts/expand-2026-batch.py +335 -0
- package/scripts/expand-from-github.py +460 -0
- package/scripts/expand-n4ze3m.py +198 -0
- package/scripts/expand-niche-batch.py +269 -0
- package/scripts/expand-nordic-niche.py +189 -0
- package/scripts/expand-tonnyL.py +343 -0
- package/scripts/final-batch.py +315 -0
- package/scripts/final-push-06.py +242 -0
- package/scripts/mega-expansion.py +495 -0
- package/scripts/mega-final-06.py +512 -0
- package/scripts/more-apis.py +353 -0
- package/scripts/night-batch-05.py +546 -0
- package/scripts/night-batch-05b.py +427 -0
- package/scripts/night-expansion-02-23-batch2.py +284 -0
- package/scripts/night-expansion-02-23.py +383 -0
- package/scripts/night-expansion-03-batch2.py +336 -0
- package/scripts/night-expansion-03-batch3.py +392 -0
- package/scripts/night-expansion-03.py +573 -0
- package/scripts/night-expansion-04-23.py +461 -0
- package/scripts/night-expansion-05-23-batch2.py +431 -0
- package/scripts/night-expansion-05-23-batch3.py +366 -0
- package/scripts/night-expansion-05-23-final.py +349 -0
- package/scripts/night-expansion-05-23.py +540 -0
- package/scripts/night-expansion-06-23-batch2.py +261 -0
- package/scripts/night-expansion-06-23-batch3.py +213 -0
- package/scripts/night-expansion-06-23-batch4.py +261 -0
- package/scripts/night-expansion-06-23.py +309 -0
- package/scripts/night-expansion-06.py +325 -0
- package/scripts/night-expansion.py +441 -0
- package/scripts/night-final-batch-04-23.py +547 -0
- package/scripts/night-mega-batch-04-23.py +874 -0
- package/scripts/super-final-06.py +341 -0
- package/src/credentials.ts +12 -0
- package/src/execute.ts +93 -0
- package/src/index.ts +1 -1
- package/src/proxy.ts +1 -1
- package/src/registry/apis.json +93516 -7139
- package/src/registry/apis_expanded.json +3123 -3
|
@@ -0,0 +1,874 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""APIClaw Night Mega Batch - 2026-02-23 04:00 - Target 1000+ APIs"""
|
|
3
|
+
|
|
4
|
+
import json
|
|
5
|
+
import re
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
|
|
8
|
+
# Load current registry
|
|
9
|
+
with open('/Users/gustavhemmingsson/Projects/apiclaw/src/registry/apis.json', 'r') as f:
|
|
10
|
+
registry = json.load(f)
|
|
11
|
+
|
|
12
|
+
existing_ids = {api['id'] for api in registry['apis']}
|
|
13
|
+
initial_count = len(existing_ids)
|
|
14
|
+
new_apis = []
|
|
15
|
+
|
|
16
|
+
def add_api(name, desc, category, url, auth="unknown"):
|
|
17
|
+
api_id = re.sub(r'[^a-z0-9]', '-', name.lower()).strip('-')
|
|
18
|
+
api_id = re.sub(r'-+', '-', api_id)
|
|
19
|
+
if api_id not in existing_ids and api_id and len(api_id) > 2:
|
|
20
|
+
existing_ids.add(api_id)
|
|
21
|
+
new_apis.append({
|
|
22
|
+
"id": api_id,
|
|
23
|
+
"name": name,
|
|
24
|
+
"description": desc[:200] if len(desc) > 200 else desc,
|
|
25
|
+
"category": category,
|
|
26
|
+
"auth": auth,
|
|
27
|
+
"https": True,
|
|
28
|
+
"cors": "unknown",
|
|
29
|
+
"link": url,
|
|
30
|
+
"pricing": "unknown",
|
|
31
|
+
"keywords": []
|
|
32
|
+
})
|
|
33
|
+
return True
|
|
34
|
+
return False
|
|
35
|
+
|
|
36
|
+
# ===== MASSIVE API EXPANSION =====
|
|
37
|
+
|
|
38
|
+
# ---------- AI & Machine Learning (100+) ----------
|
|
39
|
+
ai_apis = [
|
|
40
|
+
("OpenAI GPT-4", "GPT-4 language model API", "https://platform.openai.com/docs/api-reference"),
|
|
41
|
+
("OpenAI DALL-E", "AI image generation", "https://platform.openai.com/docs/guides/images"),
|
|
42
|
+
("OpenAI Whisper", "Speech recognition API", "https://platform.openai.com/docs/guides/speech-to-text"),
|
|
43
|
+
("OpenAI TTS", "Text to speech API", "https://platform.openai.com/docs/guides/text-to-speech"),
|
|
44
|
+
("OpenAI Embeddings", "Vector embeddings API", "https://platform.openai.com/docs/guides/embeddings"),
|
|
45
|
+
("Claude API", "Anthropic Claude AI", "https://docs.anthropic.com/claude/reference"),
|
|
46
|
+
("Gemini API", "Google Gemini AI", "https://ai.google.dev/api/rest"),
|
|
47
|
+
("Llama API", "Meta Llama models", "https://llama.meta.com/"),
|
|
48
|
+
("Cohere Generate", "Text generation AI", "https://docs.cohere.ai/reference/generate"),
|
|
49
|
+
("Cohere Embed", "Text embeddings", "https://docs.cohere.ai/reference/embed"),
|
|
50
|
+
("Cohere Rerank", "Search reranking", "https://docs.cohere.ai/reference/rerank"),
|
|
51
|
+
("Stability AI SDXL", "Stable Diffusion XL", "https://platform.stability.ai/docs/api-reference"),
|
|
52
|
+
("Stability AI Video", "Video generation AI", "https://platform.stability.ai/docs/api-reference"),
|
|
53
|
+
("Midjourney API", "AI art generation", "https://docs.midjourney.com/"),
|
|
54
|
+
("FLUX AI", "Fast image generation", "https://blackforestlabs.ai/"),
|
|
55
|
+
("Leonardo AI", "AI image generation", "https://docs.leonardo.ai/"),
|
|
56
|
+
("Runway ML", "Creative AI tools", "https://docs.runwayml.com/"),
|
|
57
|
+
("Ideogram AI", "Text-to-image AI", "https://ideogram.ai/api"),
|
|
58
|
+
("ElevenLabs", "Voice AI synthesis", "https://elevenlabs.io/docs/api-reference"),
|
|
59
|
+
("Play.ht", "AI voice generator", "https://docs.play.ht/"),
|
|
60
|
+
("Resemble AI", "Voice cloning API", "https://www.resemble.ai/docs/"),
|
|
61
|
+
("Murf AI", "AI voice over", "https://murf.ai/api"),
|
|
62
|
+
("Speechify", "Text to speech AI", "https://speechify.com/api"),
|
|
63
|
+
("AssemblyAI", "Speech recognition", "https://www.assemblyai.com/docs/"),
|
|
64
|
+
("Deepgram", "Speech to text AI", "https://developers.deepgram.com/"),
|
|
65
|
+
("Rev AI", "Speech recognition", "https://www.rev.ai/docs"),
|
|
66
|
+
("Whisper API", "OpenAI Whisper", "https://platform.openai.com/docs/guides/speech-to-text"),
|
|
67
|
+
("Gladia", "Audio transcription", "https://docs.gladia.io/"),
|
|
68
|
+
("Hugging Face Inference", "ML model inference", "https://huggingface.co/docs/api-inference/"),
|
|
69
|
+
("Hugging Face Hub", "ML model repository", "https://huggingface.co/docs/hub/"),
|
|
70
|
+
("Replicate", "Run ML models", "https://replicate.com/docs"),
|
|
71
|
+
("Modal", "Serverless ML compute", "https://modal.com/docs"),
|
|
72
|
+
("Banana Dev", "ML model hosting", "https://docs.banana.dev/"),
|
|
73
|
+
("Baseten", "ML infrastructure", "https://docs.baseten.co/"),
|
|
74
|
+
("Cerebrium", "ML deployment", "https://docs.cerebrium.ai/"),
|
|
75
|
+
("LangChain", "LLM framework", "https://python.langchain.com/docs/"),
|
|
76
|
+
("LlamaIndex", "LLM data framework", "https://docs.llamaindex.ai/"),
|
|
77
|
+
("Pinecone", "Vector database", "https://docs.pinecone.io/"),
|
|
78
|
+
("Weaviate", "Vector search engine", "https://weaviate.io/developers/weaviate"),
|
|
79
|
+
("Qdrant", "Vector similarity search", "https://qdrant.tech/documentation/"),
|
|
80
|
+
("Milvus", "Vector database", "https://milvus.io/docs/"),
|
|
81
|
+
("Chroma", "Embedding database", "https://docs.trychroma.com/"),
|
|
82
|
+
("Clarifai", "Visual AI platform", "https://docs.clarifai.com/"),
|
|
83
|
+
("Roboflow", "Computer vision API", "https://docs.roboflow.com/"),
|
|
84
|
+
("Scale AI", "Data labeling platform", "https://scale.com/docs"),
|
|
85
|
+
("Labelbox", "Data labeling", "https://docs.labelbox.com/"),
|
|
86
|
+
("V7 Labs", "AI data platform", "https://docs.v7labs.com/"),
|
|
87
|
+
("Weights Biases", "ML experiment tracking", "https://docs.wandb.ai/"),
|
|
88
|
+
("MLflow", "ML lifecycle platform", "https://mlflow.org/docs/latest/rest-api.html"),
|
|
89
|
+
("Neptune AI", "ML metadata store", "https://docs.neptune.ai/"),
|
|
90
|
+
("Comet ML", "ML experiment tracking", "https://www.comet.com/docs/v2/api-and-sdk/rest-api/"),
|
|
91
|
+
("DVC", "Data version control", "https://dvc.org/doc"),
|
|
92
|
+
("Gradient", "ML cloud platform", "https://docs.paperspace.com/"),
|
|
93
|
+
("Lambda Labs", "GPU cloud", "https://lambdalabs.com/api"),
|
|
94
|
+
("CoreWeave", "GPU cloud platform", "https://docs.coreweave.com/"),
|
|
95
|
+
("RunPod", "GPU cloud AI", "https://docs.runpod.io/"),
|
|
96
|
+
("Vast AI", "GPU marketplace", "https://vast.ai/docs"),
|
|
97
|
+
("Suno AI", "AI music generation", "https://suno.ai/"),
|
|
98
|
+
("Udio", "AI music creation", "https://udio.com/"),
|
|
99
|
+
("Mubert", "AI music generation", "https://mubert.com/api"),
|
|
100
|
+
("AIVA", "AI music composer", "https://www.aiva.ai/api"),
|
|
101
|
+
("Riffusion", "AI music from text", "https://riffusion.com/"),
|
|
102
|
+
("Devin AI", "AI software engineer", "https://devin.ai/"),
|
|
103
|
+
("Cursor AI", "AI code editor", "https://cursor.sh/"),
|
|
104
|
+
("Tabnine", "AI code completion", "https://www.tabnine.com/"),
|
|
105
|
+
("Codeium", "AI code assistant", "https://codeium.com/"),
|
|
106
|
+
("Amazon CodeWhisperer", "AI coding assistant", "https://aws.amazon.com/codewhisperer/"),
|
|
107
|
+
("Sourcegraph Cody", "AI coding assistant", "https://docs.sourcegraph.com/cody"),
|
|
108
|
+
("Phind", "AI search for developers", "https://www.phind.com/"),
|
|
109
|
+
("Perplexity AI", "AI search engine", "https://docs.perplexity.ai/"),
|
|
110
|
+
("You.com", "AI search platform", "https://you.com/api"),
|
|
111
|
+
("Brave Search AI", "AI search API", "https://api.search.brave.com/"),
|
|
112
|
+
("Kagi AI", "AI search engine", "https://help.kagi.com/kagi/api/"),
|
|
113
|
+
("LLMonitor", "LLM observability", "https://llmonitor.com/docs"),
|
|
114
|
+
("Helicone", "LLM observability", "https://docs.helicone.ai/"),
|
|
115
|
+
("Langfuse", "LLM engineering platform", "https://langfuse.com/docs"),
|
|
116
|
+
("Portkey", "LLM gateway", "https://portkey.ai/docs"),
|
|
117
|
+
("LiteLLM", "LLM proxy", "https://docs.litellm.ai/"),
|
|
118
|
+
("OpenRouter", "LLM router", "https://openrouter.ai/docs"),
|
|
119
|
+
("Together AI", "Open source AI", "https://docs.together.ai/"),
|
|
120
|
+
("Anyscale", "Ray platform", "https://docs.anyscale.com/"),
|
|
121
|
+
("Fireworks AI", "Fast inference", "https://readme.fireworks.ai/"),
|
|
122
|
+
("Groq", "Fast AI inference", "https://console.groq.com/docs"),
|
|
123
|
+
("Lepton AI", "AI inference", "https://www.lepton.ai/docs"),
|
|
124
|
+
("SambaNova", "AI platform", "https://www.sambanova.ai/"),
|
|
125
|
+
("Cerebras", "AI compute", "https://www.cerebras.net/"),
|
|
126
|
+
("Modular", "AI infrastructure", "https://docs.modular.com/"),
|
|
127
|
+
("Unstructured", "Document parsing", "https://unstructured-io.github.io/unstructured/"),
|
|
128
|
+
("LlamaParse", "Document parsing", "https://docs.llamaindex.ai/en/stable/llama_cloud/llama_parse/"),
|
|
129
|
+
("Docugami", "Document AI", "https://docugami.com/api"),
|
|
130
|
+
("Nanonets", "Document AI", "https://nanonets.com/documentation/"),
|
|
131
|
+
("Rossum", "Document processing", "https://rossum.ai/developers/"),
|
|
132
|
+
("Anthropic Tools", "Claude tools API", "https://docs.anthropic.com/claude/docs/tool-use"),
|
|
133
|
+
("OpenAI Functions", "GPT function calling", "https://platform.openai.com/docs/guides/function-calling"),
|
|
134
|
+
("Voyage AI", "Embeddings API", "https://docs.voyageai.com/"),
|
|
135
|
+
("Jina AI", "AI search embeddings", "https://jina.ai/embeddings/"),
|
|
136
|
+
("Nomic AI", "Open embeddings", "https://docs.nomic.ai/"),
|
|
137
|
+
("Mixedbread AI", "Embeddings API", "https://www.mixedbread.ai/docs"),
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
for name, desc, url in ai_apis:
|
|
141
|
+
add_api(name, desc, "AI & ML", url, "apiKey")
|
|
142
|
+
|
|
143
|
+
# ---------- Automation & Integration (80+) ----------
|
|
144
|
+
automation_apis = [
|
|
145
|
+
("Zapier", "Automation platform", "https://platform.zapier.com/"),
|
|
146
|
+
("Make", "Visual automation", "https://www.make.com/en/api-documentation"),
|
|
147
|
+
("n8n", "Workflow automation", "https://docs.n8n.io/api/"),
|
|
148
|
+
("Pipedream", "Integration platform", "https://pipedream.com/docs"),
|
|
149
|
+
("Tray.io", "Enterprise automation", "https://tray.io/documentation/"),
|
|
150
|
+
("Workato", "Enterprise integration", "https://docs.workato.com/"),
|
|
151
|
+
("Automate.io", "Cloud automation", "https://automate.io/"),
|
|
152
|
+
("Integromat", "Automation tool", "https://www.integromat.com/en/help/api"),
|
|
153
|
+
("IFTTT", "Applet automation", "https://platform.ifttt.com/docs"),
|
|
154
|
+
("Power Automate", "Microsoft automation", "https://docs.microsoft.com/power-automate/"),
|
|
155
|
+
("Retool", "Internal tools platform", "https://docs.retool.com/"),
|
|
156
|
+
("Budibase", "Low-code platform", "https://docs.budibase.com/"),
|
|
157
|
+
("Appsmith", "Low-code platform", "https://docs.appsmith.com/"),
|
|
158
|
+
("Tooljet", "Low-code platform", "https://docs.tooljet.com/"),
|
|
159
|
+
("Superblocks", "Internal tools", "https://docs.superblocks.com/"),
|
|
160
|
+
("Windmill", "Developer platform", "https://www.windmill.dev/docs/"),
|
|
161
|
+
("Airplane", "Internal tools", "https://docs.airplane.dev/"),
|
|
162
|
+
("Internal.io", "Internal tools", "https://www.internal.io/docs"),
|
|
163
|
+
("Appgyver", "No-code platform", "https://docs.appgyver.com/"),
|
|
164
|
+
("Bubble", "No-code app builder", "https://manual.bubble.io/"),
|
|
165
|
+
("Webflow", "Visual web builder", "https://developers.webflow.com/"),
|
|
166
|
+
("Framer", "Design to code", "https://www.framer.com/developers/"),
|
|
167
|
+
("Plasmic", "Visual builder", "https://docs.plasmic.app/"),
|
|
168
|
+
("Builder.io", "Visual CMS", "https://www.builder.io/c/docs"),
|
|
169
|
+
("Contentful", "Headless CMS", "https://www.contentful.com/developers/docs/"),
|
|
170
|
+
("Sanity", "Headless CMS", "https://www.sanity.io/docs"),
|
|
171
|
+
("Strapi", "Headless CMS", "https://docs.strapi.io/"),
|
|
172
|
+
("Directus", "Data platform", "https://docs.directus.io/"),
|
|
173
|
+
("Ghost", "Publishing platform", "https://ghost.org/docs/content-api/"),
|
|
174
|
+
("Prismic", "Headless CMS", "https://prismic.io/docs/technologies/rest-api"),
|
|
175
|
+
("DatoCMS", "Headless CMS", "https://www.datocms.com/docs/content-delivery-api"),
|
|
176
|
+
("Storyblok", "Headless CMS", "https://www.storyblok.com/docs/api/"),
|
|
177
|
+
("Hygraph", "GraphQL CMS", "https://hygraph.com/docs"),
|
|
178
|
+
("Payload CMS", "Headless CMS", "https://payloadcms.com/docs/rest-api"),
|
|
179
|
+
("KeystoneJS", "CMS framework", "https://keystonejs.com/docs/graphql/overview"),
|
|
180
|
+
("Forestry", "Git-based CMS", "https://forestry.io/docs/"),
|
|
181
|
+
("TinaCMS", "Git-backed CMS", "https://tina.io/docs/"),
|
|
182
|
+
("Netlify CMS", "Open source CMS", "https://www.netlifycms.org/docs/api/"),
|
|
183
|
+
("Webhook", "Webhook service", "https://webhook.site/"),
|
|
184
|
+
("RequestBin", "HTTP request inspector", "https://requestbin.com/"),
|
|
185
|
+
("Hookdeck", "Webhook infrastructure", "https://hookdeck.com/docs"),
|
|
186
|
+
("Svix", "Webhook service", "https://docs.svix.com/"),
|
|
187
|
+
("Convoy", "Webhook gateway", "https://convoy.readme.io/"),
|
|
188
|
+
("Inngest", "Event-driven functions", "https://www.inngest.com/docs"),
|
|
189
|
+
("Trigger.dev", "Background jobs", "https://trigger.dev/docs"),
|
|
190
|
+
("Defer", "Background jobs", "https://www.defer.run/docs"),
|
|
191
|
+
("Quirrel", "Job scheduling", "https://docs.quirrel.dev/"),
|
|
192
|
+
("BullMQ", "Queue system", "https://docs.bullmq.io/"),
|
|
193
|
+
("Temporal", "Workflow engine", "https://docs.temporal.io/"),
|
|
194
|
+
("Prefect", "Data orchestration", "https://docs.prefect.io/"),
|
|
195
|
+
("Dagster", "Data orchestration", "https://docs.dagster.io/"),
|
|
196
|
+
("Apache Airflow", "Workflow platform", "https://airflow.apache.org/docs/"),
|
|
197
|
+
("Conductor", "Workflow orchestration", "https://conductor.netflix.com/"),
|
|
198
|
+
("Argo Workflows", "Kubernetes workflows", "https://argoproj.github.io/argo-workflows/"),
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
for name, desc, url in automation_apis:
|
|
202
|
+
add_api(name, desc, "Automation", url, "apiKey")
|
|
203
|
+
|
|
204
|
+
# ---------- Analytics & Data (60+) ----------
|
|
205
|
+
analytics_apis = [
|
|
206
|
+
("Google Analytics 4", "Web analytics", "https://developers.google.com/analytics/devguides/reporting/data/v1"),
|
|
207
|
+
("Mixpanel", "Product analytics", "https://developer.mixpanel.com/"),
|
|
208
|
+
("Amplitude", "Product analytics", "https://www.docs.developers.amplitude.com/"),
|
|
209
|
+
("Segment", "Customer data platform", "https://segment.com/docs/api/"),
|
|
210
|
+
("PostHog", "Product analytics", "https://posthog.com/docs/api"),
|
|
211
|
+
("Heap", "Digital analytics", "https://developers.heap.io/"),
|
|
212
|
+
("Pendo", "Product analytics", "https://engageapi.pendo.io/"),
|
|
213
|
+
("FullStory", "Digital experience", "https://developer.fullstory.com/"),
|
|
214
|
+
("Hotjar", "Behavior analytics", "https://help.hotjar.com/hc/en-us/articles/115011639887"),
|
|
215
|
+
("LogRocket", "Session replay", "https://docs.logrocket.com/"),
|
|
216
|
+
("Smartlook", "Analytics recording", "https://web.smartlook.com/docs/"),
|
|
217
|
+
("Mouseflow", "Session replay", "https://help.mouseflow.com/en/articles/4364529"),
|
|
218
|
+
("Lucky Orange", "Website analytics", "https://www.luckyorange.com/help/"),
|
|
219
|
+
("Plausible", "Privacy-friendly analytics", "https://plausible.io/docs/"),
|
|
220
|
+
("Fathom", "Simple analytics", "https://usefathom.com/api"),
|
|
221
|
+
("Simple Analytics", "Privacy analytics", "https://docs.simpleanalytics.com/api"),
|
|
222
|
+
("Matomo", "Web analytics", "https://developer.matomo.org/api-reference/"),
|
|
223
|
+
("Umami", "Open source analytics", "https://umami.is/docs/api"),
|
|
224
|
+
("Pirsch", "Privacy analytics", "https://pirsch.io/api"),
|
|
225
|
+
("Splitbee", "Analytics tracking", "https://splitbee.io/docs"),
|
|
226
|
+
("June", "Product analytics", "https://www.june.so/docs"),
|
|
227
|
+
("Koala", "Visitor intelligence", "https://getkoala.com/docs/api"),
|
|
228
|
+
("Clearbit", "B2B data enrichment", "https://clearbit.com/docs"),
|
|
229
|
+
("ZoomInfo", "B2B intelligence", "https://developers.zoominfo.com/"),
|
|
230
|
+
("Apollo", "Sales intelligence", "https://www.apollo.io/docs/"),
|
|
231
|
+
("Lusha", "B2B data", "https://www.lusha.com/api/"),
|
|
232
|
+
("Hunter", "Email finder", "https://hunter.io/api-documentation"),
|
|
233
|
+
("Snov.io", "Sales automation", "https://snov.io/api"),
|
|
234
|
+
("Dropcontact", "Data enrichment", "https://dropcontact.com/api"),
|
|
235
|
+
("People Data Labs", "People data", "https://docs.peopledatalabs.com/"),
|
|
236
|
+
("Proxycurl", "LinkedIn data", "https://nubela.co/proxycurl/docs"),
|
|
237
|
+
("Crunchbase", "Company data", "https://data.crunchbase.com/docs"),
|
|
238
|
+
("PitchBook", "Financial data", "https://pitchbook.com/data"),
|
|
239
|
+
("CB Insights", "Market intelligence", "https://www.cbinsights.com/api"),
|
|
240
|
+
("Owler", "Company insights", "https://corp.owler.com/products/owler-api"),
|
|
241
|
+
("SimilarWeb", "Web analytics", "https://developers.similarweb.com/"),
|
|
242
|
+
("SEMrush", "SEO analytics", "https://developer.semrush.com/"),
|
|
243
|
+
("Ahrefs", "SEO tools", "https://ahrefs.com/api"),
|
|
244
|
+
("Moz", "SEO software", "https://moz.com/products/api"),
|
|
245
|
+
("Majestic", "Link intelligence", "https://developer.majestic.com/"),
|
|
246
|
+
("SpyFu", "SEO PPC research", "https://www.spyfu.com/api"),
|
|
247
|
+
("Serpstat", "SEO platform", "https://serpstat.com/api/"),
|
|
248
|
+
("DataForSEO", "SEO data", "https://docs.dataforseo.com/"),
|
|
249
|
+
("Screaming Frog", "SEO spider", "https://www.screamingfrog.co.uk/"),
|
|
250
|
+
("BrightLocal", "Local SEO", "https://www.brightlocal.com/api/"),
|
|
251
|
+
("Yext", "Digital presence", "https://developer.yext.com/"),
|
|
252
|
+
("Google Search Console", "Search performance", "https://developers.google.com/webmaster-tools/"),
|
|
253
|
+
("Bing Webmaster", "Search tools", "https://docs.microsoft.com/en-us/bingwebmaster/"),
|
|
254
|
+
("Google PageSpeed", "Performance insights", "https://developers.google.com/speed/docs/insights/v5/get-started"),
|
|
255
|
+
("GTmetrix", "Page speed", "https://gtmetrix.com/api/"),
|
|
256
|
+
("WebPageTest", "Performance testing", "https://docs.webpagetest.org/api/"),
|
|
257
|
+
("Lighthouse", "Web auditing", "https://developers.google.com/web/tools/lighthouse"),
|
|
258
|
+
("Calibre", "Core Web Vitals", "https://calibreapp.com/docs/api"),
|
|
259
|
+
("SpeedCurve", "Performance monitoring", "https://support.speedcurve.com/en/articles/415403"),
|
|
260
|
+
("DebugBear", "Performance monitoring", "https://www.debugbear.com/docs/api"),
|
|
261
|
+
("Treo", "Web performance", "https://treo.sh/docs"),
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
for name, desc, url in analytics_apis:
|
|
265
|
+
add_api(name, desc, "Analytics", url, "apiKey")
|
|
266
|
+
|
|
267
|
+
# ---------- Financial Services (70+) ----------
|
|
268
|
+
finance_apis = [
|
|
269
|
+
("Stripe", "Payment processing", "https://stripe.com/docs/api"),
|
|
270
|
+
("Stripe Connect", "Marketplace payments", "https://stripe.com/docs/connect"),
|
|
271
|
+
("Stripe Identity", "Identity verification", "https://stripe.com/docs/identity"),
|
|
272
|
+
("Stripe Radar", "Fraud prevention", "https://stripe.com/docs/radar"),
|
|
273
|
+
("PayPal", "Payment platform", "https://developer.paypal.com/docs/api/overview/"),
|
|
274
|
+
("Braintree", "Payment gateway", "https://developer.paypal.com/braintree/docs/"),
|
|
275
|
+
("Square", "Payments commerce", "https://developer.squareup.com/reference/square"),
|
|
276
|
+
("Adyen", "Payment platform", "https://docs.adyen.com/api-explorer/"),
|
|
277
|
+
("Checkout.com", "Payment processing", "https://www.checkout.com/docs/"),
|
|
278
|
+
("Mollie", "Payment API", "https://docs.mollie.com/"),
|
|
279
|
+
("Razorpay", "Payment gateway", "https://razorpay.com/docs/"),
|
|
280
|
+
("Paddle", "SaaS payments", "https://developer.paddle.com/"),
|
|
281
|
+
("Chargebee", "Subscription billing", "https://apidocs.chargebee.com/"),
|
|
282
|
+
("Recurly", "Subscription management", "https://developers.recurly.com/"),
|
|
283
|
+
("Zuora", "Subscription platform", "https://developer.zuora.com/"),
|
|
284
|
+
("FastSpring", "E-commerce platform", "https://developer.fastspring.com/"),
|
|
285
|
+
("Gumroad", "Creator commerce", "https://gumroad.com/api"),
|
|
286
|
+
("Lemon Squeezy", "Digital payments", "https://docs.lemonsqueezy.com/"),
|
|
287
|
+
("Wise", "International payments", "https://api-docs.wise.com/"),
|
|
288
|
+
("Revolut", "Banking API", "https://developer.revolut.com/"),
|
|
289
|
+
("Mercury", "Banking API", "https://docs.mercury.com/"),
|
|
290
|
+
("Brex", "Business finance", "https://developer.brex.com/"),
|
|
291
|
+
("Ramp", "Corporate cards", "https://docs.ramp.com/"),
|
|
292
|
+
("Plaid", "Financial data", "https://plaid.com/docs/"),
|
|
293
|
+
("Finicity", "Financial data", "https://developer.finicity.com/"),
|
|
294
|
+
("Yodlee", "Financial aggregation", "https://developer.yodlee.com/"),
|
|
295
|
+
("MX", "Financial data", "https://docs.mx.com/"),
|
|
296
|
+
("Tink", "Open banking", "https://docs.tink.com/"),
|
|
297
|
+
("TrueLayer", "Open banking", "https://docs.truelayer.com/"),
|
|
298
|
+
("Salt Edge", "Open banking", "https://docs.saltedge.com/"),
|
|
299
|
+
("Nordigen", "Open banking", "https://nordigen.com/en/docs/"),
|
|
300
|
+
("Belvo", "Open finance", "https://developers.belvo.com/"),
|
|
301
|
+
("Mono", "Open banking Africa", "https://docs.mono.co/"),
|
|
302
|
+
("Stitch", "Open banking Africa", "https://stitch.money/docs"),
|
|
303
|
+
("Dapi", "Open banking MENA", "https://docs.dapi.com/"),
|
|
304
|
+
("Lean", "Open banking MENA", "https://docs.leantech.me/"),
|
|
305
|
+
("Coinbase", "Crypto platform", "https://docs.cloud.coinbase.com/"),
|
|
306
|
+
("Binance", "Crypto exchange", "https://binance-docs.github.io/apidocs/"),
|
|
307
|
+
("Kraken", "Crypto exchange", "https://docs.kraken.com/rest/"),
|
|
308
|
+
("FTX", "Crypto exchange", "https://docs.ftx.com/"),
|
|
309
|
+
("Gemini", "Crypto exchange", "https://docs.gemini.com/"),
|
|
310
|
+
("Bitfinex", "Crypto exchange", "https://docs.bitfinex.com/"),
|
|
311
|
+
("Kucoin", "Crypto exchange", "https://docs.kucoin.com/"),
|
|
312
|
+
("Bybit", "Crypto exchange", "https://bybit-exchange.github.io/docs/"),
|
|
313
|
+
("OKX", "Crypto exchange", "https://www.okx.com/docs-v5/"),
|
|
314
|
+
("Moralis", "Web3 data", "https://docs.moralis.io/"),
|
|
315
|
+
("Alchemy", "Web3 development", "https://docs.alchemy.com/"),
|
|
316
|
+
("Infura", "Web3 infrastructure", "https://docs.infura.io/"),
|
|
317
|
+
("QuickNode", "Web3 infrastructure", "https://www.quicknode.com/docs"),
|
|
318
|
+
("Chainstack", "Blockchain platform", "https://docs.chainstack.com/"),
|
|
319
|
+
("Etherscan", "Ethereum explorer", "https://docs.etherscan.io/"),
|
|
320
|
+
("Polygonscan", "Polygon explorer", "https://polygonscan.com/apis"),
|
|
321
|
+
("BscScan", "BSC explorer", "https://docs.bscscan.com/"),
|
|
322
|
+
("Arbiscan", "Arbitrum explorer", "https://arbiscan.io/apis"),
|
|
323
|
+
("Snowtrace", "Avalanche explorer", "https://snowtrace.io/apis"),
|
|
324
|
+
("Solscan", "Solana explorer", "https://docs.solscan.io/"),
|
|
325
|
+
("The Graph", "Blockchain indexing", "https://thegraph.com/docs/"),
|
|
326
|
+
("Dune", "Blockchain analytics", "https://dune.com/docs/api/"),
|
|
327
|
+
("Nansen", "Blockchain analytics", "https://docs.nansen.ai/"),
|
|
328
|
+
("Flipside", "Blockchain analytics", "https://docs.flipsidecrypto.com/"),
|
|
329
|
+
("DefiLlama", "DeFi data", "https://defillama.com/docs/api"),
|
|
330
|
+
("CoinGecko", "Crypto data", "https://www.coingecko.com/api/documentation"),
|
|
331
|
+
("CoinMarketCap", "Crypto data", "https://coinmarketcap.com/api/documentation/"),
|
|
332
|
+
("Messari", "Crypto research", "https://messari.io/api"),
|
|
333
|
+
("Glassnode", "Onchain data", "https://docs.glassnode.com/"),
|
|
334
|
+
("Santiment", "Crypto analytics", "https://api.santiment.net/"),
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
for name, desc, url in finance_apis:
|
|
338
|
+
add_api(name, desc, "Finance", url, "apiKey")
|
|
339
|
+
|
|
340
|
+
# ---------- Communication & Messaging (50+) ----------
|
|
341
|
+
comm_apis = [
|
|
342
|
+
("Twilio SMS", "SMS API", "https://www.twilio.com/docs/sms"),
|
|
343
|
+
("Twilio Voice", "Voice calls", "https://www.twilio.com/docs/voice"),
|
|
344
|
+
("Twilio Video", "Video calls", "https://www.twilio.com/docs/video"),
|
|
345
|
+
("Twilio WhatsApp", "WhatsApp Business", "https://www.twilio.com/whatsapp"),
|
|
346
|
+
("SendGrid", "Email delivery", "https://docs.sendgrid.com/api-reference"),
|
|
347
|
+
("Mailgun", "Email API", "https://documentation.mailgun.com/"),
|
|
348
|
+
("Postmark", "Email API", "https://postmarkapp.com/developer"),
|
|
349
|
+
("Amazon SES", "Email service", "https://docs.aws.amazon.com/ses/"),
|
|
350
|
+
("Mailchimp Transactional", "Email delivery", "https://mailchimp.com/developer/transactional/"),
|
|
351
|
+
("SparkPost", "Email delivery", "https://developers.sparkpost.com/"),
|
|
352
|
+
("Sendwithus", "Email automation", "https://www.dyspatch.io/"),
|
|
353
|
+
("Customer.io", "Messaging automation", "https://customer.io/docs/api/"),
|
|
354
|
+
("Braze", "Customer engagement", "https://www.braze.com/docs/api/"),
|
|
355
|
+
("Iterable", "Growth marketing", "https://api.iterable.com/api/docs"),
|
|
356
|
+
("Klaviyo", "Marketing automation", "https://developers.klaviyo.com/"),
|
|
357
|
+
("ActiveCampaign", "Email marketing", "https://developers.activecampaign.com/"),
|
|
358
|
+
("Drip", "E-commerce CRM", "https://developer.drip.com/"),
|
|
359
|
+
("ConvertKit", "Creator marketing", "https://developers.convertkit.com/"),
|
|
360
|
+
("Mailerlite", "Email marketing", "https://developers.mailerlite.com/"),
|
|
361
|
+
("Sendinblue", "Marketing platform", "https://developers.sendinblue.com/"),
|
|
362
|
+
("Moosend", "Email marketing", "https://www.moosend.com/api"),
|
|
363
|
+
("Omnisend", "E-commerce marketing", "https://api-docs.omnisend.com/"),
|
|
364
|
+
("Pushover", "Push notifications", "https://pushover.net/api"),
|
|
365
|
+
("OneSignal", "Push notifications", "https://documentation.onesignal.com/"),
|
|
366
|
+
("Firebase Cloud Messaging", "Push notifications", "https://firebase.google.com/docs/cloud-messaging"),
|
|
367
|
+
("Pusher", "Realtime messaging", "https://pusher.com/docs/"),
|
|
368
|
+
("Ably", "Realtime platform", "https://ably.com/docs"),
|
|
369
|
+
("PubNub", "Realtime messaging", "https://www.pubnub.com/docs/"),
|
|
370
|
+
("Stream", "Activity feeds chat", "https://getstream.io/docs/"),
|
|
371
|
+
("SendBird", "Chat messaging", "https://sendbird.com/docs"),
|
|
372
|
+
("CometChat", "Chat SDK", "https://www.cometchat.com/docs"),
|
|
373
|
+
("Intercom", "Customer messaging", "https://developers.intercom.com/"),
|
|
374
|
+
("Crisp", "Customer messaging", "https://docs.crisp.chat/api/"),
|
|
375
|
+
("Drift", "Conversational marketing", "https://devdocs.drift.com/"),
|
|
376
|
+
("LiveChat", "Customer service", "https://developers.livechat.com/"),
|
|
377
|
+
("Zendesk", "Customer service", "https://developer.zendesk.com/"),
|
|
378
|
+
("Freshdesk", "Customer support", "https://developers.freshdesk.com/"),
|
|
379
|
+
("Help Scout", "Customer support", "https://developer.helpscout.com/"),
|
|
380
|
+
("Front", "Customer operations", "https://dev.frontapp.com/"),
|
|
381
|
+
("Gorgias", "E-commerce support", "https://developers.gorgias.com/"),
|
|
382
|
+
("Slack", "Team messaging", "https://api.slack.com/"),
|
|
383
|
+
("Discord", "Community platform", "https://discord.com/developers/docs"),
|
|
384
|
+
("Microsoft Teams", "Team collaboration", "https://docs.microsoft.com/graph/teams-concept-overview"),
|
|
385
|
+
("Telegram Bot", "Messaging bot", "https://core.telegram.org/bots/api"),
|
|
386
|
+
("WhatsApp Business", "WhatsApp API", "https://developers.facebook.com/docs/whatsapp/"),
|
|
387
|
+
("Facebook Messenger", "Messenger platform", "https://developers.facebook.com/docs/messenger-platform/"),
|
|
388
|
+
("Viber", "Messaging platform", "https://developers.viber.com/"),
|
|
389
|
+
("LINE", "Messaging platform", "https://developers.line.biz/en/docs/"),
|
|
390
|
+
("WeChat", "Super app platform", "https://developers.weixin.qq.com/"),
|
|
391
|
+
("Zoom", "Video communications", "https://developers.zoom.us/docs/api/"),
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
for name, desc, url in comm_apis:
|
|
395
|
+
add_api(name, desc, "Communication", url, "apiKey")
|
|
396
|
+
|
|
397
|
+
# ---------- E-commerce & Retail (50+) ----------
|
|
398
|
+
ecommerce_apis = [
|
|
399
|
+
("Shopify Admin", "Store management", "https://shopify.dev/docs/admin-api/"),
|
|
400
|
+
("Shopify Storefront", "Headless commerce", "https://shopify.dev/docs/storefront-api/"),
|
|
401
|
+
("WooCommerce", "WordPress commerce", "https://woocommerce.github.io/woocommerce-rest-api-docs/"),
|
|
402
|
+
("BigCommerce", "E-commerce platform", "https://developer.bigcommerce.com/"),
|
|
403
|
+
("Magento", "Adobe Commerce", "https://developer.adobe.com/commerce/webapi/"),
|
|
404
|
+
("Salesforce Commerce", "Commerce cloud", "https://developer.salesforce.com/docs/commerce"),
|
|
405
|
+
("Commercetools", "Headless commerce", "https://docs.commercetools.com/api/"),
|
|
406
|
+
("Saleor", "GraphQL commerce", "https://docs.saleor.io/"),
|
|
407
|
+
("Medusa", "Headless commerce", "https://docs.medusajs.com/"),
|
|
408
|
+
("Spree", "Open source commerce", "https://developer.spreecommerce.org/"),
|
|
409
|
+
("PrestaShop", "E-commerce platform", "https://devdocs.prestashop.com/"),
|
|
410
|
+
("OpenCart", "E-commerce platform", "https://docs.opencart.com/"),
|
|
411
|
+
("Ecwid", "E-commerce platform", "https://api-docs.ecwid.com/"),
|
|
412
|
+
("Wix Stores", "E-commerce", "https://dev.wix.com/docs/rest/api-overview/"),
|
|
413
|
+
("Squarespace", "Commerce platform", "https://developers.squarespace.com/commerce-apis"),
|
|
414
|
+
("Amazon SP-API", "Selling Partner API", "https://developer-docs.amazon.com/sp-api/"),
|
|
415
|
+
("eBay", "Marketplace API", "https://developer.ebay.com/"),
|
|
416
|
+
("Etsy", "Handmade marketplace", "https://developers.etsy.com/"),
|
|
417
|
+
("Walmart", "Marketplace API", "https://developer.walmart.com/"),
|
|
418
|
+
("Target", "Retail API", "https://developer.target.com/"),
|
|
419
|
+
("Best Buy", "Retail API", "https://developer.bestbuy.com/"),
|
|
420
|
+
("Home Depot", "Retail API", "https://developer.homedepot.com/"),
|
|
421
|
+
("Kroger", "Grocery API", "https://developer.kroger.com/"),
|
|
422
|
+
("Instacart", "Grocery delivery", "https://docs.instacart.com/"),
|
|
423
|
+
("DoorDash", "Delivery platform", "https://developer.doordash.com/"),
|
|
424
|
+
("Uber Eats", "Food delivery", "https://developer.uber.com/docs/eats/introduction"),
|
|
425
|
+
("Grubhub", "Food delivery", "https://developers.grubhub.com/"),
|
|
426
|
+
("Postmates", "Delivery API", "https://postmates.com/developer/"),
|
|
427
|
+
("Shippo", "Shipping API", "https://goshippo.com/docs/"),
|
|
428
|
+
("EasyPost", "Shipping API", "https://www.easypost.com/docs/api"),
|
|
429
|
+
("ShipStation", "Shipping software", "https://www.shipstation.com/docs/"),
|
|
430
|
+
("ShipEngine", "Shipping API", "https://shipengine.github.io/shipengine-openapi/"),
|
|
431
|
+
("Shipbob", "Fulfillment API", "https://developer.shipbob.com/"),
|
|
432
|
+
("Flexport", "Freight API", "https://apidocs.flexport.com/"),
|
|
433
|
+
("Returnly", "Returns management", "https://returnly.com/developers/"),
|
|
434
|
+
("Loop Returns", "Returns platform", "https://docs.loopreturns.com/"),
|
|
435
|
+
("AfterShip", "Tracking API", "https://docs.aftership.com/"),
|
|
436
|
+
("Parcel Perform", "Delivery tracking", "https://parcelperform.com/docs/"),
|
|
437
|
+
("Snipcart", "E-commerce cart", "https://docs.snipcart.com/"),
|
|
438
|
+
("Foxy", "E-commerce cart", "https://api.foxycart.com/docs"),
|
|
439
|
+
("TaxJar", "Sales tax API", "https://developers.taxjar.com/"),
|
|
440
|
+
("Avalara", "Tax compliance", "https://developer.avalara.com/"),
|
|
441
|
+
("Vertex", "Tax technology", "https://developer.vertexcloud.com/"),
|
|
442
|
+
("Bolt", "Checkout platform", "https://developers.bolt.com/"),
|
|
443
|
+
("Fast", "Checkout platform", "https://www.fast.co/developers"),
|
|
444
|
+
("Shop Pay", "Accelerated checkout", "https://shopify.dev/docs/custom-storefronts/building-with-the-customer-account-api/shop-pay"),
|
|
445
|
+
("Affirm", "Buy now pay later", "https://docs.affirm.com/"),
|
|
446
|
+
("Afterpay", "Pay in installments", "https://developers.afterpay.com/"),
|
|
447
|
+
("Klarna", "Shopping services", "https://docs.klarna.com/"),
|
|
448
|
+
("Sezzle", "Buy now pay later", "https://docs.sezzle.com/"),
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
for name, desc, url in ecommerce_apis:
|
|
452
|
+
add_api(name, desc, "E-commerce", url, "apiKey")
|
|
453
|
+
|
|
454
|
+
# ---------- Developer Tools (60+) ----------
|
|
455
|
+
devtools_apis = [
|
|
456
|
+
("GitHub", "Code hosting", "https://docs.github.com/rest"),
|
|
457
|
+
("GitHub GraphQL", "GitHub data", "https://docs.github.com/graphql"),
|
|
458
|
+
("GitLab", "DevOps platform", "https://docs.gitlab.com/ee/api/"),
|
|
459
|
+
("Bitbucket", "Code hosting", "https://developer.atlassian.com/cloud/bitbucket/"),
|
|
460
|
+
("Jira", "Issue tracking", "https://developer.atlassian.com/cloud/jira/platform/rest/"),
|
|
461
|
+
("Confluence", "Documentation", "https://developer.atlassian.com/cloud/confluence/rest/"),
|
|
462
|
+
("Linear", "Issue tracking", "https://developers.linear.app/"),
|
|
463
|
+
("Notion", "Workspace", "https://developers.notion.com/"),
|
|
464
|
+
("Coda", "Docs platform", "https://coda.io/developers/apis/v1"),
|
|
465
|
+
("Airtable", "Database", "https://airtable.com/developers/web/api/"),
|
|
466
|
+
("Baserow", "Database", "https://baserow.io/api-docs"),
|
|
467
|
+
("NocoDB", "Database", "https://docs.nocodb.com/"),
|
|
468
|
+
("Supabase", "Backend platform", "https://supabase.com/docs/guides/api"),
|
|
469
|
+
("Firebase", "App platform", "https://firebase.google.com/docs/reference"),
|
|
470
|
+
("Appwrite", "Backend server", "https://appwrite.io/docs"),
|
|
471
|
+
("Parse", "Backend framework", "https://parseplatform.org/"),
|
|
472
|
+
("Backendless", "Backend platform", "https://backendless.com/docs/"),
|
|
473
|
+
("Pocketbase", "Backend in file", "https://pocketbase.io/docs/"),
|
|
474
|
+
("Convex", "Backend platform", "https://docs.convex.dev/"),
|
|
475
|
+
("Xata", "Serverless database", "https://xata.io/docs"),
|
|
476
|
+
("Planetscale", "MySQL platform", "https://planetscale.com/docs"),
|
|
477
|
+
("CockroachDB", "Distributed SQL", "https://www.cockroachlabs.com/docs/"),
|
|
478
|
+
("Neon", "Serverless Postgres", "https://neon.tech/docs"),
|
|
479
|
+
("Turso", "Edge database", "https://docs.turso.tech/"),
|
|
480
|
+
("Railway", "Deployment platform", "https://docs.railway.app/"),
|
|
481
|
+
("Render", "Cloud platform", "https://render.com/docs"),
|
|
482
|
+
("Fly.io", "Global apps", "https://fly.io/docs/"),
|
|
483
|
+
("Vercel", "Frontend cloud", "https://vercel.com/docs"),
|
|
484
|
+
("Netlify", "Web platform", "https://docs.netlify.com/"),
|
|
485
|
+
("Cloudflare Workers", "Edge compute", "https://developers.cloudflare.com/workers/"),
|
|
486
|
+
("Deno Deploy", "Edge runtime", "https://deno.com/deploy/docs"),
|
|
487
|
+
("Fastly", "Edge cloud", "https://developer.fastly.com/"),
|
|
488
|
+
("Akamai", "CDN platform", "https://techdocs.akamai.com/"),
|
|
489
|
+
("AWS Lambda", "Serverless compute", "https://docs.aws.amazon.com/lambda/"),
|
|
490
|
+
("Google Cloud Functions", "Serverless", "https://cloud.google.com/functions/docs"),
|
|
491
|
+
("Azure Functions", "Serverless", "https://docs.microsoft.com/azure/azure-functions/"),
|
|
492
|
+
("Sentry", "Error tracking", "https://docs.sentry.io/api/"),
|
|
493
|
+
("Bugsnag", "Error monitoring", "https://bugsnagapiv2.docs.apiary.io/"),
|
|
494
|
+
("Rollbar", "Error tracking", "https://docs.rollbar.com/"),
|
|
495
|
+
("LogDNA", "Log management", "https://docs.mezmo.com/"),
|
|
496
|
+
("Papertrail", "Log management", "https://www.papertrail.com/help/json-http-api/"),
|
|
497
|
+
("Logtail", "Log management", "https://betterstack.com/docs/logs/api/"),
|
|
498
|
+
("Datadog", "Monitoring", "https://docs.datadoghq.com/api/"),
|
|
499
|
+
("New Relic", "Observability", "https://docs.newrelic.com/docs/apis/"),
|
|
500
|
+
("Grafana", "Visualization", "https://grafana.com/docs/grafana/latest/http_api/"),
|
|
501
|
+
("Prometheus", "Monitoring", "https://prometheus.io/docs/prometheus/latest/querying/api/"),
|
|
502
|
+
("PagerDuty", "Incident response", "https://developer.pagerduty.com/"),
|
|
503
|
+
("OpsGenie", "Alerting", "https://docs.opsgenie.com/docs/api-overview"),
|
|
504
|
+
("VictorOps", "Incident management", "https://portal.victorops.com/public/api-docs.html"),
|
|
505
|
+
("StatusPage", "Status pages", "https://developer.statuspage.io/"),
|
|
506
|
+
("Instatus", "Status pages", "https://instatus.com/help/api"),
|
|
507
|
+
("Checkly", "Monitoring", "https://www.checklyhq.com/docs/api/"),
|
|
508
|
+
("Uptime Robot", "Monitoring", "https://uptimerobot.com/api/"),
|
|
509
|
+
("Cronitor", "Cron monitoring", "https://cronitor.io/docs/api"),
|
|
510
|
+
("Better Uptime", "Monitoring", "https://betterstack.com/docs/uptime/api/"),
|
|
511
|
+
("LaunchDarkly", "Feature flags", "https://docs.launchdarkly.com/home/connecting/api"),
|
|
512
|
+
("Split", "Feature flags", "https://docs.split.io/reference"),
|
|
513
|
+
("Flagsmith", "Feature flags", "https://docs.flagsmith.com/"),
|
|
514
|
+
("PostHog", "Feature flags", "https://posthog.com/docs/api/feature-flags"),
|
|
515
|
+
("ConfigCat", "Feature flags", "https://configcat.com/docs/api/reference/"),
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
for name, desc, url in devtools_apis:
|
|
519
|
+
add_api(name, desc, "Development", url, "apiKey")
|
|
520
|
+
|
|
521
|
+
# ---------- Media & Entertainment (50+) ----------
|
|
522
|
+
media_apis = [
|
|
523
|
+
("Spotify", "Music streaming", "https://developer.spotify.com/documentation/web-api/"),
|
|
524
|
+
("Apple Music", "Music streaming", "https://developer.apple.com/documentation/applemusicapi"),
|
|
525
|
+
("YouTube Data", "Video platform", "https://developers.google.com/youtube/v3"),
|
|
526
|
+
("YouTube Analytics", "Video analytics", "https://developers.google.com/youtube/analytics"),
|
|
527
|
+
("Vimeo", "Video hosting", "https://developer.vimeo.com/"),
|
|
528
|
+
("Dailymotion", "Video platform", "https://developer.dailymotion.com/"),
|
|
529
|
+
("Twitch", "Live streaming", "https://dev.twitch.tv/docs/api/"),
|
|
530
|
+
("Kick", "Live streaming", "https://kick.com/api"),
|
|
531
|
+
("SoundCloud", "Audio sharing", "https://developers.soundcloud.com/docs/api/guide"),
|
|
532
|
+
("Deezer", "Music streaming", "https://developers.deezer.com/api"),
|
|
533
|
+
("Tidal", "Music streaming", "https://developer.tidal.com/"),
|
|
534
|
+
("Pandora", "Music streaming", "https://developer.pandora.com/"),
|
|
535
|
+
("Last.fm", "Music discovery", "https://www.last.fm/api"),
|
|
536
|
+
("MusicBrainz", "Music database", "https://musicbrainz.org/doc/MusicBrainz_API"),
|
|
537
|
+
("Discogs", "Music database", "https://www.discogs.com/developers/"),
|
|
538
|
+
("Genius", "Song lyrics", "https://docs.genius.com/"),
|
|
539
|
+
("Musixmatch", "Lyrics API", "https://developer.musixmatch.com/"),
|
|
540
|
+
("Shazam", "Music recognition", "https://www.shazam.com/developer"),
|
|
541
|
+
("TMDb", "Movie database", "https://developers.themoviedb.org/3"),
|
|
542
|
+
("IMDb", "Movie database", "https://www.imdb.com/interfaces/"),
|
|
543
|
+
("OMDb", "Movie data", "https://www.omdbapi.com/"),
|
|
544
|
+
("TVmaze", "TV show data", "https://www.tvmaze.com/api"),
|
|
545
|
+
("Trakt", "TV movie tracking", "https://trakt.docs.apiary.io/"),
|
|
546
|
+
("JustWatch", "Streaming search", "https://www.justwatch.com/"),
|
|
547
|
+
("Reelgood", "Streaming guide", "https://www.reelgood.com/"),
|
|
548
|
+
("Podcast Index", "Podcast data", "https://podcastindex.org/developers"),
|
|
549
|
+
("Listen Notes", "Podcast search", "https://www.listennotes.com/api/"),
|
|
550
|
+
("Transistor", "Podcast hosting", "https://api.transistor.fm/"),
|
|
551
|
+
("Anchor", "Podcast platform", "https://anchor.fm/"),
|
|
552
|
+
("Simplecast", "Podcast hosting", "https://simplecast.com/api/"),
|
|
553
|
+
("Spreaker", "Podcast platform", "https://developers.spreaker.com/"),
|
|
554
|
+
("Podbean", "Podcast hosting", "https://developers.podbean.com/"),
|
|
555
|
+
("RSS.com", "Podcast hosting", "https://rss.com/api/"),
|
|
556
|
+
("Buzzsprout", "Podcast hosting", "https://github.com/Buzzsprout/buzzsprout-api"),
|
|
557
|
+
("Pexels", "Stock photos", "https://www.pexels.com/api/documentation/"),
|
|
558
|
+
("Unsplash", "Stock photos", "https://unsplash.com/documentation"),
|
|
559
|
+
("Pixabay", "Stock media", "https://pixabay.com/api/docs/"),
|
|
560
|
+
("Shutterstock", "Stock media", "https://developers.shutterstock.com/"),
|
|
561
|
+
("Getty Images", "Stock media", "https://developers.gettyimages.com/"),
|
|
562
|
+
("Adobe Stock", "Stock media", "https://developer.adobe.com/stock/docs/"),
|
|
563
|
+
("iStock", "Stock media", "https://www.istockphoto.com/developers"),
|
|
564
|
+
("Storyblocks", "Stock media", "https://www.storyblocks.com/developer"),
|
|
565
|
+
("Artlist", "Stock music", "https://artlist.io/"),
|
|
566
|
+
("Epidemic Sound", "Stock music", "https://www.epidemicsound.com/"),
|
|
567
|
+
("PremiumBeat", "Stock music", "https://www.premiumbeat.com/"),
|
|
568
|
+
("Pond5", "Stock media", "https://www.pond5.com/"),
|
|
569
|
+
("Envato", "Creative assets", "https://build.envato.com/"),
|
|
570
|
+
("Giphy", "GIF platform", "https://developers.giphy.com/docs/api/"),
|
|
571
|
+
("Tenor", "GIF platform", "https://tenor.com/gifapi/documentation"),
|
|
572
|
+
("Imgur", "Image hosting", "https://api.imgur.com/"),
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
for name, desc, url in media_apis:
|
|
576
|
+
add_api(name, desc, "Media", url, "apiKey")
|
|
577
|
+
|
|
578
|
+
# ---------- Social & Marketing (50+) ----------
|
|
579
|
+
social_apis = [
|
|
580
|
+
("Facebook Graph", "Facebook platform", "https://developers.facebook.com/docs/graph-api/"),
|
|
581
|
+
("Instagram Basic", "Instagram API", "https://developers.facebook.com/docs/instagram-basic-display-api/"),
|
|
582
|
+
("Instagram Business", "Instagram business", "https://developers.facebook.com/docs/instagram-api/"),
|
|
583
|
+
("Twitter API v2", "Twitter platform", "https://developer.twitter.com/en/docs/twitter-api"),
|
|
584
|
+
("LinkedIn", "Professional network", "https://developer.linkedin.com/"),
|
|
585
|
+
("Pinterest", "Visual discovery", "https://developers.pinterest.com/"),
|
|
586
|
+
("TikTok", "Short video", "https://developers.tiktok.com/"),
|
|
587
|
+
("Snapchat", "Social media", "https://kit.snapchat.com/"),
|
|
588
|
+
("Reddit", "Social news", "https://www.reddit.com/dev/api/"),
|
|
589
|
+
("Discord", "Community platform", "https://discord.com/developers/docs"),
|
|
590
|
+
("Slack", "Workplace messaging", "https://api.slack.com/"),
|
|
591
|
+
("Mastodon", "Decentralized social", "https://docs.joinmastodon.org/api/"),
|
|
592
|
+
("Bluesky", "Social protocol", "https://atproto.com/"),
|
|
593
|
+
("Threads", "Meta social", "https://developers.facebook.com/docs/threads/"),
|
|
594
|
+
("Tumblr", "Microblogging", "https://www.tumblr.com/docs/en/api/v2"),
|
|
595
|
+
("Medium", "Publishing platform", "https://github.com/Medium/medium-api-docs"),
|
|
596
|
+
("Substack", "Newsletter platform", "https://substack.com/"),
|
|
597
|
+
("Ghost", "Publishing platform", "https://ghost.org/docs/admin-api/"),
|
|
598
|
+
("Dev.to", "Developer community", "https://developers.forem.com/api"),
|
|
599
|
+
("Hashnode", "Developer blogs", "https://api.hashnode.com/"),
|
|
600
|
+
("Product Hunt", "Product launches", "https://api.producthunt.com/v2/docs"),
|
|
601
|
+
("Buffer", "Social scheduling", "https://buffer.com/developers/api"),
|
|
602
|
+
("Hootsuite", "Social management", "https://developer.hootsuite.com/"),
|
|
603
|
+
("Sprout Social", "Social management", "https://developer.sproutsocial.com/"),
|
|
604
|
+
("Later", "Social scheduling", "https://later.com/api-docs/"),
|
|
605
|
+
("Sprinklr", "Social management", "https://developer.sprinklr.com/"),
|
|
606
|
+
("Brandwatch", "Social listening", "https://developers.brandwatch.com/"),
|
|
607
|
+
("Mention", "Media monitoring", "https://mention.com/en/api/"),
|
|
608
|
+
("Talkwalker", "Social analytics", "https://www.talkwalker.com/api"),
|
|
609
|
+
("Meltwater", "Media intelligence", "https://developer.meltwater.com/"),
|
|
610
|
+
("Canva", "Design platform", "https://www.canva.com/developers/"),
|
|
611
|
+
("Adobe Creative Cloud", "Creative tools", "https://developer.adobe.com/"),
|
|
612
|
+
("Figma", "Design platform", "https://www.figma.com/developers/api"),
|
|
613
|
+
("InVision", "Design collaboration", "https://developers.invisionapp.com/"),
|
|
614
|
+
("Sketch", "Design tool", "https://developer.sketch.com/"),
|
|
615
|
+
("Loom", "Video messaging", "https://dev.loom.com/docs/api"),
|
|
616
|
+
("Vidyard", "Video platform", "https://knowledge.vidyard.com/hc/en-us/articles/360009879754"),
|
|
617
|
+
("Wistia", "Video hosting", "https://wistia.com/support/developers/"),
|
|
618
|
+
("Veed.io", "Video editing", "https://www.veed.io/api"),
|
|
619
|
+
("Kapwing", "Content creation", "https://www.kapwing.com/developers"),
|
|
620
|
+
("Bitly", "Link management", "https://dev.bitly.com/"),
|
|
621
|
+
("Rebrandly", "Link management", "https://developers.rebrandly.com/"),
|
|
622
|
+
("TinyURL", "URL shortening", "https://tinyurl.com/api-docs"),
|
|
623
|
+
("Short.io", "Link management", "https://developers.short.io/"),
|
|
624
|
+
("Dub", "Link management", "https://dub.sh/docs/api-reference"),
|
|
625
|
+
("Linktree", "Link in bio", "https://linktree.com/"),
|
|
626
|
+
("Beacons", "Link in bio", "https://beacons.ai/"),
|
|
627
|
+
("Koji", "Creator tools", "https://developer.withkoji.com/"),
|
|
628
|
+
("Gumroad", "Creator commerce", "https://gumroad.com/api"),
|
|
629
|
+
("Patreon", "Creator membership", "https://www.patreon.com/portal/registration/register-clients"),
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
for name, desc, url in social_apis:
|
|
633
|
+
add_api(name, desc, "Social", url, "apiKey")
|
|
634
|
+
|
|
635
|
+
# ---------- Healthcare & Life Sciences (40+) ----------
|
|
636
|
+
health_apis = [
|
|
637
|
+
("FHIR", "Healthcare interoperability", "https://www.hl7.org/fhir/"),
|
|
638
|
+
("OpenFDA", "FDA public data", "https://open.fda.gov/apis/"),
|
|
639
|
+
("CMS Blue Button", "Medicare data", "https://bluebutton.cms.gov/"),
|
|
640
|
+
("Healthkit", "Apple health data", "https://developer.apple.com/documentation/healthkit"),
|
|
641
|
+
("Google Fit", "Fitness data", "https://developers.google.com/fit"),
|
|
642
|
+
("Fitbit", "Fitness tracking", "https://dev.fitbit.com/"),
|
|
643
|
+
("Whoop", "Performance monitoring", "https://developer.whoop.com/"),
|
|
644
|
+
("Oura", "Sleep tracking", "https://cloud.ouraring.com/docs/"),
|
|
645
|
+
("Garmin", "Sports tracking", "https://developer.garmin.com/"),
|
|
646
|
+
("Strava", "Activity tracking", "https://developers.strava.com/"),
|
|
647
|
+
("Withings", "Health devices", "https://developer.withings.com/"),
|
|
648
|
+
("Dexcom", "Glucose monitoring", "https://developer.dexcom.com/"),
|
|
649
|
+
("Medtronic", "Medical devices", "https://developer.medtronic.com/"),
|
|
650
|
+
("Abbott", "Health devices", "https://www.abbott.com/"),
|
|
651
|
+
("Epic FHIR", "EHR integration", "https://fhir.epic.com/"),
|
|
652
|
+
("Cerner FHIR", "EHR integration", "https://fhir.cerner.com/"),
|
|
653
|
+
("Allscripts", "EHR platform", "https://developer.allscripts.com/"),
|
|
654
|
+
("DrChrono", "EHR platform", "https://www.drchrono.com/api/"),
|
|
655
|
+
("Athenahealth", "Healthcare platform", "https://developer.athenahealth.com/"),
|
|
656
|
+
("Kareo", "Medical software", "https://developer.kareo.com/"),
|
|
657
|
+
("Practice Fusion", "EHR platform", "https://www.practicefusion.com/"),
|
|
658
|
+
("SimplePractice", "Practice management", "https://developer.simplepractice.com/"),
|
|
659
|
+
("Healthie", "Practice management", "https://developer.healthie.com/"),
|
|
660
|
+
("Zocdoc", "Healthcare marketplace", "https://developer.zocdoc.com/"),
|
|
661
|
+
("Teladoc", "Telehealth platform", "https://www.teladoc.com/"),
|
|
662
|
+
("Amwell", "Telehealth platform", "https://www.amwell.com/"),
|
|
663
|
+
("Doxy.me", "Telehealth platform", "https://doxy.me/en/"),
|
|
664
|
+
("Redox", "Healthcare integration", "https://developer.redoxengine.com/"),
|
|
665
|
+
("Health Gorilla", "Health data network", "https://www.healthgorilla.com/"),
|
|
666
|
+
("Particle Health", "Healthcare data", "https://www.particlehealth.com/"),
|
|
667
|
+
("Human API", "Health data", "https://www.humanapi.co/"),
|
|
668
|
+
("Validic", "Health data", "https://docs.validic.com/"),
|
|
669
|
+
("Welltory", "Health analytics", "https://developers.welltory.com/"),
|
|
670
|
+
("Gyant", "Health AI", "https://gyant.com/"),
|
|
671
|
+
("Ada Health", "Symptom checker", "https://ada.com/"),
|
|
672
|
+
("Infermedica", "Medical AI", "https://developer.infermedica.com/"),
|
|
673
|
+
("Buoy Health", "Health AI", "https://www.buoyhealth.com/"),
|
|
674
|
+
("K Health", "AI health", "https://khealth.com/"),
|
|
675
|
+
("Babylon Health", "AI healthcare", "https://www.babylonhealth.com/"),
|
|
676
|
+
("Forward", "Healthcare AI", "https://goforward.com/"),
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
for name, desc, url in health_apis:
|
|
680
|
+
add_api(name, desc, "Health", url, "apiKey")
|
|
681
|
+
|
|
682
|
+
# ---------- Education & Learning (30+) ----------
|
|
683
|
+
edu_apis = [
|
|
684
|
+
("Canvas LMS", "Learning management", "https://canvas.instructure.com/doc/api/"),
|
|
685
|
+
("Moodle", "Learning platform", "https://docs.moodle.org/dev/Web_service_API_functions"),
|
|
686
|
+
("Blackboard", "Learning management", "https://developer.blackboard.com/"),
|
|
687
|
+
("Schoology", "Learning management", "https://developers.schoology.com/"),
|
|
688
|
+
("Google Classroom", "Education platform", "https://developers.google.com/classroom"),
|
|
689
|
+
("Microsoft Education", "Education platform", "https://docs.microsoft.com/graph/education-concept-overview"),
|
|
690
|
+
("Edmodo", "Education network", "https://developers.edmodo.com/"),
|
|
691
|
+
("ClassDojo", "Classroom management", "https://developers.classdojo.com/"),
|
|
692
|
+
("Clever", "Education data", "https://dev.clever.com/"),
|
|
693
|
+
("Instructure", "Learning platform", "https://canvas.instructure.com/doc/api/"),
|
|
694
|
+
("Kahoot", "Learning games", "https://kahoot.com/business/api/"),
|
|
695
|
+
("Quizlet", "Study tools", "https://quizlet.com/api/"),
|
|
696
|
+
("Duolingo", "Language learning", "https://www.duolingo.com/"),
|
|
697
|
+
("Coursera", "Online courses", "https://coursera.org/"),
|
|
698
|
+
("Udemy", "Online courses", "https://www.udemy.com/developers/"),
|
|
699
|
+
("edX", "Online education", "https://www.edx.org/"),
|
|
700
|
+
("Skillshare", "Creative learning", "https://www.skillshare.com/"),
|
|
701
|
+
("LinkedIn Learning", "Professional learning", "https://docs.microsoft.com/linkedin/learning/"),
|
|
702
|
+
("Pluralsight", "Tech learning", "https://www.pluralsight.com/product/integrations"),
|
|
703
|
+
("Codecademy", "Coding education", "https://www.codecademy.com/"),
|
|
704
|
+
("Khan Academy", "Free education", "https://www.khanacademy.org/"),
|
|
705
|
+
("Brilliant", "STEM learning", "https://brilliant.org/"),
|
|
706
|
+
("Masterclass", "Expert classes", "https://www.masterclass.com/"),
|
|
707
|
+
("O'Reilly", "Tech learning", "https://www.oreilly.com/"),
|
|
708
|
+
("DataCamp", "Data science", "https://www.datacamp.com/"),
|
|
709
|
+
("Treehouse", "Tech education", "https://teamtreehouse.com/"),
|
|
710
|
+
("Egghead", "Web development", "https://egghead.io/"),
|
|
711
|
+
("Frontend Masters", "Web development", "https://frontendmasters.com/"),
|
|
712
|
+
("LeetCode", "Coding practice", "https://leetcode.com/"),
|
|
713
|
+
("HackerRank", "Coding challenges", "https://www.hackerrank.com/"),
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
for name, desc, url in edu_apis:
|
|
717
|
+
add_api(name, desc, "Education", url, "apiKey")
|
|
718
|
+
|
|
719
|
+
# ---------- Real Estate & Property (25+) ----------
|
|
720
|
+
realestate_apis = [
|
|
721
|
+
("Zillow", "Real estate data", "https://www.zillow.com/howto/api/APIOverview.htm"),
|
|
722
|
+
("Redfin", "Real estate data", "https://www.redfin.com/"),
|
|
723
|
+
("Realtor.com", "Property listings", "https://www.realtor.com/api/"),
|
|
724
|
+
("Trulia", "Real estate", "https://www.trulia.com/"),
|
|
725
|
+
("Apartments.com", "Rental listings", "https://www.apartments.com/"),
|
|
726
|
+
("Rentals.com", "Rental listings", "https://www.rentals.com/"),
|
|
727
|
+
("HotPads", "Rental search", "https://hotpads.com/"),
|
|
728
|
+
("Zumper", "Rental platform", "https://www.zumper.com/"),
|
|
729
|
+
("Roofstock", "Investment properties", "https://www.roofstock.com/"),
|
|
730
|
+
("Fundrise", "Real estate investing", "https://fundrise.com/"),
|
|
731
|
+
("RealtyMogul", "Real estate crowdfunding", "https://www.realtymogul.com/"),
|
|
732
|
+
("CrowdStreet", "Real estate investing", "https://www.crowdstreet.com/"),
|
|
733
|
+
("HomeLight", "Real estate agents", "https://www.homelight.com/"),
|
|
734
|
+
("Opendoor", "iBuying platform", "https://www.opendoor.com/"),
|
|
735
|
+
("Offerpad", "Home buying", "https://www.offerpad.com/"),
|
|
736
|
+
("Knock", "Home trade-in", "https://www.knock.com/"),
|
|
737
|
+
("Ribbon", "Home buying", "https://www.ribbon.com/"),
|
|
738
|
+
("Compass", "Real estate platform", "https://www.compass.com/"),
|
|
739
|
+
("eXp Realty", "Real estate brokerage", "https://exprealty.com/"),
|
|
740
|
+
("Keller Williams", "Real estate", "https://www.kw.com/"),
|
|
741
|
+
("RE/MAX", "Real estate", "https://www.remax.com/"),
|
|
742
|
+
("Coldwell Banker", "Real estate", "https://www.coldwellbanker.com/"),
|
|
743
|
+
("Century 21", "Real estate", "https://www.century21.com/"),
|
|
744
|
+
("Sotheby's Realty", "Luxury real estate", "https://www.sothebysrealty.com/"),
|
|
745
|
+
("CoreLogic", "Property data", "https://www.corelogic.com/"),
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
for name, desc, url in realestate_apis:
|
|
749
|
+
add_api(name, desc, "Real Estate", url, "apiKey")
|
|
750
|
+
|
|
751
|
+
# ---------- Sports & Fitness (30+) ----------
|
|
752
|
+
sports_apis = [
|
|
753
|
+
("ESPN", "Sports news data", "https://www.espn.com/apis/devcenter/"),
|
|
754
|
+
("Sports Reference", "Sports statistics", "https://www.sports-reference.com/"),
|
|
755
|
+
("NFL", "Football data", "https://www.nfl.com/"),
|
|
756
|
+
("NBA", "Basketball data", "https://www.nba.com/stats/"),
|
|
757
|
+
("MLB", "Baseball data", "https://statsapi.mlb.com/"),
|
|
758
|
+
("NHL", "Hockey data", "https://gitlab.com/dword4/nhlapi"),
|
|
759
|
+
("MLS", "Soccer data", "https://www.mlssoccer.com/"),
|
|
760
|
+
("PGA", "Golf data", "https://www.pga.com/"),
|
|
761
|
+
("ATP", "Tennis data", "https://www.atptour.com/"),
|
|
762
|
+
("WTA", "Tennis data", "https://www.wtatennis.com/"),
|
|
763
|
+
("UFC", "MMA data", "https://www.ufc.com/"),
|
|
764
|
+
("F1", "Formula 1 data", "https://ergast.com/mrd/"),
|
|
765
|
+
("NASCAR", "Racing data", "https://www.nascar.com/"),
|
|
766
|
+
("Cricket", "Cricket data", "https://cricketapi.com/"),
|
|
767
|
+
("Football-Data", "Soccer API", "https://www.football-data.org/"),
|
|
768
|
+
("API-Football", "Football stats", "https://www.api-football.com/"),
|
|
769
|
+
("TheSportsDB", "Sports database", "https://www.thesportsdb.com/api.php"),
|
|
770
|
+
("Sportradar", "Sports data", "https://developer.sportradar.com/"),
|
|
771
|
+
("SportsDataIO", "Sports feeds", "https://sportsdata.io/"),
|
|
772
|
+
("Odds API", "Betting odds", "https://the-odds-api.com/"),
|
|
773
|
+
("BetFair", "Betting exchange", "https://developer.betfair.com/"),
|
|
774
|
+
("DraftKings", "Fantasy sports", "https://www.draftkings.com/"),
|
|
775
|
+
("FanDuel", "Fantasy sports", "https://www.fanduel.com/"),
|
|
776
|
+
("Yahoo Fantasy", "Fantasy sports", "https://developer.yahoo.com/fantasysports/"),
|
|
777
|
+
("Strava", "Activity tracking", "https://developers.strava.com/"),
|
|
778
|
+
("Peloton", "Fitness platform", "https://www.peloton.com/"),
|
|
779
|
+
("ClassPass", "Fitness classes", "https://classpass.com/"),
|
|
780
|
+
("Mindbody", "Wellness software", "https://developers.mindbodyonline.com/"),
|
|
781
|
+
("TrainingPeaks", "Training platform", "https://www.trainingpeaks.com/"),
|
|
782
|
+
("Zwift", "Virtual cycling", "https://www.zwift.com/"),
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
for name, desc, url in sports_apis:
|
|
786
|
+
add_api(name, desc, "Sports", url, "apiKey")
|
|
787
|
+
|
|
788
|
+
# ---------- Travel & Transportation (30+) ----------
|
|
789
|
+
travel_apis = [
|
|
790
|
+
("Google Flights", "Flight search", "https://developers.google.com/travel/flights"),
|
|
791
|
+
("Skyscanner", "Travel search", "https://partners.skyscanner.net/"),
|
|
792
|
+
("Kayak", "Travel search", "https://www.kayak.com/"),
|
|
793
|
+
("Expedia", "Travel booking", "https://developer.expedia.com/"),
|
|
794
|
+
("Booking.com", "Hotel booking", "https://developers.booking.com/"),
|
|
795
|
+
("Airbnb", "Vacation rentals", "https://www.airbnb.com/partner/"),
|
|
796
|
+
("VRBO", "Vacation rentals", "https://www.vrbo.com/"),
|
|
797
|
+
("Hotels.com", "Hotel booking", "https://www.hotels.com/"),
|
|
798
|
+
("Tripadvisor", "Travel reviews", "https://developer-tripadvisor.com/"),
|
|
799
|
+
("Yelp", "Local business", "https://www.yelp.com/developers/"),
|
|
800
|
+
("Foursquare", "Location data", "https://developer.foursquare.com/"),
|
|
801
|
+
("Google Places", "Places data", "https://developers.google.com/maps/documentation/places/"),
|
|
802
|
+
("HERE Places", "Location data", "https://developer.here.com/"),
|
|
803
|
+
("Mapbox", "Maps platform", "https://docs.mapbox.com/api/"),
|
|
804
|
+
("OpenStreetMap", "Map data", "https://wiki.openstreetmap.org/wiki/API"),
|
|
805
|
+
("TomTom", "Maps navigation", "https://developer.tomtom.com/"),
|
|
806
|
+
("Uber", "Ride-sharing", "https://developer.uber.com/"),
|
|
807
|
+
("Lyft", "Ride-sharing", "https://www.lyft.com/developers"),
|
|
808
|
+
("DiDi", "Ride-sharing", "https://www.didiglobal.com/"),
|
|
809
|
+
("Grab", "Super app", "https://developer.grab.com/"),
|
|
810
|
+
("Gojek", "Super app", "https://www.gojek.com/"),
|
|
811
|
+
("Lime", "Micro-mobility", "https://www.li.me/"),
|
|
812
|
+
("Bird", "Scooter sharing", "https://www.bird.co/"),
|
|
813
|
+
("Spin", "Micro-mobility", "https://www.spin.app/"),
|
|
814
|
+
("FlightAware", "Flight tracking", "https://flightaware.com/commercial/flightxml/"),
|
|
815
|
+
("Flightradar24", "Flight tracking", "https://www.flightradar24.com/"),
|
|
816
|
+
("ADS-B Exchange", "Aircraft tracking", "https://www.adsbexchange.com/data/"),
|
|
817
|
+
("OpenSky", "Air traffic", "https://openskynetwork.github.io/opensky-api/"),
|
|
818
|
+
("Rome2rio", "Travel planning", "https://www.rome2rio.com/"),
|
|
819
|
+
("Wanderu", "Bus train search", "https://www.wanderu.com/"),
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
for name, desc, url in travel_apis:
|
|
823
|
+
add_api(name, desc, "Travel", url, "apiKey")
|
|
824
|
+
|
|
825
|
+
# ---------- IoT & Hardware (30+) ----------
|
|
826
|
+
iot_apis = [
|
|
827
|
+
("AWS IoT", "IoT platform", "https://docs.aws.amazon.com/iot/"),
|
|
828
|
+
("Azure IoT", "IoT platform", "https://docs.microsoft.com/azure/iot-hub/"),
|
|
829
|
+
("Google Cloud IoT", "IoT platform", "https://cloud.google.com/iot/docs/"),
|
|
830
|
+
("Particle", "IoT platform", "https://docs.particle.io/reference/cloud-apis/api/"),
|
|
831
|
+
("Arduino Cloud", "IoT platform", "https://www.arduino.cc/reference/en/iot/api/"),
|
|
832
|
+
("Adafruit IO", "IoT platform", "https://io.adafruit.com/api/docs/"),
|
|
833
|
+
("ThingSpeak", "IoT analytics", "https://www.mathworks.com/help/thingspeak/"),
|
|
834
|
+
("Blynk", "IoT platform", "https://docs.blynk.io/"),
|
|
835
|
+
("Losant", "IoT platform", "https://docs.losant.com/rest-api/overview/"),
|
|
836
|
+
("Ubidots", "IoT platform", "https://ubidots.com/docs/api/"),
|
|
837
|
+
("Cayenne", "IoT platform", "https://developers.mydevices.com/cayenne/"),
|
|
838
|
+
("Home Assistant", "Home automation", "https://developers.home-assistant.io/docs/api/rest"),
|
|
839
|
+
("SmartThings", "Smart home", "https://developer.smartthings.com/"),
|
|
840
|
+
("Apple HomeKit", "Smart home", "https://developer.apple.com/homekit/"),
|
|
841
|
+
("Google Home", "Smart home", "https://developers.google.com/assistant/smarthome/"),
|
|
842
|
+
("Amazon Alexa", "Smart home", "https://developer.amazon.com/en-US/alexa"),
|
|
843
|
+
("Philips Hue", "Smart lighting", "https://developers.meethue.com/"),
|
|
844
|
+
("LIFX", "Smart lighting", "https://api.developer.lifx.com/"),
|
|
845
|
+
("Nanoleaf", "Smart lighting", "https://forum.nanoleaf.me/docs"),
|
|
846
|
+
("Nest", "Smart thermostat", "https://developers.nest.com/"),
|
|
847
|
+
("Ecobee", "Smart thermostat", "https://www.ecobee.com/developers/"),
|
|
848
|
+
("Ring", "Smart security", "https://ring.com/"),
|
|
849
|
+
("Arlo", "Smart security", "https://www.arlo.com/"),
|
|
850
|
+
("August", "Smart locks", "https://august.com/"),
|
|
851
|
+
("Yale", "Smart locks", "https://www.yalehome.com/"),
|
|
852
|
+
("Schlage", "Smart locks", "https://www.schlage.com/"),
|
|
853
|
+
("Wyze", "Smart home", "https://wyzelabs.zendesk.com/hc/en-us/articles/360030692872"),
|
|
854
|
+
("Tuya", "IoT platform", "https://developer.tuya.com/"),
|
|
855
|
+
("Espressif", "IoT chips", "https://docs.espressif.com/"),
|
|
856
|
+
("Raspberry Pi", "SBC platform", "https://www.raspberrypi.com/"),
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
for name, desc, url in iot_apis:
|
|
860
|
+
add_api(name, desc, "IoT", url, "apiKey")
|
|
861
|
+
|
|
862
|
+
# Add all new APIs to registry
|
|
863
|
+
registry['apis'].extend(new_apis)
|
|
864
|
+
registry['count'] = len(registry['apis'])
|
|
865
|
+
registry['lastUpdated'] = datetime.utcnow().isoformat()
|
|
866
|
+
|
|
867
|
+
# Save updated registry
|
|
868
|
+
with open('/Users/gustavhemmingsson/Projects/apiclaw/src/registry/apis.json', 'w') as f:
|
|
869
|
+
json.dump(registry, f, indent=2)
|
|
870
|
+
|
|
871
|
+
added = len(new_apis)
|
|
872
|
+
print(f"✅ Added {added} new APIs")
|
|
873
|
+
print(f"📊 Total APIs: {registry['count']}")
|
|
874
|
+
print(f"📈 Growth: {initial_count} → {registry['count']} (+{registry['count'] - initial_count})")
|