@nordsym/apiclaw 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/STATUS.md +1 -1
- package/dist/credentials.d.ts.map +1 -1
- package/dist/credentials.js +26 -0
- package/dist/credentials.js.map +1 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +162 -0
- package/dist/execute.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/proxy.d.ts.map +1 -1
- package/dist/proxy.js +1 -1
- package/dist/proxy.js.map +1 -1
- package/dist/registry/apis.json +1 -116054
- package/landing/src/app/docs/page.tsx +300 -0
- package/landing/src/app/page.tsx +1 -1
- package/landing/src/lib/apis.json +1 -116054
- package/landing/src/lib/stats.json +4 -4
- package/package.json +1 -1
- package/scripts/add-public-apis.py +625 -0
- package/scripts/apisguru-data.json +158837 -0
- package/scripts/bonus-batch.py +250 -0
- package/scripts/bulk-add-apisguru.js +122 -0
- package/scripts/expand-2026-batch.py +335 -0
- package/scripts/expand-from-github.py +460 -0
- package/scripts/expand-n4ze3m.py +198 -0
- package/scripts/expand-niche-batch.py +269 -0
- package/scripts/expand-nordic-niche.py +189 -0
- package/scripts/expand-tonnyL.py +343 -0
- package/scripts/final-batch.py +315 -0
- package/scripts/final-push-06.py +242 -0
- package/scripts/mega-expansion.py +495 -0
- package/scripts/mega-final-06.py +512 -0
- package/scripts/more-apis.py +353 -0
- package/scripts/night-batch-05.py +546 -0
- package/scripts/night-batch-05b.py +427 -0
- package/scripts/night-expansion-06.py +325 -0
- package/scripts/night-expansion.py +441 -0
- package/scripts/super-final-06.py +341 -0
- package/src/credentials.ts +28 -0
- package/src/execute.ts +193 -0
- package/src/index.ts +2 -1
- package/src/proxy.ts +1 -1
- package/src/registry/apis.json +1 -116054
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Expansion: Parse n4ze3m/public-apis (includes ML/AI focus)
|
|
4
|
+
"""
|
|
5
|
+
import json
|
|
6
|
+
import re
|
|
7
|
+
from pathlib import Path
|
|
8
|
+
|
|
9
|
+
registry_path = Path(__file__).parent.parent / 'src/registry/apis.json'
|
|
10
|
+
|
|
11
|
+
# Load existing registry
|
|
12
|
+
with open(registry_path) as f:
|
|
13
|
+
registry = json.load(f)
|
|
14
|
+
|
|
15
|
+
existing_ids = {a['id'].lower() for a in registry['apis']}
|
|
16
|
+
existing_links = {a.get('link', '').lower().rstrip('/') for a in registry['apis']}
|
|
17
|
+
existing_names = {a['name'].lower() for a in registry['apis']}
|
|
18
|
+
|
|
19
|
+
def make_id(name):
|
|
20
|
+
slug = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
21
|
+
return slug[:50] if len(slug) > 50 else slug
|
|
22
|
+
|
|
23
|
+
def add_api(name, desc, category, link, auth='None', https=True, cors='unknown'):
|
|
24
|
+
api_id = make_id(name)
|
|
25
|
+
|
|
26
|
+
if api_id in existing_ids:
|
|
27
|
+
return False
|
|
28
|
+
if link.lower().rstrip('/') in existing_links:
|
|
29
|
+
return False
|
|
30
|
+
if name.lower() in existing_names:
|
|
31
|
+
return False
|
|
32
|
+
|
|
33
|
+
keywords = [category.lower()]
|
|
34
|
+
desc_lower = desc.lower()
|
|
35
|
+
if 'free' in desc_lower:
|
|
36
|
+
keywords.append('free')
|
|
37
|
+
if 'ai' in desc_lower or 'machine learning' in desc_lower:
|
|
38
|
+
keywords.append('ai')
|
|
39
|
+
if 'api' in desc_lower:
|
|
40
|
+
keywords.append('api')
|
|
41
|
+
|
|
42
|
+
registry['apis'].append({
|
|
43
|
+
'id': api_id,
|
|
44
|
+
'name': name,
|
|
45
|
+
'description': desc[:500],
|
|
46
|
+
'category': category,
|
|
47
|
+
'auth': auth,
|
|
48
|
+
'https': https,
|
|
49
|
+
'cors': cors,
|
|
50
|
+
'link': link,
|
|
51
|
+
'pricing': 'unknown',
|
|
52
|
+
'keywords': list(set(keywords)),
|
|
53
|
+
'source': 'n4ze3m-public-apis'
|
|
54
|
+
})
|
|
55
|
+
existing_ids.add(api_id)
|
|
56
|
+
existing_links.add(link.lower().rstrip('/'))
|
|
57
|
+
existing_names.add(name.lower())
|
|
58
|
+
return True
|
|
59
|
+
|
|
60
|
+
added = 0
|
|
61
|
+
|
|
62
|
+
# From n4ze3m/public-apis - extracted unique AI/ML focused ones
|
|
63
|
+
apis = [
|
|
64
|
+
# AI & Machine Learning
|
|
65
|
+
("Anthropic Claude", "Claude AI assistant API for text generation and analysis", "AI", "https://docs.anthropic.com/claude/reference/getting-started-with-the-api"),
|
|
66
|
+
("Cohere", "Natural language processing with generate, embed, classify", "AI", "https://docs.cohere.com/"),
|
|
67
|
+
("AI21 Labs", "Jurassic language models for text generation", "AI", "https://docs.ai21.com/"),
|
|
68
|
+
("Stability AI", "Stable Diffusion and other image generation models", "AI", "https://platform.stability.ai/docs/api-reference"),
|
|
69
|
+
("RunwayML", "AI-powered creative tools API", "AI", "https://docs.runwayml.com/"),
|
|
70
|
+
("Mistral AI", "Open-weight large language models API", "AI", "https://docs.mistral.ai/"),
|
|
71
|
+
("Perplexity AI", "AI-powered search and answer engine API", "AI", "https://docs.perplexity.ai/"),
|
|
72
|
+
("Together AI", "Run open-source models at scale", "AI", "https://docs.together.ai/"),
|
|
73
|
+
("Fireworks AI", "Fast inference for open-source models", "AI", "https://readme.fireworks.ai/"),
|
|
74
|
+
("Anyscale", "Scalable AI application platform", "AI", "https://docs.anyscale.com/"),
|
|
75
|
+
("Groq", "Ultra-fast LLM inference using LPU hardware", "AI", "https://console.groq.com/docs"),
|
|
76
|
+
("Modal", "Serverless infrastructure for AI applications", "AI", "https://modal.com/docs"),
|
|
77
|
+
("Banana", "ML model hosting and inference", "AI", "https://docs.banana.dev/"),
|
|
78
|
+
("Baseten", "Deploy and scale ML models", "AI", "https://docs.baseten.co/"),
|
|
79
|
+
("Cerebrium", "Serverless GPU infrastructure for ML", "AI", "https://docs.cerebrium.ai/"),
|
|
80
|
+
("Lepton AI", "AI infrastructure for developers", "AI", "https://www.lepton.ai/docs"),
|
|
81
|
+
("Octoai", "GenAI infrastructure platform", "AI", "https://docs.octoai.cloud/"),
|
|
82
|
+
("Deepgram", "Speech recognition and transcription API", "AI", "https://developers.deepgram.com/"),
|
|
83
|
+
("AssemblyAI", "Speech-to-text and audio intelligence API", "AI", "https://www.assemblyai.com/docs"),
|
|
84
|
+
("Speechmatics", "Automatic speech recognition API", "AI", "https://docs.speechmatics.com/"),
|
|
85
|
+
("Rev AI", "Speech recognition and transcription", "AI", "https://docs.rev.ai/"),
|
|
86
|
+
("Symbl.ai", "Conversation intelligence and insights API", "AI", "https://docs.symbl.ai/"),
|
|
87
|
+
("Hume AI", "Expressive and empathic AI", "AI", "https://dev.hume.ai/docs"),
|
|
88
|
+
("LangSmith", "LLM application observability and testing", "AI", "https://docs.smith.langchain.com/"),
|
|
89
|
+
("Weights & Biases", "ML experiment tracking and model management", "AI", "https://docs.wandb.ai/"),
|
|
90
|
+
("Galileo", "LLM observability and evaluation", "AI", "https://docs.galileo.ai/"),
|
|
91
|
+
("Arthur AI", "ML performance monitoring", "AI", "https://docs.arthur.ai/"),
|
|
92
|
+
("Arize AI", "ML observability platform", "AI", "https://docs.arize.com/"),
|
|
93
|
+
("Gantry", "ML model evaluation and monitoring", "AI", "https://docs.gantry.io/"),
|
|
94
|
+
("WhyLabs", "AI observability and monitoring", "AI", "https://docs.whylabs.ai/"),
|
|
95
|
+
("Scale AI", "AI training data platform", "AI", "https://scale.com/docs"),
|
|
96
|
+
("Snorkel AI", "Data labeling and model development", "AI", "https://snorkel.ai/platform/"),
|
|
97
|
+
("Labelbox", "Training data platform for AI", "AI", "https://docs.labelbox.com/"),
|
|
98
|
+
("Roboflow", "Computer vision model training and deployment", "AI", "https://docs.roboflow.com/"),
|
|
99
|
+
("Landing AI", "Visual inspection and computer vision", "AI", "https://landing.ai/platform/"),
|
|
100
|
+
("Clarifai", "AI platform for computer vision and NLP", "AI", "https://docs.clarifai.com/"),
|
|
101
|
+
("Sightengine", "Image and video moderation API", "AI", "https://sightengine.com/docs/"),
|
|
102
|
+
("Eden AI", "Unified AI API for multiple providers", "AI", "https://docs.edenai.co/"),
|
|
103
|
+
("Relevance AI", "AI-powered document processing and analytics", "AI", "https://docs.relevanceai.com/"),
|
|
104
|
+
("Coactive AI", "Visual data understanding platform", "AI", "https://coactive.ai/developers"),
|
|
105
|
+
("Twelve Labs", "Video understanding API", "AI", "https://docs.twelvelabs.io/"),
|
|
106
|
+
("Luma AI", "3D capture and generation API", "AI", "https://lumalabs.ai/api"),
|
|
107
|
+
("Meshy", "Text to 3D and image to 3D generation", "AI", "https://docs.meshy.ai/"),
|
|
108
|
+
("Kaedim", "2D to 3D model generation", "AI", "https://www.kaedim3d.com/api"),
|
|
109
|
+
("Scenario", "Game asset generation with AI", "AI", "https://docs.scenario.com/"),
|
|
110
|
+
("Leonardo AI", "AI image generation for games and design", "AI", "https://docs.leonardo.ai/"),
|
|
111
|
+
("Krea AI", "Real-time AI generation tools", "AI", "https://www.krea.ai/docs"),
|
|
112
|
+
("Pika Labs", "AI video generation platform", "AI", "https://pika.art/"),
|
|
113
|
+
("Descript", "AI-powered audio and video editing", "AI", "https://www.descript.com/developers"),
|
|
114
|
+
("Papercup", "AI dubbing and video translation", "AI", "https://www.papercup.com/developers"),
|
|
115
|
+
|
|
116
|
+
# Vector Databases
|
|
117
|
+
("Pinecone", "Vector database for ML applications", "Database", "https://docs.pinecone.io/"),
|
|
118
|
+
("Weaviate", "Open-source vector database", "Database", "https://weaviate.io/developers/weaviate"),
|
|
119
|
+
("Qdrant", "Vector similarity search engine", "Database", "https://qdrant.tech/documentation/"),
|
|
120
|
+
("Milvus", "Open-source vector database for AI", "Database", "https://milvus.io/docs"),
|
|
121
|
+
("Chroma", "Open-source embedding database", "Database", "https://docs.trychroma.com/"),
|
|
122
|
+
("Vespa", "Search and recommendation system", "Database", "https://docs.vespa.ai/"),
|
|
123
|
+
("Zilliz Cloud", "Managed vector database service", "Database", "https://docs.zilliz.com/"),
|
|
124
|
+
|
|
125
|
+
# RAG & Knowledge
|
|
126
|
+
("LlamaIndex", "Data framework for LLM applications", "AI", "https://docs.llamaindex.ai/"),
|
|
127
|
+
("LangChain", "Framework for developing LLM applications", "AI", "https://python.langchain.com/docs/"),
|
|
128
|
+
("Haystack", "Open-source framework for building NLP apps", "AI", "https://docs.haystack.deepset.ai/"),
|
|
129
|
+
("Vectara", "GenAI platform with RAG as a service", "AI", "https://docs.vectara.com/"),
|
|
130
|
+
("Unstructured", "Data preprocessing for LLMs", "AI", "https://unstructured-io.github.io/unstructured/"),
|
|
131
|
+
("Jina AI", "Multimodal AI for search and generation", "AI", "https://docs.jina.ai/"),
|
|
132
|
+
("Marvin", "AI engineering framework by Prefect", "AI", "https://www.askmarvin.ai/docs/"),
|
|
133
|
+
("Instructor", "Structured extraction from LLMs", "AI", "https://jxnl.github.io/instructor/"),
|
|
134
|
+
("Outlines", "Structured generation with LLMs", "AI", "https://outlines-dev.github.io/outlines/"),
|
|
135
|
+
("Guidance", "Efficient structured prompting", "AI", "https://github.com/guidance-ai/guidance"),
|
|
136
|
+
("DSPy", "Programming framework for LLMs", "AI", "https://dspy-docs.vercel.app/"),
|
|
137
|
+
|
|
138
|
+
# Code & Development AI
|
|
139
|
+
("Codeium", "AI-powered code completion", "AI", "https://codeium.com/api"),
|
|
140
|
+
("Tabnine", "AI code assistant", "AI", "https://www.tabnine.com/developers"),
|
|
141
|
+
("Sourcegraph Cody", "AI coding assistant with code search", "AI", "https://sourcegraph.com/docs/cody"),
|
|
142
|
+
("Replit", "Cloud development environment with AI", "Development", "https://docs.replit.com/"),
|
|
143
|
+
("Codestral", "Mistral's code generation model", "AI", "https://docs.mistral.ai/capabilities/code_generation/"),
|
|
144
|
+
|
|
145
|
+
# More unique APIs
|
|
146
|
+
("Abstract API", "Collection of APIs for validation and enrichment", "Utility", "https://www.abstractapi.com/docs"),
|
|
147
|
+
("APILayer", "Marketplace of curated APIs", "Platform", "https://apilayer.com/"),
|
|
148
|
+
("Apify", "Web scraping and automation platform", "Automation", "https://docs.apify.com/"),
|
|
149
|
+
("BrowserStack", "Cross-browser testing platform", "Development", "https://www.browserstack.com/docs"),
|
|
150
|
+
("SerpApi", "Search engine results page scraping", "Search", "https://serpapi.com/"),
|
|
151
|
+
("ScrapingBee", "Web scraping API", "Automation", "https://www.scrapingbee.com/documentation/"),
|
|
152
|
+
("Oxylabs", "Web scraping infrastructure", "Automation", "https://developers.oxylabs.io/"),
|
|
153
|
+
("Brightdata", "Web data platform", "Data", "https://docs.brightdata.com/"),
|
|
154
|
+
("Diffbot", "AI-powered web data extraction", "Data", "https://docs.diffbot.com/"),
|
|
155
|
+
("Kapiche", "Text analytics platform", "Analytics", "https://www.kapiche.com/api"),
|
|
156
|
+
("Rasa", "Open-source conversational AI", "AI", "https://rasa.com/docs/"),
|
|
157
|
+
("Botpress", "Open-source chatbot platform", "AI", "https://botpress.com/docs"),
|
|
158
|
+
("Voiceflow", "Conversation design platform", "AI", "https://developer.voiceflow.com/"),
|
|
159
|
+
("Typebot", "Open-source conversational forms", "AI", "https://docs.typebot.io/"),
|
|
160
|
+
("Dify", "LLM application development platform", "AI", "https://docs.dify.ai/"),
|
|
161
|
+
("Flowise", "Open-source LLM flow builder", "AI", "https://docs.flowiseai.com/"),
|
|
162
|
+
("Stack AI", "No-code AI workflow builder", "AI", "https://docs.stack-ai.com/"),
|
|
163
|
+
|
|
164
|
+
# Fintech
|
|
165
|
+
("Wise", "International money transfer API", "Finance", "https://api-docs.wise.com/"),
|
|
166
|
+
("Mercury", "Business banking API", "Finance", "https://docs.mercury.com/"),
|
|
167
|
+
("Modern Treasury", "Payment operations platform", "Finance", "https://docs.moderntreasury.com/"),
|
|
168
|
+
("Moov", "Money movement infrastructure", "Finance", "https://docs.moov.io/"),
|
|
169
|
+
("Unit", "Banking-as-a-service platform", "Finance", "https://docs.unit.co/"),
|
|
170
|
+
("Treasury Prime", "Banking-as-a-service API", "Finance", "https://docs.treasuryprime.com/"),
|
|
171
|
+
("Column", "Developer-first bank", "Finance", "https://column.com/docs"),
|
|
172
|
+
("Brex", "Business finance platform API", "Finance", "https://developer.brex.com/"),
|
|
173
|
+
("Ramp", "Corporate cards and spend management", "Finance", "https://docs.ramp.com/"),
|
|
174
|
+
("Marqeta", "Modern card issuing platform", "Finance", "https://www.marqeta.com/docs/"),
|
|
175
|
+
("Lithic", "Card issuing and processing", "Finance", "https://docs.lithic.com/"),
|
|
176
|
+
("Bond", "Embedded finance platform", "Finance", "https://docs.bond.tech/"),
|
|
177
|
+
("Alloy", "Identity verification and fraud prevention", "Finance", "https://docs.alloy.com/"),
|
|
178
|
+
("Plaid Identity", "Identity verification via bank login", "Finance", "https://plaid.com/docs/identity-verification/"),
|
|
179
|
+
("Persona", "Identity verification infrastructure", "Finance", "https://docs.withpersona.com/"),
|
|
180
|
+
("Sardine", "Fraud prevention platform", "Finance", "https://docs.sardine.ai/"),
|
|
181
|
+
("Seon", "Fraud detection API", "Finance", "https://docs.seon.io/"),
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
for name, desc, category, link in apis:
|
|
185
|
+
if add_api(name, desc, category, link):
|
|
186
|
+
added += 1
|
|
187
|
+
|
|
188
|
+
# Update metadata
|
|
189
|
+
registry['count'] = len(registry['apis'])
|
|
190
|
+
registry['lastUpdated'] = '2026-02-22'
|
|
191
|
+
|
|
192
|
+
# Write back
|
|
193
|
+
with open(registry_path, 'w') as f:
|
|
194
|
+
json.dump(registry, f, indent=2)
|
|
195
|
+
|
|
196
|
+
print(f"✅ APIClaw n4ze3m/AI-focused Expansion Complete")
|
|
197
|
+
print(f" Added: {added} new APIs")
|
|
198
|
+
print(f" Total: {registry['count']} APIs")
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Niche APIs Batch - Industry-specific and specialized APIs
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import json
|
|
7
|
+
import re
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
|
|
10
|
+
REGISTRY_PATH = Path(__file__).parent.parent / "src" / "registry" / "apis.json"
|
|
11
|
+
|
|
12
|
+
def generate_id(name: str) -> str:
|
|
13
|
+
clean = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
14
|
+
return clean[:50]
|
|
15
|
+
|
|
16
|
+
def load_registry() -> dict:
|
|
17
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
18
|
+
return json.load(f)
|
|
19
|
+
|
|
20
|
+
def save_registry(registry: dict):
|
|
21
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
22
|
+
json.dump(registry, f, indent=2)
|
|
23
|
+
|
|
24
|
+
def get_existing_ids(registry: dict) -> set:
|
|
25
|
+
return {api['id'] for api in registry['apis']}
|
|
26
|
+
|
|
27
|
+
NICHE_APIS = [
|
|
28
|
+
# === Healthcare & Medical ===
|
|
29
|
+
{"name": "FHIR API", "description": "Healthcare interoperability standard", "category": "Health", "link": "https://www.hl7.org/fhir/", "auth": "OAuth"},
|
|
30
|
+
{"name": "OpenMRS", "description": "Open source medical records", "category": "Health", "link": "https://wiki.openmrs.org/display/docs/REST+Web+Services+API", "auth": "apiKey"},
|
|
31
|
+
{"name": "DrChrono", "description": "EHR platform API", "category": "Health", "link": "https://www.drchrono.com/api/", "auth": "OAuth"},
|
|
32
|
+
{"name": "Redox", "description": "Healthcare integration API", "category": "Health", "link": "https://developer.redoxengine.com/", "auth": "apiKey"},
|
|
33
|
+
{"name": "Epic FHIR", "description": "Epic EHR API", "category": "Health", "link": "https://fhir.epic.com/", "auth": "OAuth"},
|
|
34
|
+
{"name": "Cerner FHIR", "description": "Cerner EHR API", "category": "Health", "link": "https://fhir.cerner.com/", "auth": "OAuth"},
|
|
35
|
+
{"name": "Allscripts", "description": "EHR integration API", "category": "Health", "link": "https://developer.allscripts.com/", "auth": "OAuth"},
|
|
36
|
+
{"name": "Change Healthcare", "description": "Healthcare claims API", "category": "Health", "link": "https://developers.changehealthcare.com/", "auth": "apiKey"},
|
|
37
|
+
{"name": "Eligible", "description": "Healthcare eligibility API", "category": "Health", "link": "https://eligible.com/rest/v1.1/", "auth": "apiKey"},
|
|
38
|
+
{"name": "PokitDok", "description": "Healthcare claims and eligibility", "category": "Health", "link": "https://platform.pokitdok.com/", "auth": "OAuth"},
|
|
39
|
+
{"name": "Validic", "description": "Health data integration", "category": "Health", "link": "https://docs.validic.com/", "auth": "apiKey"},
|
|
40
|
+
{"name": "Human API", "description": "Health data platform", "category": "Health", "link": "https://docs.humanapi.co/", "auth": "OAuth"},
|
|
41
|
+
{"name": "1upHealth", "description": "FHIR data platform", "category": "Health", "link": "https://1up.health/docs/", "auth": "OAuth"},
|
|
42
|
+
{"name": "Flexpa", "description": "Health plan data API", "category": "Health", "link": "https://www.flexpa.com/docs/", "auth": "apiKey"},
|
|
43
|
+
{"name": "Particle Health", "description": "Healthcare data network", "category": "Health", "link": "https://docs.particlehealth.com/", "auth": "apiKey"},
|
|
44
|
+
|
|
45
|
+
# === Legal & Compliance ===
|
|
46
|
+
{"name": "Clio", "description": "Legal practice management API", "category": "Legal", "link": "https://app.clio.com/api/v4/documentation", "auth": "OAuth"},
|
|
47
|
+
{"name": "PracticePanther", "description": "Legal software API", "category": "Legal", "link": "https://www.practicepanther.com/api/", "auth": "apiKey"},
|
|
48
|
+
{"name": "MyCase", "description": "Legal case management API", "category": "Legal", "link": "https://www.mycase.com/api-documentation/", "auth": "apiKey"},
|
|
49
|
+
{"name": "LegalZoom", "description": "Legal services API", "category": "Legal", "link": "https://www.legalzoom.com/partner/api", "auth": "apiKey"},
|
|
50
|
+
{"name": "Docusign", "description": "Electronic signature API", "category": "Legal", "link": "https://developers.docusign.com/", "auth": "OAuth"},
|
|
51
|
+
{"name": "HelloSign", "description": "E-signature API", "category": "Legal", "link": "https://developers.hellosign.com/", "auth": "apiKey"},
|
|
52
|
+
{"name": "PandaDoc", "description": "Document automation API", "category": "Legal", "link": "https://developers.pandadoc.com/", "auth": "apiKey"},
|
|
53
|
+
{"name": "Ironclad", "description": "Contract lifecycle API", "category": "Legal", "link": "https://developer.ironcladapp.com/", "auth": "apiKey"},
|
|
54
|
+
{"name": "Juro", "description": "Contract automation API", "category": "Legal", "link": "https://juro.com/api", "auth": "apiKey"},
|
|
55
|
+
{"name": "OneTrust", "description": "Privacy compliance API", "category": "Legal", "link": "https://developer.onetrust.com/", "auth": "apiKey"},
|
|
56
|
+
{"name": "TrustArc", "description": "Privacy management API", "category": "Legal", "link": "https://www.trustarc.com/products/platform/api/", "auth": "apiKey"},
|
|
57
|
+
{"name": "ComplyAdvantage", "description": "AML and compliance API", "category": "Legal", "link": "https://docs.complyadvantage.com/", "auth": "apiKey"},
|
|
58
|
+
{"name": "Persona", "description": "Identity verification API", "category": "Security", "link": "https://docs.withpersona.com/", "auth": "apiKey"},
|
|
59
|
+
{"name": "Jumio", "description": "Identity verification API", "category": "Security", "link": "https://developer.jumio.com/", "auth": "apiKey"},
|
|
60
|
+
{"name": "Onfido", "description": "Identity verification API", "category": "Security", "link": "https://documentation.onfido.com/", "auth": "apiKey"},
|
|
61
|
+
|
|
62
|
+
# === Real Estate & Property ===
|
|
63
|
+
{"name": "Zillow API", "description": "Real estate data API", "category": "Real Estate", "link": "https://www.zillow.com/howto/api/APIOverview.htm", "auth": "apiKey"},
|
|
64
|
+
{"name": "Redfin", "description": "Real estate market data", "category": "Real Estate", "link": "https://www.redfin.com/stingray/api/", "auth": "apiKey"},
|
|
65
|
+
{"name": "Realtor.com", "description": "Property listings API", "category": "Real Estate", "link": "https://www.realtor.com/api", "auth": "apiKey"},
|
|
66
|
+
{"name": "ATTOM Data", "description": "Property and neighborhood data", "category": "Real Estate", "link": "https://api.developer.attomdata.com/", "auth": "apiKey"},
|
|
67
|
+
{"name": "CoreLogic", "description": "Property data and analytics", "category": "Real Estate", "link": "https://www.corelogic.com/apis/", "auth": "apiKey"},
|
|
68
|
+
{"name": "Estated", "description": "Property data API", "category": "Real Estate", "link": "https://estated.com/developers", "auth": "apiKey"},
|
|
69
|
+
{"name": "Regrid", "description": "Parcel data API", "category": "Real Estate", "link": "https://regrid.com/api", "auth": "apiKey"},
|
|
70
|
+
{"name": "Walk Score", "description": "Walkability scores API", "category": "Real Estate", "link": "https://www.walkscore.com/professional/api.php", "auth": "apiKey"},
|
|
71
|
+
{"name": "GreatSchools", "description": "School ratings API", "category": "Education", "link": "https://www.greatschools.org/api/", "auth": "apiKey"},
|
|
72
|
+
{"name": "Plaid Assets", "description": "Income and asset verification", "category": "Finance", "link": "https://plaid.com/docs/assets/", "auth": "apiKey"},
|
|
73
|
+
{"name": "Yardi", "description": "Property management API", "category": "Real Estate", "link": "https://www.yardi.com/products/api/", "auth": "apiKey"},
|
|
74
|
+
{"name": "AppFolio", "description": "Property management API", "category": "Real Estate", "link": "https://www.appfolio.com/partner-api", "auth": "apiKey"},
|
|
75
|
+
{"name": "Buildium", "description": "Property management API", "category": "Real Estate", "link": "https://developer.buildium.com/", "auth": "apiKey"},
|
|
76
|
+
{"name": "Propertybase", "description": "Real estate CRM API", "category": "Real Estate", "link": "https://developer.propertybase.com/", "auth": "apiKey"},
|
|
77
|
+
|
|
78
|
+
# === Automotive ===
|
|
79
|
+
{"name": "CARFAX", "description": "Vehicle history reports", "category": "Transportation", "link": "https://www.carfax.com/api", "auth": "apiKey"},
|
|
80
|
+
{"name": "AutoCheck", "description": "Vehicle history data", "category": "Transportation", "link": "https://www.autocheck.com/api", "auth": "apiKey"},
|
|
81
|
+
{"name": "KBB", "description": "Kelley Blue Book values", "category": "Transportation", "link": "https://www.kbb.com/api/", "auth": "apiKey"},
|
|
82
|
+
{"name": "NHTSA", "description": "Vehicle safety data", "category": "Government", "link": "https://vpic.nhtsa.dot.gov/api/", "auth": "none"},
|
|
83
|
+
{"name": "VIN Decoder API", "description": "Decode vehicle VINs", "category": "Transportation", "link": "https://vindecoder.eu/api", "auth": "apiKey"},
|
|
84
|
+
{"name": "Auto.dev", "description": "Automotive data API", "category": "Transportation", "link": "https://auto.dev/", "auth": "apiKey"},
|
|
85
|
+
{"name": "Smartcar", "description": "Connected car API", "category": "Transportation", "link": "https://smartcar.com/docs/", "auth": "OAuth"},
|
|
86
|
+
{"name": "Otonomo", "description": "Vehicle data platform", "category": "Transportation", "link": "https://otonomo.io/docs/", "auth": "apiKey"},
|
|
87
|
+
{"name": "TomTom", "description": "Maps and traffic API", "category": "Geocoding", "link": "https://developer.tomtom.com/", "auth": "apiKey"},
|
|
88
|
+
{"name": "HERE Automotive", "description": "Automotive location services", "category": "Transportation", "link": "https://developer.here.com/automotive", "auth": "apiKey"},
|
|
89
|
+
{"name": "Turo", "description": "Car sharing platform API", "category": "Transportation", "link": "https://turo.com/us/en/partner", "auth": "apiKey"},
|
|
90
|
+
{"name": "Getaround", "description": "Car sharing API", "category": "Transportation", "link": "https://www.getaround.com/enterprise", "auth": "apiKey"},
|
|
91
|
+
{"name": "Bouncie", "description": "Vehicle tracking API", "category": "Transportation", "link": "https://www.bouncie.com/api/", "auth": "apiKey"},
|
|
92
|
+
|
|
93
|
+
# === Agriculture ===
|
|
94
|
+
{"name": "USDA FoodData Central", "description": "Food and nutrient database", "category": "Food", "link": "https://fdc.nal.usda.gov/api-guide.html", "auth": "apiKey"},
|
|
95
|
+
{"name": "Agworld", "description": "Farm management API", "category": "Agriculture", "link": "https://www.agworld.com/api/", "auth": "apiKey"},
|
|
96
|
+
{"name": "Granular", "description": "Farm management software API", "category": "Agriculture", "link": "https://granular.ag/", "auth": "apiKey"},
|
|
97
|
+
{"name": "Climate FieldView", "description": "Agricultural data platform", "category": "Agriculture", "link": "https://climate.com/partners", "auth": "apiKey"},
|
|
98
|
+
{"name": "Agrian", "description": "Crop planning API", "category": "Agriculture", "link": "https://www.agrian.com/api/", "auth": "apiKey"},
|
|
99
|
+
{"name": "AgriWebb", "description": "Livestock management API", "category": "Agriculture", "link": "https://www.agriwebb.com/api/", "auth": "apiKey"},
|
|
100
|
+
{"name": "Spaceknow", "description": "Satellite imagery analytics", "category": "Agriculture", "link": "https://spaceknow.com/api/", "auth": "apiKey"},
|
|
101
|
+
{"name": "OneSoil", "description": "Agricultural analytics API", "category": "Agriculture", "link": "https://onesoil.ai/api/", "auth": "apiKey"},
|
|
102
|
+
|
|
103
|
+
# === Construction ===
|
|
104
|
+
{"name": "Procore", "description": "Construction management API", "category": "Construction", "link": "https://developers.procore.com/", "auth": "OAuth"},
|
|
105
|
+
{"name": "PlanGrid", "description": "Construction productivity API", "category": "Construction", "link": "https://developer.plangrid.com/", "auth": "OAuth"},
|
|
106
|
+
{"name": "Autodesk BIM 360", "description": "Building information modeling", "category": "Construction", "link": "https://forge.autodesk.com/en/docs/bim360/", "auth": "OAuth"},
|
|
107
|
+
{"name": "Bluebeam", "description": "PDF markup for construction", "category": "Construction", "link": "https://www.bluebeam.com/solutions/api/", "auth": "apiKey"},
|
|
108
|
+
{"name": "ConstructConnect", "description": "Construction data API", "category": "Construction", "link": "https://www.constructconnect.com/api/", "auth": "apiKey"},
|
|
109
|
+
{"name": "CoConstruct", "description": "Home builder software API", "category": "Construction", "link": "https://www.coconstruct.com/api/", "auth": "apiKey"},
|
|
110
|
+
{"name": "Buildertrend", "description": "Construction management API", "category": "Construction", "link": "https://buildertrend.com/api/", "auth": "apiKey"},
|
|
111
|
+
{"name": "Fieldwire", "description": "Field management API", "category": "Construction", "link": "https://developers.fieldwire.com/", "auth": "apiKey"},
|
|
112
|
+
|
|
113
|
+
# === Logistics & Shipping ===
|
|
114
|
+
{"name": "Shippo", "description": "Multi-carrier shipping API", "category": "Logistics", "link": "https://goshippo.com/docs/", "auth": "apiKey"},
|
|
115
|
+
{"name": "EasyPost", "description": "Shipping API", "category": "Logistics", "link": "https://www.easypost.com/docs/api", "auth": "apiKey"},
|
|
116
|
+
{"name": "ShipEngine", "description": "Multi-carrier shipping", "category": "Logistics", "link": "https://www.shipengine.com/docs/", "auth": "apiKey"},
|
|
117
|
+
{"name": "ShipStation", "description": "Order fulfillment API", "category": "Logistics", "link": "https://www.shipstation.com/docs/api/", "auth": "apiKey"},
|
|
118
|
+
{"name": "Flexport", "description": "Freight forwarding API", "category": "Logistics", "link": "https://developers.flexport.com/", "auth": "apiKey"},
|
|
119
|
+
{"name": "Freightos", "description": "Freight rates API", "category": "Logistics", "link": "https://www.freightos.com/api/", "auth": "apiKey"},
|
|
120
|
+
{"name": "project44", "description": "Supply chain visibility", "category": "Logistics", "link": "https://docs.project44.com/", "auth": "apiKey"},
|
|
121
|
+
{"name": "FourKites", "description": "Real-time visibility", "category": "Logistics", "link": "https://www.fourkites.com/api/", "auth": "apiKey"},
|
|
122
|
+
{"name": "Transporeon", "description": "Transport logistics API", "category": "Logistics", "link": "https://www.transporeon.com/api/", "auth": "apiKey"},
|
|
123
|
+
{"name": "Samsara", "description": "Fleet management API", "category": "Logistics", "link": "https://developers.samsara.com/", "auth": "apiKey"},
|
|
124
|
+
{"name": "KeepTruckin", "description": "Fleet management API", "category": "Logistics", "link": "https://developers.keeptruckin.com/", "auth": "apiKey"},
|
|
125
|
+
{"name": "Onfleet", "description": "Last mile delivery API", "category": "Logistics", "link": "https://docs.onfleet.com/reference", "auth": "apiKey"},
|
|
126
|
+
{"name": "Route4Me", "description": "Route optimization API", "category": "Logistics", "link": "https://route4me.io/docs/", "auth": "apiKey"},
|
|
127
|
+
{"name": "Routific", "description": "Route optimization", "category": "Logistics", "link": "https://docs.routific.com/", "auth": "apiKey"},
|
|
128
|
+
{"name": "OptimoRoute", "description": "Route planning API", "category": "Logistics", "link": "https://optimoroute.com/api/", "auth": "apiKey"},
|
|
129
|
+
|
|
130
|
+
# === Insurance ===
|
|
131
|
+
{"name": "Root Insurance", "description": "Insurance telematics API", "category": "Insurance", "link": "https://root.engineering/", "auth": "apiKey"},
|
|
132
|
+
{"name": "Lemonade", "description": "Insurance API", "category": "Insurance", "link": "https://www.lemonade.com/api/", "auth": "apiKey"},
|
|
133
|
+
{"name": "Metromile", "description": "Pay-per-mile insurance API", "category": "Insurance", "link": "https://www.metromile.com/api/", "auth": "apiKey"},
|
|
134
|
+
{"name": "Hippo", "description": "Home insurance API", "category": "Insurance", "link": "https://www.hippo.com/api/", "auth": "apiKey"},
|
|
135
|
+
{"name": "Clearcover", "description": "Auto insurance API", "category": "Insurance", "link": "https://www.clearcover.com/api/", "auth": "apiKey"},
|
|
136
|
+
{"name": "Bold Penguin", "description": "Commercial insurance API", "category": "Insurance", "link": "https://www.boldpenguin.com/developers/", "auth": "apiKey"},
|
|
137
|
+
{"name": "Snapsheet", "description": "Claims management API", "category": "Insurance", "link": "https://www.snapsheetclaims.com/api/", "auth": "apiKey"},
|
|
138
|
+
{"name": "Tractable", "description": "AI for insurance claims", "category": "Insurance", "link": "https://tractable.ai/api/", "auth": "apiKey"},
|
|
139
|
+
|
|
140
|
+
# === Education ===
|
|
141
|
+
{"name": "Canvas LMS", "description": "Learning management system API", "category": "Education", "link": "https://canvas.instructure.com/doc/api/", "auth": "OAuth"},
|
|
142
|
+
{"name": "Blackboard", "description": "LMS API", "category": "Education", "link": "https://developer.blackboard.com/", "auth": "OAuth"},
|
|
143
|
+
{"name": "Moodle", "description": "Open source LMS API", "category": "Education", "link": "https://docs.moodle.org/dev/Web_service_API", "auth": "apiKey"},
|
|
144
|
+
{"name": "Schoology", "description": "LMS API", "category": "Education", "link": "https://developers.schoology.com/", "auth": "OAuth"},
|
|
145
|
+
{"name": "Clever", "description": "Education data API", "category": "Education", "link": "https://dev.clever.com/docs/", "auth": "OAuth"},
|
|
146
|
+
{"name": "ClassLink", "description": "Education identity API", "category": "Education", "link": "https://developer.classlink.com/", "auth": "OAuth"},
|
|
147
|
+
{"name": "Khan Academy", "description": "Educational content API", "category": "Education", "link": "https://github.com/Khan/khan-api", "auth": "OAuth"},
|
|
148
|
+
{"name": "Coursera", "description": "Online courses API", "category": "Education", "link": "https://build.coursera.org/", "auth": "OAuth"},
|
|
149
|
+
{"name": "Udemy", "description": "Online courses API", "category": "Education", "link": "https://www.udemy.com/developers/", "auth": "apiKey"},
|
|
150
|
+
{"name": "edX", "description": "Online courses API", "category": "Education", "link": "https://github.com/edx/edx-platform/wiki/API", "auth": "OAuth"},
|
|
151
|
+
{"name": "Duolingo", "description": "Language learning API", "category": "Education", "link": "https://www.duolingo.com/", "auth": "apiKey"},
|
|
152
|
+
{"name": "Quizlet", "description": "Flashcard platform API", "category": "Education", "link": "https://quizlet.com/api/2.0/docs/", "auth": "OAuth"},
|
|
153
|
+
{"name": "Photomath", "description": "Math problem solver API", "category": "Education", "link": "https://photomath.net/", "auth": "apiKey"},
|
|
154
|
+
|
|
155
|
+
# === HR & Recruiting ===
|
|
156
|
+
{"name": "Greenhouse", "description": "Recruiting software API", "category": "HR", "link": "https://developers.greenhouse.io/", "auth": "apiKey"},
|
|
157
|
+
{"name": "Lever", "description": "Recruiting platform API", "category": "HR", "link": "https://hire.lever.co/developer/documentation", "auth": "apiKey"},
|
|
158
|
+
{"name": "Workable", "description": "Recruiting software API", "category": "HR", "link": "https://workable.readme.io/", "auth": "apiKey"},
|
|
159
|
+
{"name": "BambooHR", "description": "HR software API", "category": "HR", "link": "https://documentation.bamboohr.com/docs/getting-started", "auth": "apiKey"},
|
|
160
|
+
{"name": "Gusto", "description": "Payroll and HR API", "category": "HR", "link": "https://docs.gusto.com/", "auth": "OAuth"},
|
|
161
|
+
{"name": "Rippling", "description": "HR platform API", "category": "HR", "link": "https://developer.rippling.com/", "auth": "OAuth"},
|
|
162
|
+
{"name": "Workday", "description": "Enterprise HR API", "category": "HR", "link": "https://developer.workday.com/", "auth": "OAuth"},
|
|
163
|
+
{"name": "ADP", "description": "Payroll and HR API", "category": "HR", "link": "https://developers.adp.com/", "auth": "OAuth"},
|
|
164
|
+
{"name": "Paychex", "description": "Payroll API", "category": "HR", "link": "https://developer.paychex.com/", "auth": "OAuth"},
|
|
165
|
+
{"name": "Paylocity", "description": "HR and payroll API", "category": "HR", "link": "https://developer.paylocity.com/", "auth": "OAuth"},
|
|
166
|
+
{"name": "JazzHR", "description": "Recruiting software API", "category": "HR", "link": "https://www.jazzhr.com/api/", "auth": "apiKey"},
|
|
167
|
+
{"name": "Breezy HR", "description": "Recruiting software API", "category": "HR", "link": "https://developer.breezy.hr/", "auth": "apiKey"},
|
|
168
|
+
{"name": "Pinpoint", "description": "Recruiting platform API", "category": "HR", "link": "https://www.pinpointhq.com/api/", "auth": "apiKey"},
|
|
169
|
+
{"name": "HiBob", "description": "HR platform API", "category": "HR", "link": "https://apidocs.hibob.com/", "auth": "apiKey"},
|
|
170
|
+
{"name": "Personio", "description": "HR software API", "category": "HR", "link": "https://developer.personio.de/", "auth": "apiKey"},
|
|
171
|
+
{"name": "Namely", "description": "HR platform API", "category": "HR", "link": "https://developers.namely.com/", "auth": "OAuth"},
|
|
172
|
+
|
|
173
|
+
# === Accounting & Finance ===
|
|
174
|
+
{"name": "QuickBooks", "description": "Accounting software API", "category": "Finance", "link": "https://developer.intuit.com/", "auth": "OAuth"},
|
|
175
|
+
{"name": "Xero", "description": "Accounting API", "category": "Finance", "link": "https://developer.xero.com/", "auth": "OAuth"},
|
|
176
|
+
{"name": "FreshBooks", "description": "Accounting API", "category": "Finance", "link": "https://www.freshbooks.com/api/", "auth": "OAuth"},
|
|
177
|
+
{"name": "Wave", "description": "Free accounting API", "category": "Finance", "link": "https://developer.waveapps.com/", "auth": "OAuth"},
|
|
178
|
+
{"name": "Sage", "description": "Accounting software API", "category": "Finance", "link": "https://developer.sage.com/", "auth": "OAuth"},
|
|
179
|
+
{"name": "Bench", "description": "Bookkeeping API", "category": "Finance", "link": "https://bench.co/", "auth": "apiKey"},
|
|
180
|
+
{"name": "Pilot", "description": "Bookkeeping for startups API", "category": "Finance", "link": "https://pilot.com/", "auth": "apiKey"},
|
|
181
|
+
{"name": "Ramp", "description": "Corporate card API", "category": "Finance", "link": "https://docs.ramp.com/", "auth": "apiKey"},
|
|
182
|
+
{"name": "Brex", "description": "Corporate card API", "category": "Finance", "link": "https://developer.brex.com/", "auth": "apiKey"},
|
|
183
|
+
{"name": "Mercury", "description": "Banking for startups API", "category": "Finance", "link": "https://mercury.com/api/", "auth": "apiKey"},
|
|
184
|
+
{"name": "Novo", "description": "Business banking API", "category": "Finance", "link": "https://www.novo.co/api/", "auth": "apiKey"},
|
|
185
|
+
{"name": "Bill.com", "description": "AP/AR automation API", "category": "Finance", "link": "https://developer.bill.com/", "auth": "OAuth"},
|
|
186
|
+
{"name": "Tipalti", "description": "Payables automation API", "category": "Finance", "link": "https://support.tipalti.com/docs/", "auth": "apiKey"},
|
|
187
|
+
{"name": "Coupa", "description": "Spend management API", "category": "Finance", "link": "https://developer.coupa.com/", "auth": "OAuth"},
|
|
188
|
+
{"name": "SAP Ariba", "description": "Procurement API", "category": "Finance", "link": "https://developer.ariba.com/", "auth": "OAuth"},
|
|
189
|
+
|
|
190
|
+
# === Government & Public Data ===
|
|
191
|
+
{"name": "Data.gov", "description": "US government open data", "category": "Government", "link": "https://api.data.gov/docs/", "auth": "apiKey"},
|
|
192
|
+
{"name": "Census Bureau", "description": "US census data API", "category": "Government", "link": "https://www.census.gov/data/developers/data-sets.html", "auth": "apiKey"},
|
|
193
|
+
{"name": "USAspending", "description": "Federal spending data", "category": "Government", "link": "https://api.usaspending.gov/", "auth": "none"},
|
|
194
|
+
{"name": "OpenFEC", "description": "Campaign finance data", "category": "Government", "link": "https://api.open.fec.gov/", "auth": "apiKey"},
|
|
195
|
+
{"name": "ProPublica Congress", "description": "Congressional data API", "category": "Government", "link": "https://projects.propublica.org/api-docs/congress-api/", "auth": "apiKey"},
|
|
196
|
+
{"name": "GovTrack", "description": "Congressional data", "category": "Government", "link": "https://www.govtrack.us/developers/api", "auth": "none"},
|
|
197
|
+
{"name": "Open States", "description": "State legislature data", "category": "Government", "link": "https://docs.openstates.org/api-v3/", "auth": "apiKey"},
|
|
198
|
+
{"name": "FDA", "description": "FDA data API", "category": "Government", "link": "https://open.fda.gov/apis/", "auth": "apiKey"},
|
|
199
|
+
{"name": "EPA", "description": "Environmental data API", "category": "Government", "link": "https://www.epa.gov/developers", "auth": "apiKey"},
|
|
200
|
+
{"name": "NOAA", "description": "Weather and climate data", "category": "Weather", "link": "https://www.ncdc.noaa.gov/cdo-web/webservices/v2", "auth": "apiKey"},
|
|
201
|
+
{"name": "NASA EONET", "description": "Earth observatory events", "category": "Science", "link": "https://eonet.gsfc.nasa.gov/docs/v3", "auth": "none"},
|
|
202
|
+
{"name": "USGS", "description": "Geological survey data", "category": "Science", "link": "https://earthquake.usgs.gov/fdsnws/event/1/", "auth": "none"},
|
|
203
|
+
{"name": "World Bank", "description": "Global development data", "category": "Government", "link": "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589", "auth": "none"},
|
|
204
|
+
{"name": "UN Data", "description": "United Nations data", "category": "Government", "link": "https://data.un.org/Host.aspx?Content=API", "auth": "none"},
|
|
205
|
+
{"name": "OECD", "description": "Economic data", "category": "Government", "link": "https://data.oecd.org/api/", "auth": "none"},
|
|
206
|
+
{"name": "IMF", "description": "International monetary data", "category": "Government", "link": "https://datahelp.imf.org/knowledgebase/topics/125587", "auth": "none"},
|
|
207
|
+
{"name": "European Union", "description": "EU open data", "category": "Government", "link": "https://data.europa.eu/api/", "auth": "none"},
|
|
208
|
+
|
|
209
|
+
# === Hospitality & Travel ===
|
|
210
|
+
{"name": "Amadeus", "description": "Travel and aviation API", "category": "Travel", "link": "https://developers.amadeus.com/", "auth": "apiKey"},
|
|
211
|
+
{"name": "Sabre", "description": "Travel technology API", "category": "Travel", "link": "https://developer.sabre.com/", "auth": "apiKey"},
|
|
212
|
+
{"name": "Travelport", "description": "Travel commerce API", "category": "Travel", "link": "https://developer.travelport.com/", "auth": "apiKey"},
|
|
213
|
+
{"name": "Skyscanner", "description": "Flight search API", "category": "Travel", "link": "https://developers.skyscanner.net/", "auth": "apiKey"},
|
|
214
|
+
{"name": "Kiwi.com", "description": "Flight search API", "category": "Travel", "link": "https://docs.kiwi.com/", "auth": "apiKey"},
|
|
215
|
+
{"name": "Booking.com", "description": "Accommodation API", "category": "Travel", "link": "https://developers.booking.com/", "auth": "apiKey"},
|
|
216
|
+
{"name": "Expedia", "description": "Travel booking API", "category": "Travel", "link": "https://developers.expediagroup.com/", "auth": "apiKey"},
|
|
217
|
+
{"name": "TripAdvisor", "description": "Travel reviews API", "category": "Travel", "link": "https://developer-tripadvisor.com/", "auth": "apiKey"},
|
|
218
|
+
{"name": "Airbnb", "description": "Accommodation API", "category": "Travel", "link": "https://www.airbnb.com/partner", "auth": "OAuth"},
|
|
219
|
+
{"name": "Vrbo", "description": "Vacation rental API", "category": "Travel", "link": "https://www.vrbo.com/partner", "auth": "apiKey"},
|
|
220
|
+
{"name": "Sonder", "description": "Hospitality API", "category": "Travel", "link": "https://www.sonder.com/api/", "auth": "apiKey"},
|
|
221
|
+
{"name": "OpenTable", "description": "Restaurant reservations", "category": "Food", "link": "https://platform.opentable.com/", "auth": "apiKey"},
|
|
222
|
+
{"name": "Resy", "description": "Restaurant reservations", "category": "Food", "link": "https://resy.com/", "auth": "apiKey"},
|
|
223
|
+
{"name": "Toast", "description": "Restaurant POS API", "category": "Food", "link": "https://pos.toasttab.com/developers/", "auth": "OAuth"},
|
|
224
|
+
{"name": "Square for Restaurants", "description": "Restaurant POS API", "category": "Food", "link": "https://developer.squareup.com/", "auth": "OAuth"},
|
|
225
|
+
{"name": "Clover", "description": "POS system API", "category": "Business", "link": "https://docs.clover.com/", "auth": "OAuth"},
|
|
226
|
+
{"name": "Lightspeed", "description": "POS and commerce API", "category": "Business", "link": "https://developers.lightspeedhq.com/", "auth": "OAuth"},
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
def main():
|
|
230
|
+
print("🦞 APIClaw Niche Industry APIs Batch")
|
|
231
|
+
print("=" * 50)
|
|
232
|
+
|
|
233
|
+
registry = load_registry()
|
|
234
|
+
existing_ids = get_existing_ids(registry)
|
|
235
|
+
|
|
236
|
+
added = 0
|
|
237
|
+
skipped = 0
|
|
238
|
+
|
|
239
|
+
for api in NICHE_APIS:
|
|
240
|
+
api_id = generate_id(api['name'])
|
|
241
|
+
|
|
242
|
+
if api_id in existing_ids:
|
|
243
|
+
skipped += 1
|
|
244
|
+
continue
|
|
245
|
+
|
|
246
|
+
registry['apis'].append({
|
|
247
|
+
"id": api_id,
|
|
248
|
+
"name": api['name'],
|
|
249
|
+
"description": api['description'],
|
|
250
|
+
"category": api['category'],
|
|
251
|
+
"auth": api.get('auth', 'apiKey'),
|
|
252
|
+
"https": True,
|
|
253
|
+
"cors": "unknown",
|
|
254
|
+
"link": api['link'],
|
|
255
|
+
"pricing": "unknown",
|
|
256
|
+
"keywords": [],
|
|
257
|
+
"source": "niche-industries"
|
|
258
|
+
})
|
|
259
|
+
existing_ids.add(api_id)
|
|
260
|
+
added += 1
|
|
261
|
+
|
|
262
|
+
save_registry(registry)
|
|
263
|
+
|
|
264
|
+
print(f"✅ Added: {added} APIs")
|
|
265
|
+
print(f"⏭️ Skipped (duplicates): {skipped}")
|
|
266
|
+
print(f"📊 Total APIs in registry: {len(registry['apis'])}")
|
|
267
|
+
|
|
268
|
+
if __name__ == "__main__":
|
|
269
|
+
main()
|