@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,325 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Night Expansion - 06:00 batch
|
|
4
|
+
Target: Add 1000+ APIs from various sources
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import json
|
|
8
|
+
import urllib.request
|
|
9
|
+
import urllib.error
|
|
10
|
+
import ssl
|
|
11
|
+
import os
|
|
12
|
+
from datetime import datetime
|
|
13
|
+
|
|
14
|
+
REGISTRY_PATH = os.path.expanduser("~/Projects/apiclaw/src/registry/apis.json")
|
|
15
|
+
|
|
16
|
+
def load_registry():
|
|
17
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
18
|
+
return json.load(f)
|
|
19
|
+
|
|
20
|
+
def save_registry(data):
|
|
21
|
+
data['lastUpdated'] = datetime.now().strftime('%Y-%m-%d')
|
|
22
|
+
data['count'] = len(data['apis'])
|
|
23
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
24
|
+
json.dump(data, f, indent=2)
|
|
25
|
+
print(f"Saved {data['count']} APIs to registry")
|
|
26
|
+
|
|
27
|
+
def get_existing_ids(data):
|
|
28
|
+
return {api.get('id', '').lower() for api in data['apis']}
|
|
29
|
+
|
|
30
|
+
def make_id(name):
|
|
31
|
+
return name.lower().replace(' ', '-').replace('/', '-').replace('.', '-')[:50]
|
|
32
|
+
|
|
33
|
+
def fetch_apis_guru():
|
|
34
|
+
"""Fetch from apis.guru OpenAPI directory"""
|
|
35
|
+
print("Fetching apis.guru...")
|
|
36
|
+
ctx = ssl.create_default_context()
|
|
37
|
+
ctx.check_hostname = False
|
|
38
|
+
ctx.verify_mode = ssl.CERT_NONE
|
|
39
|
+
|
|
40
|
+
try:
|
|
41
|
+
req = urllib.request.Request(
|
|
42
|
+
'https://api.apis.guru/v2/list.json',
|
|
43
|
+
headers={'User-Agent': 'APIClaw/1.0'}
|
|
44
|
+
)
|
|
45
|
+
with urllib.request.urlopen(req, context=ctx, timeout=30) as response:
|
|
46
|
+
data = json.loads(response.read().decode())
|
|
47
|
+
apis = []
|
|
48
|
+
for provider, info in data.items():
|
|
49
|
+
preferred = info.get('preferred', '')
|
|
50
|
+
versions = info.get('versions', {})
|
|
51
|
+
if preferred and preferred in versions:
|
|
52
|
+
v = versions[preferred]
|
|
53
|
+
api_info = v.get('info', {})
|
|
54
|
+
cats = api_info.get('x-apisguru-categories', ['general'])
|
|
55
|
+
apis.append({
|
|
56
|
+
'id': make_id(provider),
|
|
57
|
+
'name': api_info.get('title', provider),
|
|
58
|
+
'description': api_info.get('description', '')[:200] if api_info.get('description') else f"API for {provider}",
|
|
59
|
+
'category': cats[0] if cats else 'general',
|
|
60
|
+
'auth': 'apiKey',
|
|
61
|
+
'https': True,
|
|
62
|
+
'cors': 'unknown',
|
|
63
|
+
'link': v.get('swaggerUrl', f'https://{provider}'),
|
|
64
|
+
'pricing': 'freemium',
|
|
65
|
+
'keywords': [provider.split('.')[0], cats[0] if cats else 'api']
|
|
66
|
+
})
|
|
67
|
+
print(f" Found {len(apis)} from apis.guru")
|
|
68
|
+
return apis
|
|
69
|
+
except Exception as e:
|
|
70
|
+
print(f" Error fetching apis.guru: {e}")
|
|
71
|
+
return []
|
|
72
|
+
|
|
73
|
+
# Additional APIs to add - curated categories
|
|
74
|
+
ADDITIONAL_APIS = [
|
|
75
|
+
# E-commerce APIs
|
|
76
|
+
{"id": "shopify-admin", "name": "Shopify Admin API", "description": "Full access to Shopify store data including products, orders, customers", "category": "ecommerce", "auth": "OAuth", "https": True, "link": "https://shopify.dev/api/admin", "pricing": "paid", "keywords": ["ecommerce", "shopify", "store"]},
|
|
77
|
+
{"id": "stripe-connect", "name": "Stripe Connect", "description": "Platform payments for marketplaces and SaaS", "category": "payments", "auth": "apiKey", "https": True, "link": "https://stripe.com/docs/connect", "pricing": "paid", "keywords": ["payments", "marketplace", "saas"]},
|
|
78
|
+
{"id": "klarna-checkout", "name": "Klarna Checkout", "description": "Buy now pay later checkout integration", "category": "payments", "auth": "apiKey", "https": True, "link": "https://docs.klarna.com", "pricing": "paid", "keywords": ["payments", "bnpl", "checkout"]},
|
|
79
|
+
{"id": "woocommerce-rest", "name": "WooCommerce REST API", "description": "WordPress ecommerce platform API", "category": "ecommerce", "auth": "OAuth", "https": True, "link": "https://woocommerce.github.io/woocommerce-rest-api-docs/", "pricing": "free", "keywords": ["wordpress", "ecommerce", "store"]},
|
|
80
|
+
{"id": "bigcommerce-api", "name": "BigCommerce API", "description": "Enterprise ecommerce platform", "category": "ecommerce", "auth": "OAuth", "https": True, "link": "https://developer.bigcommerce.com/api-docs", "pricing": "paid", "keywords": ["ecommerce", "enterprise", "store"]},
|
|
81
|
+
|
|
82
|
+
# AI/ML APIs
|
|
83
|
+
{"id": "anthropic-claude", "name": "Anthropic Claude API", "description": "Claude AI models for text generation and analysis", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.anthropic.com", "pricing": "paid", "keywords": ["ai", "llm", "claude"]},
|
|
84
|
+
{"id": "mistral-ai", "name": "Mistral AI", "description": "Open-weight LLM models via API", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.mistral.ai", "pricing": "paid", "keywords": ["ai", "llm", "mistral"]},
|
|
85
|
+
{"id": "cohere-api", "name": "Cohere API", "description": "NLP models for text understanding and generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.cohere.com", "pricing": "freemium", "keywords": ["ai", "nlp", "embeddings"]},
|
|
86
|
+
{"id": "perplexity-api", "name": "Perplexity API", "description": "AI search and answer generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.perplexity.ai", "pricing": "paid", "keywords": ["ai", "search", "llm"]},
|
|
87
|
+
{"id": "together-ai", "name": "Together AI", "description": "Run and fine-tune open-source LLMs", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.together.ai", "pricing": "paid", "keywords": ["ai", "llm", "finetuning"]},
|
|
88
|
+
{"id": "groq-api", "name": "Groq API", "description": "Ultra-fast LLM inference", "category": "ai", "auth": "apiKey", "https": True, "link": "https://console.groq.com/docs", "pricing": "freemium", "keywords": ["ai", "llm", "fast"]},
|
|
89
|
+
{"id": "fireworks-ai", "name": "Fireworks AI", "description": "Fast inference for open models", "category": "ai", "auth": "apiKey", "https": True, "link": "https://readme.fireworks.ai", "pricing": "paid", "keywords": ["ai", "llm", "inference"]},
|
|
90
|
+
{"id": "runpod-api", "name": "RunPod API", "description": "GPU cloud for AI inference and training", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.runpod.io", "pricing": "paid", "keywords": ["ai", "gpu", "cloud"]},
|
|
91
|
+
{"id": "huggingface-inference", "name": "HuggingFace Inference API", "description": "Access thousands of ML models", "category": "ai", "auth": "apiKey", "https": True, "link": "https://huggingface.co/docs/api-inference", "pricing": "freemium", "keywords": ["ai", "ml", "models"]},
|
|
92
|
+
{"id": "stability-ai", "name": "Stability AI API", "description": "Stable Diffusion image generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://platform.stability.ai/docs", "pricing": "paid", "keywords": ["ai", "image", "stable-diffusion"]},
|
|
93
|
+
|
|
94
|
+
# Developer Tools
|
|
95
|
+
{"id": "github-graphql", "name": "GitHub GraphQL API", "description": "Flexible GitHub data queries", "category": "development", "auth": "OAuth", "https": True, "link": "https://docs.github.com/graphql", "pricing": "freemium", "keywords": ["github", "graphql", "git"]},
|
|
96
|
+
{"id": "gitlab-api", "name": "GitLab API", "description": "GitLab project management and CI/CD", "category": "development", "auth": "OAuth", "https": True, "link": "https://docs.gitlab.com/ee/api/", "pricing": "freemium", "keywords": ["gitlab", "ci", "devops"]},
|
|
97
|
+
{"id": "bitbucket-api", "name": "Bitbucket API", "description": "Atlassian Git repository management", "category": "development", "auth": "OAuth", "https": True, "link": "https://developer.atlassian.com/cloud/bitbucket/rest/", "pricing": "freemium", "keywords": ["git", "atlassian", "repository"]},
|
|
98
|
+
{"id": "vercel-api", "name": "Vercel API", "description": "Deploy and manage serverless applications", "category": "development", "auth": "apiKey", "https": True, "link": "https://vercel.com/docs/rest-api", "pricing": "freemium", "keywords": ["serverless", "deploy", "frontend"]},
|
|
99
|
+
{"id": "netlify-api", "name": "Netlify API", "description": "Web hosting and serverless functions", "category": "development", "auth": "apiKey", "https": True, "link": "https://docs.netlify.com/api/", "pricing": "freemium", "keywords": ["hosting", "serverless", "jamstack"]},
|
|
100
|
+
{"id": "railway-api", "name": "Railway API", "description": "Deploy infrastructure instantly", "category": "development", "auth": "apiKey", "https": True, "link": "https://docs.railway.app/reference/public-api", "pricing": "freemium", "keywords": ["deploy", "infrastructure", "paas"]},
|
|
101
|
+
{"id": "render-api", "name": "Render API", "description": "Cloud application hosting", "category": "development", "auth": "apiKey", "https": True, "link": "https://api-docs.render.com", "pricing": "freemium", "keywords": ["hosting", "cloud", "paas"]},
|
|
102
|
+
{"id": "fly-io-api", "name": "Fly.io API", "description": "Run apps close to users globally", "category": "development", "auth": "apiKey", "https": True, "link": "https://fly.io/docs/machines/api/", "pricing": "freemium", "keywords": ["edge", "deploy", "containers"]},
|
|
103
|
+
|
|
104
|
+
# Communication APIs
|
|
105
|
+
{"id": "sendgrid-api", "name": "SendGrid API", "description": "Email delivery and marketing", "category": "communication", "auth": "apiKey", "https": True, "link": "https://docs.sendgrid.com", "pricing": "freemium", "keywords": ["email", "marketing", "transactional"]},
|
|
106
|
+
{"id": "mailchimp-api", "name": "Mailchimp API", "description": "Email marketing platform", "category": "communication", "auth": "OAuth", "https": True, "link": "https://mailchimp.com/developer/", "pricing": "freemium", "keywords": ["email", "marketing", "newsletter"]},
|
|
107
|
+
{"id": "postmark-api", "name": "Postmark API", "description": "Reliable transactional email", "category": "communication", "auth": "apiKey", "https": True, "link": "https://postmarkapp.com/developer", "pricing": "paid", "keywords": ["email", "transactional", "smtp"]},
|
|
108
|
+
{"id": "mailgun-api", "name": "Mailgun API", "description": "Email API for developers", "category": "communication", "auth": "apiKey", "https": True, "link": "https://documentation.mailgun.com", "pricing": "freemium", "keywords": ["email", "smtp", "api"]},
|
|
109
|
+
{"id": "messagebird-api", "name": "MessageBird API", "description": "Omnichannel communication platform", "category": "communication", "auth": "apiKey", "https": True, "link": "https://developers.messagebird.com", "pricing": "paid", "keywords": ["sms", "voice", "chat"]},
|
|
110
|
+
{"id": "vonage-api", "name": "Vonage API (Nexmo)", "description": "Communications APIs for voice, SMS, video", "category": "communication", "auth": "apiKey", "https": True, "link": "https://developer.vonage.com", "pricing": "paid", "keywords": ["voice", "sms", "video"]},
|
|
111
|
+
{"id": "plivo-api", "name": "Plivo API", "description": "Voice and SMS cloud communications", "category": "communication", "auth": "apiKey", "https": True, "link": "https://www.plivo.com/docs/", "pricing": "paid", "keywords": ["voice", "sms", "cloud"]},
|
|
112
|
+
{"id": "telnyx-api", "name": "Telnyx API", "description": "Global communications platform", "category": "communication", "auth": "apiKey", "https": True, "link": "https://developers.telnyx.com", "pricing": "paid", "keywords": ["voice", "sms", "telephony"]},
|
|
113
|
+
|
|
114
|
+
# Data & Analytics
|
|
115
|
+
{"id": "mixpanel-api", "name": "Mixpanel API", "description": "Product analytics platform", "category": "analytics", "auth": "apiKey", "https": True, "link": "https://developer.mixpanel.com", "pricing": "freemium", "keywords": ["analytics", "product", "events"]},
|
|
116
|
+
{"id": "amplitude-api", "name": "Amplitude API", "description": "Digital analytics platform", "category": "analytics", "auth": "apiKey", "https": True, "link": "https://developers.amplitude.com", "pricing": "freemium", "keywords": ["analytics", "product", "behavior"]},
|
|
117
|
+
{"id": "segment-api", "name": "Segment API", "description": "Customer data platform", "category": "analytics", "auth": "apiKey", "https": True, "link": "https://segment.com/docs/api/", "pricing": "freemium", "keywords": ["cdp", "data", "integration"]},
|
|
118
|
+
{"id": "posthog-api", "name": "PostHog API", "description": "Open-source product analytics", "category": "analytics", "auth": "apiKey", "https": True, "link": "https://posthog.com/docs/api", "pricing": "freemium", "keywords": ["analytics", "open-source", "product"]},
|
|
119
|
+
{"id": "plausible-api", "name": "Plausible Analytics API", "description": "Privacy-friendly web analytics", "category": "analytics", "auth": "apiKey", "https": True, "link": "https://plausible.io/docs", "pricing": "paid", "keywords": ["analytics", "privacy", "web"]},
|
|
120
|
+
{"id": "heap-api", "name": "Heap API", "description": "Digital insights platform", "category": "analytics", "auth": "apiKey", "https": True, "link": "https://developers.heap.io", "pricing": "paid", "keywords": ["analytics", "autocapture", "insights"]},
|
|
121
|
+
|
|
122
|
+
# Database/Storage APIs
|
|
123
|
+
{"id": "supabase-api", "name": "Supabase API", "description": "Open-source Firebase alternative", "category": "database", "auth": "apiKey", "https": True, "link": "https://supabase.com/docs", "pricing": "freemium", "keywords": ["postgres", "realtime", "auth"]},
|
|
124
|
+
{"id": "planetscale-api", "name": "PlanetScale API", "description": "Serverless MySQL platform", "category": "database", "auth": "apiKey", "https": True, "link": "https://docs.planetscale.com/reference/api", "pricing": "freemium", "keywords": ["mysql", "serverless", "scale"]},
|
|
125
|
+
{"id": "neon-api", "name": "Neon API", "description": "Serverless Postgres", "category": "database", "auth": "apiKey", "https": True, "link": "https://neon.tech/docs/reference/api-reference", "pricing": "freemium", "keywords": ["postgres", "serverless", "branching"]},
|
|
126
|
+
{"id": "upstash-api", "name": "Upstash API", "description": "Serverless Redis and Kafka", "category": "database", "auth": "apiKey", "https": True, "link": "https://docs.upstash.com", "pricing": "freemium", "keywords": ["redis", "kafka", "serverless"]},
|
|
127
|
+
{"id": "fauna-api", "name": "Fauna API", "description": "Distributed document-relational database", "category": "database", "auth": "apiKey", "https": True, "link": "https://docs.fauna.com", "pricing": "freemium", "keywords": ["nosql", "distributed", "graphql"]},
|
|
128
|
+
{"id": "cockroachdb-api", "name": "CockroachDB API", "description": "Distributed SQL database", "category": "database", "auth": "apiKey", "https": True, "link": "https://www.cockroachlabs.com/docs/", "pricing": "freemium", "keywords": ["sql", "distributed", "postgres"]},
|
|
129
|
+
{"id": "turso-api", "name": "Turso API", "description": "Edge SQLite database", "category": "database", "auth": "apiKey", "https": True, "link": "https://docs.turso.tech", "pricing": "freemium", "keywords": ["sqlite", "edge", "libsql"]},
|
|
130
|
+
{"id": "cloudflare-d1", "name": "Cloudflare D1 API", "description": "Serverless SQL on the edge", "category": "database", "auth": "apiKey", "https": True, "link": "https://developers.cloudflare.com/d1/", "pricing": "freemium", "keywords": ["sqlite", "edge", "cloudflare"]},
|
|
131
|
+
{"id": "tigris-data", "name": "Tigris Data API", "description": "Globally distributed S3-compatible storage", "category": "storage", "auth": "apiKey", "https": True, "link": "https://www.tigrisdata.com/docs", "pricing": "freemium", "keywords": ["s3", "storage", "global"]},
|
|
132
|
+
{"id": "r2-cloudflare", "name": "Cloudflare R2 API", "description": "Zero egress S3-compatible storage", "category": "storage", "auth": "apiKey", "https": True, "link": "https://developers.cloudflare.com/r2/", "pricing": "freemium", "keywords": ["s3", "storage", "cloudflare"]},
|
|
133
|
+
|
|
134
|
+
# CRM/Sales APIs
|
|
135
|
+
{"id": "hubspot-api", "name": "HubSpot API", "description": "CRM and marketing automation", "category": "crm", "auth": "OAuth", "https": True, "link": "https://developers.hubspot.com", "pricing": "freemium", "keywords": ["crm", "marketing", "sales"]},
|
|
136
|
+
{"id": "salesforce-api", "name": "Salesforce API", "description": "Enterprise CRM platform", "category": "crm", "auth": "OAuth", "https": True, "link": "https://developer.salesforce.com", "pricing": "paid", "keywords": ["crm", "enterprise", "sales"]},
|
|
137
|
+
{"id": "pipedrive-api", "name": "Pipedrive API", "description": "Sales CRM for small teams", "category": "crm", "auth": "apiKey", "https": True, "link": "https://developers.pipedrive.com", "pricing": "paid", "keywords": ["crm", "sales", "pipeline"]},
|
|
138
|
+
{"id": "close-api", "name": "Close CRM API", "description": "Sales CRM for startups", "category": "crm", "auth": "apiKey", "https": True, "link": "https://developer.close.com", "pricing": "paid", "keywords": ["crm", "sales", "calling"]},
|
|
139
|
+
{"id": "freshsales-api", "name": "Freshsales API", "description": "CRM by Freshworks", "category": "crm", "auth": "apiKey", "https": True, "link": "https://developers.freshworks.com/crm/", "pricing": "freemium", "keywords": ["crm", "freshworks", "sales"]},
|
|
140
|
+
{"id": "zoho-crm-api", "name": "Zoho CRM API", "description": "Comprehensive CRM platform", "category": "crm", "auth": "OAuth", "https": True, "link": "https://www.zoho.com/crm/developer/docs/api/", "pricing": "freemium", "keywords": ["crm", "zoho", "sales"]},
|
|
141
|
+
{"id": "copper-api", "name": "Copper CRM API", "description": "Google Workspace CRM", "category": "crm", "auth": "apiKey", "https": True, "link": "https://developer.copper.com", "pricing": "paid", "keywords": ["crm", "google", "workspace"]},
|
|
142
|
+
|
|
143
|
+
# Automation/Integration APIs
|
|
144
|
+
{"id": "zapier-api", "name": "Zapier API", "description": "Workflow automation platform", "category": "automation", "auth": "apiKey", "https": True, "link": "https://platform.zapier.com", "pricing": "freemium", "keywords": ["automation", "integration", "workflow"]},
|
|
145
|
+
{"id": "make-api", "name": "Make (Integromat) API", "description": "Visual automation platform", "category": "automation", "auth": "apiKey", "https": True, "link": "https://www.make.com/en/api-documentation", "pricing": "freemium", "keywords": ["automation", "visual", "integration"]},
|
|
146
|
+
{"id": "n8n-api", "name": "n8n API", "description": "Self-hostable workflow automation", "category": "automation", "auth": "apiKey", "https": True, "link": "https://docs.n8n.io/api/", "pricing": "freemium", "keywords": ["automation", "self-hosted", "workflow"]},
|
|
147
|
+
{"id": "pipedream-api", "name": "Pipedream API", "description": "Serverless integration platform", "category": "automation", "auth": "apiKey", "https": True, "link": "https://pipedream.com/docs/api/", "pricing": "freemium", "keywords": ["serverless", "integration", "events"]},
|
|
148
|
+
{"id": "tray-io-api", "name": "Tray.io API", "description": "Enterprise automation platform", "category": "automation", "auth": "apiKey", "https": True, "link": "https://tray.io/documentation", "pricing": "paid", "keywords": ["automation", "enterprise", "integration"]},
|
|
149
|
+
{"id": "workato-api", "name": "Workato API", "description": "Enterprise integration and automation", "category": "automation", "auth": "OAuth", "https": True, "link": "https://docs.workato.com/api.html", "pricing": "paid", "keywords": ["enterprise", "automation", "integration"]},
|
|
150
|
+
|
|
151
|
+
# Nordic/Swedish APIs
|
|
152
|
+
{"id": "bankid-api", "name": "BankID API", "description": "Swedish electronic identification", "category": "identity", "auth": "certificate", "https": True, "link": "https://www.bankid.com/utvecklare/rp-info", "pricing": "paid", "keywords": ["sweden", "identity", "authentication"]},
|
|
153
|
+
{"id": "swish-api", "name": "Swish API", "description": "Swedish mobile payment system", "category": "payments", "auth": "certificate", "https": True, "link": "https://developer.swish.nu", "pricing": "paid", "keywords": ["sweden", "payments", "mobile"]},
|
|
154
|
+
{"id": "fortnox-api", "name": "Fortnox API", "description": "Swedish accounting software", "category": "finance", "auth": "OAuth", "https": True, "link": "https://developer.fortnox.se", "pricing": "paid", "keywords": ["sweden", "accounting", "erp"]},
|
|
155
|
+
{"id": "visma-api", "name": "Visma API", "description": "Nordic business software", "category": "finance", "auth": "OAuth", "https": True, "link": "https://developer.visma.com", "pricing": "paid", "keywords": ["nordic", "accounting", "erp"]},
|
|
156
|
+
{"id": "scb-api", "name": "SCB (Statistics Sweden) API", "description": "Swedish official statistics", "category": "government", "auth": "None", "https": True, "link": "https://www.scb.se/vara-tjanster/oppna-data/api-for-statistikdatabasen/", "pricing": "free", "keywords": ["sweden", "statistics", "open-data"]},
|
|
157
|
+
{"id": "skatteverket-api", "name": "Skatteverket API", "description": "Swedish Tax Agency services", "category": "government", "auth": "certificate", "https": True, "link": "https://www.skatteverket.se/foretagochorganisationer/etjansterprogram.4.15532c7b1442f256bae11b60.html", "pricing": "free", "keywords": ["sweden", "tax", "government"]},
|
|
158
|
+
{"id": "trafikverket-api", "name": "Trafikverket API", "description": "Swedish transport data", "category": "transportation", "auth": "apiKey", "https": True, "link": "https://api.trafikinfo.trafikverket.se", "pricing": "free", "keywords": ["sweden", "traffic", "transport"]},
|
|
159
|
+
{"id": "hitta-api", "name": "Hitta.se API", "description": "Swedish business directory", "category": "directory", "auth": "apiKey", "https": True, "link": "https://www.hitta.se/api/", "pricing": "paid", "keywords": ["sweden", "business", "directory"]},
|
|
160
|
+
{"id": "postnord-api", "name": "PostNord API", "description": "Nordic postal and logistics", "category": "logistics", "auth": "apiKey", "https": True, "link": "https://developer.postnord.com", "pricing": "freemium", "keywords": ["nordic", "shipping", "tracking"]},
|
|
161
|
+
{"id": "bring-api", "name": "Bring API", "description": "Nordic logistics services", "category": "logistics", "auth": "apiKey", "https": True, "link": "https://developer.bring.com", "pricing": "freemium", "keywords": ["norway", "logistics", "shipping"]},
|
|
162
|
+
|
|
163
|
+
# Media/Content APIs
|
|
164
|
+
{"id": "spotify-api", "name": "Spotify Web API", "description": "Music streaming data and playback", "category": "media", "auth": "OAuth", "https": True, "link": "https://developer.spotify.com/documentation/web-api/", "pricing": "freemium", "keywords": ["music", "streaming", "audio"]},
|
|
165
|
+
{"id": "soundcloud-api", "name": "SoundCloud API", "description": "Audio platform for creators", "category": "media", "auth": "OAuth", "https": True, "link": "https://developers.soundcloud.com", "pricing": "freemium", "keywords": ["music", "audio", "streaming"]},
|
|
166
|
+
{"id": "deezer-api", "name": "Deezer API", "description": "Music streaming service", "category": "media", "auth": "OAuth", "https": True, "link": "https://developers.deezer.com", "pricing": "freemium", "keywords": ["music", "streaming", "audio"]},
|
|
167
|
+
{"id": "youtube-data-api", "name": "YouTube Data API", "description": "Access YouTube videos and channels", "category": "media", "auth": "apiKey", "https": True, "link": "https://developers.google.com/youtube/v3", "pricing": "freemium", "keywords": ["video", "youtube", "streaming"]},
|
|
168
|
+
{"id": "vimeo-api", "name": "Vimeo API", "description": "Professional video hosting", "category": "media", "auth": "OAuth", "https": True, "link": "https://developer.vimeo.com", "pricing": "freemium", "keywords": ["video", "hosting", "professional"]},
|
|
169
|
+
{"id": "cloudinary-api", "name": "Cloudinary API", "description": "Image and video management", "category": "media", "auth": "apiKey", "https": True, "link": "https://cloudinary.com/documentation/", "pricing": "freemium", "keywords": ["image", "video", "cdn"]},
|
|
170
|
+
{"id": "imgix-api", "name": "imgix API", "description": "Real-time image processing", "category": "media", "auth": "apiKey", "https": True, "link": "https://docs.imgix.com", "pricing": "paid", "keywords": ["image", "cdn", "processing"]},
|
|
171
|
+
{"id": "mux-api", "name": "Mux API", "description": "Video infrastructure platform", "category": "media", "auth": "apiKey", "https": True, "link": "https://docs.mux.com", "pricing": "paid", "keywords": ["video", "streaming", "infrastructure"]},
|
|
172
|
+
|
|
173
|
+
# Social/Marketing APIs
|
|
174
|
+
{"id": "twitter-api-v2", "name": "Twitter API v2", "description": "Twitter/X platform access", "category": "social", "auth": "OAuth", "https": True, "link": "https://developer.twitter.com/en/docs/twitter-api", "pricing": "freemium", "keywords": ["twitter", "social", "x"]},
|
|
175
|
+
{"id": "linkedin-api", "name": "LinkedIn API", "description": "Professional network integration", "category": "social", "auth": "OAuth", "https": True, "link": "https://developer.linkedin.com", "pricing": "freemium", "keywords": ["linkedin", "professional", "social"]},
|
|
176
|
+
{"id": "instagram-graph-api", "name": "Instagram Graph API", "description": "Instagram business account access", "category": "social", "auth": "OAuth", "https": True, "link": "https://developers.facebook.com/docs/instagram-api/", "pricing": "free", "keywords": ["instagram", "social", "meta"]},
|
|
177
|
+
{"id": "tiktok-api", "name": "TikTok API", "description": "Short video platform integration", "category": "social", "auth": "OAuth", "https": True, "link": "https://developers.tiktok.com", "pricing": "freemium", "keywords": ["tiktok", "video", "social"]},
|
|
178
|
+
{"id": "reddit-api", "name": "Reddit API", "description": "Reddit platform access", "category": "social", "auth": "OAuth", "https": True, "link": "https://www.reddit.com/dev/api/", "pricing": "freemium", "keywords": ["reddit", "social", "community"]},
|
|
179
|
+
{"id": "discord-api", "name": "Discord API", "description": "Gaming chat platform", "category": "social", "auth": "OAuth", "https": True, "link": "https://discord.com/developers/docs", "pricing": "free", "keywords": ["discord", "chat", "gaming"]},
|
|
180
|
+
{"id": "slack-api", "name": "Slack API", "description": "Business messaging platform", "category": "social", "auth": "OAuth", "https": True, "link": "https://api.slack.com", "pricing": "freemium", "keywords": ["slack", "messaging", "business"]},
|
|
181
|
+
|
|
182
|
+
# Security APIs
|
|
183
|
+
{"id": "auth0-api", "name": "Auth0 API", "description": "Identity and access management", "category": "security", "auth": "apiKey", "https": True, "link": "https://auth0.com/docs/api", "pricing": "freemium", "keywords": ["auth", "identity", "oauth"]},
|
|
184
|
+
{"id": "clerk-api", "name": "Clerk API", "description": "User authentication for React", "category": "security", "auth": "apiKey", "https": True, "link": "https://clerk.com/docs/reference/backend-api", "pricing": "freemium", "keywords": ["auth", "react", "identity"]},
|
|
185
|
+
{"id": "stytch-api", "name": "Stytch API", "description": "Passwordless authentication", "category": "security", "auth": "apiKey", "https": True, "link": "https://stytch.com/docs/api", "pricing": "freemium", "keywords": ["auth", "passwordless", "identity"]},
|
|
186
|
+
{"id": "workos-api", "name": "WorkOS API", "description": "Enterprise identity features", "category": "security", "auth": "apiKey", "https": True, "link": "https://workos.com/docs/reference", "pricing": "freemium", "keywords": ["sso", "enterprise", "directory"]},
|
|
187
|
+
{"id": "snyk-api", "name": "Snyk API", "description": "Security vulnerability scanning", "category": "security", "auth": "apiKey", "https": True, "link": "https://snyk.docs.apiary.io", "pricing": "freemium", "keywords": ["security", "vulnerabilities", "scanning"]},
|
|
188
|
+
{"id": "1password-connect-api", "name": "1Password Connect API", "description": "Secret management for apps", "category": "security", "auth": "apiKey", "https": True, "link": "https://developer.1password.com/docs/connect/", "pricing": "paid", "keywords": ["secrets", "passwords", "vault"]},
|
|
189
|
+
{"id": "hashicorp-vault-api", "name": "HashiCorp Vault API", "description": "Secrets management", "category": "security", "auth": "token", "https": True, "link": "https://developer.hashicorp.com/vault/api-docs", "pricing": "freemium", "keywords": ["secrets", "vault", "encryption"]},
|
|
190
|
+
|
|
191
|
+
# Finance/Fintech APIs
|
|
192
|
+
{"id": "plaid-api", "name": "Plaid API", "description": "Financial data aggregation", "category": "finance", "auth": "apiKey", "https": True, "link": "https://plaid.com/docs/", "pricing": "paid", "keywords": ["banking", "fintech", "accounts"]},
|
|
193
|
+
{"id": "tink-api", "name": "Tink API", "description": "European open banking", "category": "finance", "auth": "OAuth", "https": True, "link": "https://docs.tink.com", "pricing": "paid", "keywords": ["banking", "open-banking", "europe"]},
|
|
194
|
+
{"id": "wise-api", "name": "Wise API", "description": "International money transfers", "category": "finance", "auth": "apiKey", "https": True, "link": "https://api-docs.wise.com", "pricing": "paid", "keywords": ["payments", "transfers", "forex"]},
|
|
195
|
+
{"id": "revolut-api", "name": "Revolut Business API", "description": "Business banking platform", "category": "finance", "auth": "OAuth", "https": True, "link": "https://developer.revolut.com", "pricing": "freemium", "keywords": ["banking", "payments", "business"]},
|
|
196
|
+
{"id": "alpaca-api", "name": "Alpaca Trading API", "description": "Commission-free stock trading", "category": "finance", "auth": "apiKey", "https": True, "link": "https://alpaca.markets/docs/", "pricing": "freemium", "keywords": ["trading", "stocks", "fintech"]},
|
|
197
|
+
{"id": "polygon-api", "name": "Polygon.io API", "description": "Stock market data", "category": "finance", "auth": "apiKey", "https": True, "link": "https://polygon.io/docs", "pricing": "freemium", "keywords": ["stocks", "market-data", "finance"]},
|
|
198
|
+
{"id": "coingecko-api", "name": "CoinGecko API", "description": "Cryptocurrency data", "category": "finance", "auth": "None", "https": True, "link": "https://www.coingecko.com/api/documentation", "pricing": "freemium", "keywords": ["crypto", "market-data", "free"]},
|
|
199
|
+
{"id": "coinmarketcap-api", "name": "CoinMarketCap API", "description": "Crypto market data", "category": "finance", "auth": "apiKey", "https": True, "link": "https://coinmarketcap.com/api/", "pricing": "freemium", "keywords": ["crypto", "market-data", "prices"]},
|
|
200
|
+
|
|
201
|
+
# IoT/Hardware APIs
|
|
202
|
+
{"id": "particle-api", "name": "Particle API", "description": "IoT device management", "category": "iot", "auth": "apiKey", "https": True, "link": "https://docs.particle.io/reference/device-cloud/api/", "pricing": "freemium", "keywords": ["iot", "hardware", "devices"]},
|
|
203
|
+
{"id": "arduino-iot-api", "name": "Arduino IoT Cloud API", "description": "Arduino device management", "category": "iot", "auth": "OAuth", "https": True, "link": "https://www.arduino.cc/reference/en/iot/api/", "pricing": "freemium", "keywords": ["iot", "arduino", "hardware"]},
|
|
204
|
+
{"id": "balena-api", "name": "Balena API", "description": "IoT fleet management", "category": "iot", "auth": "apiKey", "https": True, "link": "https://www.balena.io/docs/reference/api/overview/", "pricing": "freemium", "keywords": ["iot", "fleet", "containers"]},
|
|
205
|
+
{"id": "tuya-api", "name": "Tuya API", "description": "Smart home IoT platform", "category": "iot", "auth": "apiKey", "https": True, "link": "https://developer.tuya.com/en/docs", "pricing": "freemium", "keywords": ["iot", "smart-home", "devices"]},
|
|
206
|
+
{"id": "smartthings-api", "name": "SmartThings API", "description": "Samsung smart home platform", "category": "iot", "auth": "OAuth", "https": True, "link": "https://developer.smartthings.com", "pricing": "free", "keywords": ["iot", "smart-home", "samsung"]},
|
|
207
|
+
{"id": "home-assistant-api", "name": "Home Assistant API", "description": "Open-source home automation", "category": "iot", "auth": "token", "https": True, "link": "https://developers.home-assistant.io/docs/api/rest/", "pricing": "free", "keywords": ["iot", "smart-home", "open-source"]},
|
|
208
|
+
|
|
209
|
+
# Healthcare APIs
|
|
210
|
+
{"id": "epic-fhir-api", "name": "Epic FHIR API", "description": "Healthcare data interoperability", "category": "healthcare", "auth": "OAuth", "https": True, "link": "https://fhir.epic.com", "pricing": "paid", "keywords": ["healthcare", "fhir", "ehr"]},
|
|
211
|
+
{"id": "cerner-fhir-api", "name": "Cerner FHIR API", "description": "Electronic health records", "category": "healthcare", "auth": "OAuth", "https": True, "link": "https://fhir.cerner.com", "pricing": "paid", "keywords": ["healthcare", "fhir", "ehr"]},
|
|
212
|
+
{"id": "human-api", "name": "Human API", "description": "Consumer health data", "category": "healthcare", "auth": "OAuth", "https": True, "link": "https://reference.humanapi.co", "pricing": "paid", "keywords": ["healthcare", "wearables", "data"]},
|
|
213
|
+
{"id": "withings-api", "name": "Withings API", "description": "Health device data", "category": "healthcare", "auth": "OAuth", "https": True, "link": "https://developer.withings.com", "pricing": "free", "keywords": ["health", "wearables", "devices"]},
|
|
214
|
+
{"id": "fitbit-api", "name": "Fitbit API", "description": "Fitness and health data", "category": "healthcare", "auth": "OAuth", "https": True, "link": "https://dev.fitbit.com", "pricing": "free", "keywords": ["fitness", "wearables", "health"]},
|
|
215
|
+
{"id": "oura-api", "name": "Oura Ring API", "description": "Sleep and activity data", "category": "healthcare", "auth": "OAuth", "https": True, "link": "https://cloud.ouraring.com/docs/", "pricing": "free", "keywords": ["sleep", "wearables", "health"]},
|
|
216
|
+
|
|
217
|
+
# More AI & ML APIs
|
|
218
|
+
{"id": "openai-api", "name": "OpenAI API", "description": "GPT models and more", "category": "ai", "auth": "apiKey", "https": True, "link": "https://platform.openai.com/docs", "pricing": "paid", "keywords": ["ai", "gpt", "llm"]},
|
|
219
|
+
{"id": "google-gemini-api", "name": "Google Gemini API", "description": "Google's multimodal AI", "category": "ai", "auth": "apiKey", "https": True, "link": "https://ai.google.dev/docs", "pricing": "freemium", "keywords": ["ai", "gemini", "multimodal"]},
|
|
220
|
+
{"id": "aws-bedrock", "name": "AWS Bedrock", "description": "Managed foundation models", "category": "ai", "auth": "aws-sig", "https": True, "link": "https://docs.aws.amazon.com/bedrock/", "pricing": "paid", "keywords": ["ai", "aws", "llm"]},
|
|
221
|
+
{"id": "azure-openai", "name": "Azure OpenAI Service", "description": "OpenAI models on Azure", "category": "ai", "auth": "apiKey", "https": True, "link": "https://learn.microsoft.com/azure/ai-services/openai/", "pricing": "paid", "keywords": ["ai", "azure", "openai"]},
|
|
222
|
+
{"id": "deepl-api", "name": "DeepL API", "description": "Neural machine translation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://www.deepl.com/docs-api", "pricing": "freemium", "keywords": ["translation", "ai", "nlp"]},
|
|
223
|
+
{"id": "assembly-ai", "name": "AssemblyAI", "description": "Speech-to-text and audio AI", "category": "ai", "auth": "apiKey", "https": True, "link": "https://www.assemblyai.com/docs", "pricing": "paid", "keywords": ["speech", "transcription", "ai"]},
|
|
224
|
+
{"id": "deepgram-api", "name": "Deepgram API", "description": "Speech recognition platform", "category": "ai", "auth": "apiKey", "https": True, "link": "https://developers.deepgram.com", "pricing": "freemium", "keywords": ["speech", "transcription", "ai"]},
|
|
225
|
+
{"id": "rev-ai-api", "name": "Rev.ai API", "description": "Speech recognition service", "category": "ai", "auth": "apiKey", "https": True, "link": "https://www.rev.ai/docs", "pricing": "paid", "keywords": ["speech", "transcription", "ai"]},
|
|
226
|
+
{"id": "leonardo-ai", "name": "Leonardo.AI API", "description": "AI image generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.leonardo.ai", "pricing": "freemium", "keywords": ["image", "generation", "ai"]},
|
|
227
|
+
{"id": "ideogram-api", "name": "Ideogram API", "description": "Text-in-image AI generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.ideogram.ai", "pricing": "paid", "keywords": ["image", "generation", "text"]},
|
|
228
|
+
{"id": "flux-api", "name": "Flux (BFL) API", "description": "Black Forest Labs image models", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.bfl.ml", "pricing": "paid", "keywords": ["image", "flux", "generation"]},
|
|
229
|
+
{"id": "luma-ai", "name": "Luma AI API", "description": "3D capture and video generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.lumalabs.ai", "pricing": "paid", "keywords": ["3d", "video", "ai"]},
|
|
230
|
+
{"id": "runway-api", "name": "Runway API", "description": "AI video generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://docs.dev.runwayml.com", "pricing": "paid", "keywords": ["video", "generation", "ai"]},
|
|
231
|
+
{"id": "pika-api", "name": "Pika API", "description": "AI video creation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://pika.art/developers", "pricing": "paid", "keywords": ["video", "generation", "ai"]},
|
|
232
|
+
{"id": "suno-api", "name": "Suno API", "description": "AI music generation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://suno.com/developers", "pricing": "paid", "keywords": ["music", "generation", "ai"]},
|
|
233
|
+
{"id": "udio-api", "name": "Udio API", "description": "AI music creation", "category": "ai", "auth": "apiKey", "https": True, "link": "https://www.udio.com/developers", "pricing": "paid", "keywords": ["music", "generation", "ai"]},
|
|
234
|
+
|
|
235
|
+
# More Developer Tools
|
|
236
|
+
{"id": "sentry-api", "name": "Sentry API", "description": "Error tracking and monitoring", "category": "development", "auth": "apiKey", "https": True, "link": "https://docs.sentry.io/api/", "pricing": "freemium", "keywords": ["errors", "monitoring", "debugging"]},
|
|
237
|
+
{"id": "datadog-api", "name": "Datadog API", "description": "Observability platform", "category": "development", "auth": "apiKey", "https": True, "link": "https://docs.datadoghq.com/api/", "pricing": "paid", "keywords": ["monitoring", "observability", "apm"]},
|
|
238
|
+
{"id": "newrelic-api", "name": "New Relic API", "description": "Application performance monitoring", "category": "development", "auth": "apiKey", "https": True, "link": "https://docs.newrelic.com/docs/apis/", "pricing": "freemium", "keywords": ["apm", "monitoring", "observability"]},
|
|
239
|
+
{"id": "pagerduty-api", "name": "PagerDuty API", "description": "Incident management", "category": "development", "auth": "apiKey", "https": True, "link": "https://developer.pagerduty.com", "pricing": "freemium", "keywords": ["incidents", "oncall", "alerting"]},
|
|
240
|
+
{"id": "opsgenie-api", "name": "Opsgenie API", "description": "Alerting and on-call management", "category": "development", "auth": "apiKey", "https": True, "link": "https://docs.opsgenie.com/docs/api-overview", "pricing": "freemium", "keywords": ["alerts", "oncall", "atlassian"]},
|
|
241
|
+
{"id": "launchdarkly-api", "name": "LaunchDarkly API", "description": "Feature flag management", "category": "development", "auth": "apiKey", "https": True, "link": "https://apidocs.launchdarkly.com", "pricing": "paid", "keywords": ["feature-flags", "deployment", "testing"]},
|
|
242
|
+
{"id": "split-api", "name": "Split API", "description": "Feature delivery platform", "category": "development", "auth": "apiKey", "https": True, "link": "https://help.split.io/hc/en-us/articles/360020093652-Admin-API", "pricing": "freemium", "keywords": ["feature-flags", "experimentation", "testing"]},
|
|
243
|
+
{"id": "flagsmith-api", "name": "Flagsmith API", "description": "Open-source feature flags", "category": "development", "auth": "apiKey", "https": True, "link": "https://docs.flagsmith.com/clients/rest/", "pricing": "freemium", "keywords": ["feature-flags", "open-source", "remote-config"]},
|
|
244
|
+
{"id": "linear-api", "name": "Linear API", "description": "Issue tracking for product teams", "category": "development", "auth": "apiKey", "https": True, "link": "https://developers.linear.app", "pricing": "freemium", "keywords": ["issues", "project", "product"]},
|
|
245
|
+
{"id": "shortcut-api", "name": "Shortcut API", "description": "Project management for software teams", "category": "development", "auth": "apiKey", "https": True, "link": "https://shortcut.com/api/rest/v3", "pricing": "freemium", "keywords": ["project", "agile", "issues"]},
|
|
246
|
+
{"id": "height-api", "name": "Height API", "description": "Autonomous project management", "category": "development", "auth": "apiKey", "https": True, "link": "https://height.notion.site/Height-API", "pricing": "freemium", "keywords": ["project", "tasks", "ai"]},
|
|
247
|
+
|
|
248
|
+
# Additional Productivity APIs
|
|
249
|
+
{"id": "notion-api", "name": "Notion API", "description": "All-in-one workspace", "category": "productivity", "auth": "OAuth", "https": True, "link": "https://developers.notion.com", "pricing": "freemium", "keywords": ["docs", "database", "workspace"]},
|
|
250
|
+
{"id": "coda-api", "name": "Coda API", "description": "Flexible document platform", "category": "productivity", "auth": "apiKey", "https": True, "link": "https://coda.io/developers/apis/v1", "pricing": "freemium", "keywords": ["docs", "automation", "workspace"]},
|
|
251
|
+
{"id": "airtable-api", "name": "Airtable API", "description": "Spreadsheet-database hybrid", "category": "productivity", "auth": "apiKey", "https": True, "link": "https://airtable.com/developers/web/api", "pricing": "freemium", "keywords": ["database", "spreadsheet", "nocode"]},
|
|
252
|
+
{"id": "monday-api", "name": "Monday.com API", "description": "Work management platform", "category": "productivity", "auth": "apiKey", "https": True, "link": "https://developer.monday.com", "pricing": "freemium", "keywords": ["project", "work", "management"]},
|
|
253
|
+
{"id": "asana-api", "name": "Asana API", "description": "Work management for teams", "category": "productivity", "auth": "OAuth", "https": True, "link": "https://developers.asana.com", "pricing": "freemium", "keywords": ["project", "tasks", "teams"]},
|
|
254
|
+
{"id": "clickup-api", "name": "ClickUp API", "description": "All-in-one productivity", "category": "productivity", "auth": "apiKey", "https": True, "link": "https://clickup.com/api", "pricing": "freemium", "keywords": ["project", "tasks", "productivity"]},
|
|
255
|
+
{"id": "todoist-api", "name": "Todoist API", "description": "Task management", "category": "productivity", "auth": "OAuth", "https": True, "link": "https://developer.todoist.com", "pricing": "freemium", "keywords": ["tasks", "todo", "personal"]},
|
|
256
|
+
{"id": "trello-api", "name": "Trello API", "description": "Kanban-style project management", "category": "productivity", "auth": "apiKey", "https": True, "link": "https://developer.atlassian.com/cloud/trello/rest/", "pricing": "freemium", "keywords": ["kanban", "boards", "atlassian"]},
|
|
257
|
+
{"id": "basecamp-api", "name": "Basecamp API", "description": "Project management and team communication", "category": "productivity", "auth": "OAuth", "https": True, "link": "https://github.com/basecamp/bc3-api", "pricing": "paid", "keywords": ["project", "communication", "teams"]},
|
|
258
|
+
|
|
259
|
+
# Scheduling APIs
|
|
260
|
+
{"id": "calendly-api", "name": "Calendly API", "description": "Scheduling automation", "category": "scheduling", "auth": "OAuth", "https": True, "link": "https://developer.calendly.com", "pricing": "freemium", "keywords": ["scheduling", "meetings", "calendar"]},
|
|
261
|
+
{"id": "cal-com-api", "name": "Cal.com API", "description": "Open-source scheduling", "category": "scheduling", "auth": "apiKey", "https": True, "link": "https://cal.com/docs/api-reference", "pricing": "freemium", "keywords": ["scheduling", "open-source", "calendar"]},
|
|
262
|
+
{"id": "acuity-api", "name": "Acuity Scheduling API", "description": "Appointment scheduling", "category": "scheduling", "auth": "OAuth", "https": True, "link": "https://developers.acuityscheduling.com", "pricing": "paid", "keywords": ["appointments", "scheduling", "booking"]},
|
|
263
|
+
{"id": "google-calendar-api", "name": "Google Calendar API", "description": "Calendar management", "category": "scheduling", "auth": "OAuth", "https": True, "link": "https://developers.google.com/calendar", "pricing": "free", "keywords": ["calendar", "google", "events"]},
|
|
264
|
+
{"id": "microsoft-graph-calendar", "name": "Microsoft Graph Calendar", "description": "Outlook calendar access", "category": "scheduling", "auth": "OAuth", "https": True, "link": "https://learn.microsoft.com/graph/api/resources/calendar", "pricing": "freemium", "keywords": ["calendar", "outlook", "microsoft"]},
|
|
265
|
+
{"id": "nylas-api", "name": "Nylas API", "description": "Email and calendar integration", "category": "scheduling", "auth": "OAuth", "https": True, "link": "https://developer.nylas.com", "pricing": "freemium", "keywords": ["email", "calendar", "integration"]},
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
def add_cors_field(api):
|
|
269
|
+
"""Ensure cors field exists"""
|
|
270
|
+
if 'cors' not in api:
|
|
271
|
+
api['cors'] = 'unknown'
|
|
272
|
+
return api
|
|
273
|
+
|
|
274
|
+
def main():
|
|
275
|
+
print("=" * 60)
|
|
276
|
+
print("APIClaw Night Expansion - 06:00 batch")
|
|
277
|
+
print("=" * 60)
|
|
278
|
+
|
|
279
|
+
# Load current registry
|
|
280
|
+
registry = load_registry()
|
|
281
|
+
existing_ids = get_existing_ids(registry)
|
|
282
|
+
initial_count = len(registry['apis'])
|
|
283
|
+
|
|
284
|
+
print(f"\nStarting count: {initial_count}")
|
|
285
|
+
|
|
286
|
+
added_count = 0
|
|
287
|
+
|
|
288
|
+
# 1. Fetch from apis.guru
|
|
289
|
+
guru_apis = fetch_apis_guru()
|
|
290
|
+
for api in guru_apis:
|
|
291
|
+
api = add_cors_field(api)
|
|
292
|
+
if api['id'].lower() not in existing_ids:
|
|
293
|
+
registry['apis'].append(api)
|
|
294
|
+
existing_ids.add(api['id'].lower())
|
|
295
|
+
added_count += 1
|
|
296
|
+
print(f"Added from apis.guru: {added_count}")
|
|
297
|
+
|
|
298
|
+
# 2. Add curated APIs
|
|
299
|
+
curated_added = 0
|
|
300
|
+
for api in ADDITIONAL_APIS:
|
|
301
|
+
api = add_cors_field(api)
|
|
302
|
+
if api['id'].lower() not in existing_ids:
|
|
303
|
+
registry['apis'].append(api)
|
|
304
|
+
existing_ids.add(api['id'].lower())
|
|
305
|
+
curated_added += 1
|
|
306
|
+
print(f"Added curated APIs: {curated_added}")
|
|
307
|
+
added_count += curated_added
|
|
308
|
+
|
|
309
|
+
# Save registry
|
|
310
|
+
save_registry(registry)
|
|
311
|
+
|
|
312
|
+
final_count = len(registry['apis'])
|
|
313
|
+
print(f"\n{'=' * 60}")
|
|
314
|
+
print(f"SUMMARY")
|
|
315
|
+
print(f"{'=' * 60}")
|
|
316
|
+
print(f"Initial: {initial_count}")
|
|
317
|
+
print(f"Added: {added_count}")
|
|
318
|
+
print(f"Final: {final_count}")
|
|
319
|
+
print(f"{'=' * 60}")
|
|
320
|
+
|
|
321
|
+
return added_count
|
|
322
|
+
|
|
323
|
+
if __name__ == '__main__':
|
|
324
|
+
added = main()
|
|
325
|
+
print(f"\nDONE: +{added} APIs")
|