@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,335 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw 2026 Night Batch - Additional APIs from curated sources
|
|
4
|
+
Focus: Modern/2024-2026 APIs that may not be in older lists
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import json
|
|
8
|
+
import re
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
REGISTRY_PATH = Path(__file__).parent.parent / "src" / "registry" / "apis.json"
|
|
12
|
+
|
|
13
|
+
def generate_id(name: str) -> str:
|
|
14
|
+
clean = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
15
|
+
return clean[:50]
|
|
16
|
+
|
|
17
|
+
def load_registry() -> dict:
|
|
18
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
19
|
+
return json.load(f)
|
|
20
|
+
|
|
21
|
+
def save_registry(registry: dict):
|
|
22
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
23
|
+
json.dump(registry, f, indent=2)
|
|
24
|
+
|
|
25
|
+
def get_existing_ids(registry: dict) -> set:
|
|
26
|
+
return {api['id'] for api in registry['apis']}
|
|
27
|
+
|
|
28
|
+
# Modern APIs from 2024-2026
|
|
29
|
+
MODERN_APIS = [
|
|
30
|
+
# === AI/ML 2024-2026 ===
|
|
31
|
+
{"name": "Anthropic Claude API", "description": "Claude AI models API for conversation and analysis", "category": "AI/ML", "link": "https://docs.anthropic.com/en/api/getting-started", "auth": "apiKey"},
|
|
32
|
+
{"name": "Mistral AI", "description": "Open-weight LLMs with API access", "category": "AI/ML", "link": "https://docs.mistral.ai/", "auth": "apiKey"},
|
|
33
|
+
{"name": "Perplexity API", "description": "AI-powered search and question answering", "category": "AI/ML", "link": "https://docs.perplexity.ai/", "auth": "apiKey"},
|
|
34
|
+
{"name": "Groq API", "description": "Ultra-fast LLM inference", "category": "AI/ML", "link": "https://console.groq.com/docs/quickstart", "auth": "apiKey"},
|
|
35
|
+
{"name": "Together AI", "description": "Open source AI models API", "category": "AI/ML", "link": "https://docs.together.ai/", "auth": "apiKey"},
|
|
36
|
+
{"name": "Replicate", "description": "Run ML models in the cloud", "category": "AI/ML", "link": "https://replicate.com/docs", "auth": "apiKey"},
|
|
37
|
+
{"name": "Hugging Face Inference", "description": "Run ML models via API", "category": "AI/ML", "link": "https://huggingface.co/docs/api-inference/", "auth": "apiKey"},
|
|
38
|
+
{"name": "Stability AI", "description": "Stable Diffusion and generative AI", "category": "AI/ML", "link": "https://platform.stability.ai/docs/api-reference", "auth": "apiKey"},
|
|
39
|
+
{"name": "Leonardo AI", "description": "AI image generation API", "category": "AI/ML", "link": "https://docs.leonardo.ai/", "auth": "apiKey"},
|
|
40
|
+
{"name": "Ideogram API", "description": "AI image generation with text rendering", "category": "AI/ML", "link": "https://api.ideogram.ai/docs", "auth": "apiKey"},
|
|
41
|
+
{"name": "Midjourney API", "description": "AI image generation (unofficial)", "category": "AI/ML", "link": "https://docs.midjourney.com/", "auth": "apiKey"},
|
|
42
|
+
{"name": "ElevenLabs", "description": "AI voice generation and cloning", "category": "AI/ML", "link": "https://elevenlabs.io/docs/api-reference/", "auth": "apiKey"},
|
|
43
|
+
{"name": "PlayHT", "description": "AI voice generation", "category": "AI/ML", "link": "https://docs.play.ht/", "auth": "apiKey"},
|
|
44
|
+
{"name": "Resemble AI", "description": "AI voice cloning and synthesis", "category": "AI/ML", "link": "https://docs.resemble.ai/", "auth": "apiKey"},
|
|
45
|
+
{"name": "Descript API", "description": "AI audio/video editing", "category": "AI/ML", "link": "https://www.descript.com/api", "auth": "apiKey"},
|
|
46
|
+
{"name": "Runway ML", "description": "AI video generation and editing", "category": "AI/ML", "link": "https://docs.runwayml.com/", "auth": "apiKey"},
|
|
47
|
+
{"name": "Pika Labs", "description": "AI video generation", "category": "AI/ML", "link": "https://pika.art/", "auth": "apiKey"},
|
|
48
|
+
{"name": "Suno AI", "description": "AI music generation", "category": "AI/ML", "link": "https://suno.ai/", "auth": "apiKey"},
|
|
49
|
+
{"name": "Udio", "description": "AI music generation", "category": "AI/ML", "link": "https://www.udio.com/", "auth": "apiKey"},
|
|
50
|
+
{"name": "Luma AI", "description": "3D capture and AI video", "category": "AI/ML", "link": "https://lumalabs.ai/", "auth": "apiKey"},
|
|
51
|
+
{"name": "Cursor AI", "description": "AI code editor API", "category": "AI/ML", "link": "https://cursor.sh/", "auth": "apiKey"},
|
|
52
|
+
{"name": "GitHub Copilot API", "description": "AI pair programming", "category": "AI/ML", "link": "https://docs.github.com/en/copilot", "auth": "apiKey"},
|
|
53
|
+
{"name": "Codeium", "description": "Free AI code completion", "category": "AI/ML", "link": "https://codeium.com/docs", "auth": "apiKey"},
|
|
54
|
+
{"name": "Tabnine", "description": "AI code completion", "category": "AI/ML", "link": "https://docs.tabnine.com/", "auth": "apiKey"},
|
|
55
|
+
{"name": "Sourcegraph Cody", "description": "AI code assistant", "category": "AI/ML", "link": "https://docs.sourcegraph.com/cody", "auth": "apiKey"},
|
|
56
|
+
{"name": "Continue", "description": "Open source AI code assistant", "category": "AI/ML", "link": "https://docs.continue.dev/", "auth": "none"},
|
|
57
|
+
{"name": "Mem0", "description": "Memory layer for AI applications", "category": "AI/ML", "link": "https://docs.mem0.ai/", "auth": "apiKey"},
|
|
58
|
+
{"name": "LangChain Hub", "description": "Discover and share LLM prompts", "category": "AI/ML", "link": "https://docs.smith.langchain.com/", "auth": "apiKey"},
|
|
59
|
+
{"name": "Pinecone", "description": "Vector database for AI", "category": "AI/ML", "link": "https://docs.pinecone.io/", "auth": "apiKey"},
|
|
60
|
+
{"name": "Weaviate", "description": "Open source vector database", "category": "AI/ML", "link": "https://weaviate.io/developers/weaviate", "auth": "apiKey"},
|
|
61
|
+
{"name": "Qdrant", "description": "Vector database for AI", "category": "AI/ML", "link": "https://qdrant.tech/documentation/", "auth": "apiKey"},
|
|
62
|
+
{"name": "Chroma", "description": "Open source embedding database", "category": "AI/ML", "link": "https://docs.trychroma.com/", "auth": "none"},
|
|
63
|
+
{"name": "Milvus", "description": "Vector database for similarity search", "category": "AI/ML", "link": "https://milvus.io/docs", "auth": "none"},
|
|
64
|
+
|
|
65
|
+
# === Databases 2024-2026 ===
|
|
66
|
+
{"name": "Supabase", "description": "Open source Firebase alternative", "category": "Databases", "link": "https://supabase.com/docs/reference", "auth": "apiKey"},
|
|
67
|
+
{"name": "Convex", "description": "Fullstack TypeScript platform", "category": "Databases", "link": "https://docs.convex.dev/", "auth": "apiKey"},
|
|
68
|
+
{"name": "Xata", "description": "Serverless database built on Postgres", "category": "Databases", "link": "https://xata.io/docs", "auth": "apiKey"},
|
|
69
|
+
{"name": "EdgeDB", "description": "Graph-relational database", "category": "Databases", "link": "https://www.edgedb.com/docs/", "auth": "apiKey"},
|
|
70
|
+
{"name": "CockroachDB", "description": "Distributed SQL database", "category": "Databases", "link": "https://www.cockroachlabs.com/docs/", "auth": "apiKey"},
|
|
71
|
+
{"name": "TiDB", "description": "Distributed HTAP database", "category": "Databases", "link": "https://docs.pingcap.com/", "auth": "apiKey"},
|
|
72
|
+
{"name": "SingleStore", "description": "Distributed SQL database", "category": "Databases", "link": "https://docs.singlestore.com/", "auth": "apiKey"},
|
|
73
|
+
{"name": "Drizzle ORM", "description": "TypeScript ORM for SQL", "category": "Databases", "link": "https://orm.drizzle.team/docs/overview", "auth": "none"},
|
|
74
|
+
{"name": "Prisma", "description": "Next-gen Node.js ORM", "category": "Databases", "link": "https://www.prisma.io/docs/", "auth": "none"},
|
|
75
|
+
{"name": "Upstash", "description": "Serverless Redis and Kafka", "category": "Databases", "link": "https://docs.upstash.com/", "auth": "apiKey"},
|
|
76
|
+
{"name": "Deno KV", "description": "Key-value store for Deno Deploy", "category": "Databases", "link": "https://docs.deno.com/kv/manual/", "auth": "apiKey"},
|
|
77
|
+
{"name": "Momento", "description": "Serverless cache", "category": "Databases", "link": "https://docs.momentohq.com/", "auth": "apiKey"},
|
|
78
|
+
|
|
79
|
+
# === Auth 2024-2026 ===
|
|
80
|
+
{"name": "Clerk", "description": "Complete user management", "category": "Authentication", "link": "https://clerk.com/docs", "auth": "apiKey"},
|
|
81
|
+
{"name": "Auth.js", "description": "Authentication for the web", "category": "Authentication", "link": "https://authjs.dev/getting-started/introduction", "auth": "none"},
|
|
82
|
+
{"name": "Lucia Auth", "description": "Simple session-based auth", "category": "Authentication", "link": "https://lucia-auth.com/", "auth": "none"},
|
|
83
|
+
{"name": "Kinde", "description": "Authentication and authorization", "category": "Authentication", "link": "https://docs.kinde.com/", "auth": "apiKey"},
|
|
84
|
+
{"name": "Stytch", "description": "Authentication infrastructure", "category": "Authentication", "link": "https://stytch.com/docs", "auth": "apiKey"},
|
|
85
|
+
{"name": "FusionAuth", "description": "Customer identity platform", "category": "Authentication", "link": "https://fusionauth.io/docs/", "auth": "apiKey"},
|
|
86
|
+
{"name": "Descope", "description": "Passwordless authentication", "category": "Authentication", "link": "https://docs.descope.com/", "auth": "apiKey"},
|
|
87
|
+
{"name": "Hanko", "description": "Passkey-first authentication", "category": "Authentication", "link": "https://docs.hanko.io/", "auth": "apiKey"},
|
|
88
|
+
{"name": "Ory", "description": "Open source identity platform", "category": "Authentication", "link": "https://www.ory.sh/docs/", "auth": "apiKey"},
|
|
89
|
+
{"name": "SuperTokens", "description": "Open source authentication", "category": "Authentication", "link": "https://supertokens.com/docs/", "auth": "apiKey"},
|
|
90
|
+
|
|
91
|
+
# === Payments 2024-2026 ===
|
|
92
|
+
{"name": "Polar", "description": "Monetization for developers", "category": "Payments", "link": "https://docs.polar.sh/", "auth": "apiKey"},
|
|
93
|
+
{"name": "Lemon Squeezy", "description": "Payments for digital products", "category": "Payments", "link": "https://docs.lemonsqueezy.com/", "auth": "apiKey"},
|
|
94
|
+
{"name": "Paddle", "description": "Revenue delivery platform", "category": "Payments", "link": "https://developer.paddle.com/", "auth": "apiKey"},
|
|
95
|
+
{"name": "Chargebee", "description": "Subscription billing", "category": "Payments", "link": "https://www.chargebee.com/docs/", "auth": "apiKey"},
|
|
96
|
+
{"name": "Recurly", "description": "Subscription management", "category": "Payments", "link": "https://developers.recurly.com/", "auth": "apiKey"},
|
|
97
|
+
{"name": "Lago", "description": "Open source metering and billing", "category": "Payments", "link": "https://docs.getlago.com/", "auth": "apiKey"},
|
|
98
|
+
{"name": "Hyperline", "description": "Usage-based billing", "category": "Payments", "link": "https://docs.hyperline.co/", "auth": "apiKey"},
|
|
99
|
+
{"name": "Cryptomus", "description": "Crypto payment gateway", "category": "Payments", "link": "https://doc.cryptomus.com/", "auth": "apiKey"},
|
|
100
|
+
{"name": "NOWPayments", "description": "Crypto payment gateway", "category": "Payments", "link": "https://nowpayments.io/doc/", "auth": "apiKey"},
|
|
101
|
+
{"name": "BTCPay Server", "description": "Self-hosted crypto payments", "category": "Payments", "link": "https://docs.btcpayserver.org/", "auth": "apiKey"},
|
|
102
|
+
|
|
103
|
+
# === Email 2024-2026 ===
|
|
104
|
+
{"name": "Resend", "description": "Email API for developers", "category": "Email", "link": "https://resend.com/docs/api-reference/introduction", "auth": "apiKey"},
|
|
105
|
+
{"name": "Postmark", "description": "Transactional email service", "category": "Email", "link": "https://postmarkapp.com/developer", "auth": "apiKey"},
|
|
106
|
+
{"name": "Loops", "description": "Email for SaaS", "category": "Email", "link": "https://loops.so/docs/api-reference", "auth": "apiKey"},
|
|
107
|
+
{"name": "Plunk", "description": "Open source email platform", "category": "Email", "link": "https://docs.useplunk.com/", "auth": "apiKey"},
|
|
108
|
+
{"name": "Buttondown", "description": "Newsletter platform API", "category": "Email", "link": "https://api.buttondown.email/v1/docs", "auth": "apiKey"},
|
|
109
|
+
{"name": "ConvertKit", "description": "Creator email marketing", "category": "Email", "link": "https://developers.convertkit.com/", "auth": "apiKey"},
|
|
110
|
+
{"name": "Mailersend", "description": "Transactional email API", "category": "Email", "link": "https://developers.mailersend.com/", "auth": "apiKey"},
|
|
111
|
+
{"name": "Mailpace", "description": "Transactional email", "category": "Email", "link": "https://docs.mailpace.com/", "auth": "apiKey"},
|
|
112
|
+
|
|
113
|
+
# === Communication 2024-2026 ===
|
|
114
|
+
{"name": "Novu", "description": "Open source notifications", "category": "Communication", "link": "https://docs.novu.co/", "auth": "apiKey"},
|
|
115
|
+
{"name": "Knock", "description": "Notifications infrastructure", "category": "Communication", "link": "https://docs.knock.app/", "auth": "apiKey"},
|
|
116
|
+
{"name": "Courier", "description": "Multi-channel notifications", "category": "Communication", "link": "https://www.courier.com/docs/", "auth": "apiKey"},
|
|
117
|
+
{"name": "MagicBell", "description": "In-app notifications", "category": "Communication", "link": "https://www.magicbell.com/docs", "auth": "apiKey"},
|
|
118
|
+
{"name": "Engagespot", "description": "In-app notification center", "category": "Communication", "link": "https://docs.engagespot.co/", "auth": "apiKey"},
|
|
119
|
+
{"name": "Ably", "description": "Realtime messaging infrastructure", "category": "Communication", "link": "https://ably.com/docs/", "auth": "apiKey"},
|
|
120
|
+
{"name": "Pusher", "description": "Realtime notifications", "category": "Communication", "link": "https://pusher.com/docs/", "auth": "apiKey"},
|
|
121
|
+
{"name": "Stream Chat", "description": "In-app messaging SDK", "category": "Communication", "link": "https://getstream.io/chat/docs/", "auth": "apiKey"},
|
|
122
|
+
{"name": "Sendbird", "description": "Chat, voice, video API", "category": "Communication", "link": "https://sendbird.com/docs/", "auth": "apiKey"},
|
|
123
|
+
{"name": "Livekit", "description": "Open source video/audio", "category": "Communication", "link": "https://docs.livekit.io/", "auth": "apiKey"},
|
|
124
|
+
{"name": "Daily.co", "description": "Video call API", "category": "Communication", "link": "https://docs.daily.co/", "auth": "apiKey"},
|
|
125
|
+
{"name": "Whereby", "description": "Video meetings API", "category": "Communication", "link": "https://whereby.dev/", "auth": "apiKey"},
|
|
126
|
+
|
|
127
|
+
# === CMS 2024-2026 ===
|
|
128
|
+
{"name": "Payload CMS", "description": "Headless CMS with code-first", "category": "CMS", "link": "https://payloadcms.com/docs", "auth": "apiKey"},
|
|
129
|
+
{"name": "Sanity", "description": "Structured content platform", "category": "CMS", "link": "https://www.sanity.io/docs", "auth": "apiKey"},
|
|
130
|
+
{"name": "Directus", "description": "Open data platform", "category": "CMS", "link": "https://docs.directus.io/", "auth": "apiKey"},
|
|
131
|
+
{"name": "Strapi", "description": "Open source headless CMS", "category": "CMS", "link": "https://docs.strapi.io/", "auth": "apiKey"},
|
|
132
|
+
{"name": "Builder.io", "description": "Headless visual CMS", "category": "CMS", "link": "https://www.builder.io/c/docs/", "auth": "apiKey"},
|
|
133
|
+
{"name": "Storyblok", "description": "Headless CMS", "category": "CMS", "link": "https://www.storyblok.com/docs/", "auth": "apiKey"},
|
|
134
|
+
{"name": "Hygraph", "description": "GraphQL headless CMS", "category": "CMS", "link": "https://hygraph.com/docs", "auth": "apiKey"},
|
|
135
|
+
{"name": "Contentful", "description": "Content platform", "category": "CMS", "link": "https://www.contentful.com/developers/docs/", "auth": "apiKey"},
|
|
136
|
+
{"name": "Ghost CMS", "description": "Publishing platform", "category": "CMS", "link": "https://ghost.org/docs/content-api/", "auth": "apiKey"},
|
|
137
|
+
{"name": "Keystatic", "description": "Git-based CMS", "category": "CMS", "link": "https://keystatic.com/docs", "auth": "none"},
|
|
138
|
+
{"name": "Tinacms", "description": "Git-backed headless CMS", "category": "CMS", "link": "https://tina.io/docs/", "auth": "apiKey"},
|
|
139
|
+
{"name": "Outstatic", "description": "Static CMS for Next.js", "category": "CMS", "link": "https://outstatic.com/docs/", "auth": "none"},
|
|
140
|
+
|
|
141
|
+
# === Analytics 2024-2026 ===
|
|
142
|
+
{"name": "PostHog", "description": "Open source product analytics", "category": "Analytics", "link": "https://posthog.com/docs/api", "auth": "apiKey"},
|
|
143
|
+
{"name": "Plausible", "description": "Privacy-friendly analytics", "category": "Analytics", "link": "https://plausible.io/docs/", "auth": "apiKey"},
|
|
144
|
+
{"name": "Umami", "description": "Open source web analytics", "category": "Analytics", "link": "https://umami.is/docs/", "auth": "apiKey"},
|
|
145
|
+
{"name": "Pirsch", "description": "Privacy-focused analytics", "category": "Analytics", "link": "https://docs.pirsch.io/", "auth": "apiKey"},
|
|
146
|
+
{"name": "Fathom", "description": "Privacy-first analytics", "category": "Analytics", "link": "https://usefathom.com/docs/", "auth": "apiKey"},
|
|
147
|
+
{"name": "Simple Analytics", "description": "Privacy-first analytics", "category": "Analytics", "link": "https://docs.simpleanalytics.com/", "auth": "apiKey"},
|
|
148
|
+
{"name": "June", "description": "Product analytics for B2B SaaS", "category": "Analytics", "link": "https://www.june.so/docs/", "auth": "apiKey"},
|
|
149
|
+
{"name": "Mixpanel", "description": "Product analytics", "category": "Analytics", "link": "https://developer.mixpanel.com/", "auth": "apiKey"},
|
|
150
|
+
{"name": "Amplitude", "description": "Digital analytics platform", "category": "Analytics", "link": "https://www.docs.developers.amplitude.com/", "auth": "apiKey"},
|
|
151
|
+
{"name": "Heap", "description": "Auto-capture analytics", "category": "Analytics", "link": "https://developers.heap.io/", "auth": "apiKey"},
|
|
152
|
+
{"name": "LogSnag", "description": "Event tracking for devs", "category": "Analytics", "link": "https://docs.logsnag.com/", "auth": "apiKey"},
|
|
153
|
+
{"name": "Highlight.io", "description": "Session replay and monitoring", "category": "Analytics", "link": "https://www.highlight.io/docs/", "auth": "apiKey"},
|
|
154
|
+
|
|
155
|
+
# === Monitoring 2024-2026 ===
|
|
156
|
+
{"name": "Sentry", "description": "Error tracking and monitoring", "category": "Monitoring", "link": "https://docs.sentry.io/", "auth": "apiKey"},
|
|
157
|
+
{"name": "BetterStack", "description": "Logging and monitoring", "category": "Monitoring", "link": "https://betterstack.com/docs/", "auth": "apiKey"},
|
|
158
|
+
{"name": "Grafana Cloud", "description": "Observability platform", "category": "Monitoring", "link": "https://grafana.com/docs/", "auth": "apiKey"},
|
|
159
|
+
{"name": "Axiom", "description": "Log management", "category": "Monitoring", "link": "https://axiom.co/docs/", "auth": "apiKey"},
|
|
160
|
+
{"name": "Checkly", "description": "Synthetic monitoring", "category": "Monitoring", "link": "https://www.checklyhq.com/docs/", "auth": "apiKey"},
|
|
161
|
+
{"name": "Cronitor", "description": "Cron job monitoring", "category": "Monitoring", "link": "https://cronitor.io/docs/", "auth": "apiKey"},
|
|
162
|
+
{"name": "Datadog", "description": "Cloud monitoring", "category": "Monitoring", "link": "https://docs.datadoghq.com/api/", "auth": "apiKey"},
|
|
163
|
+
{"name": "New Relic", "description": "Observability platform", "category": "Monitoring", "link": "https://docs.newrelic.com/docs/apis/", "auth": "apiKey"},
|
|
164
|
+
{"name": "Instatus", "description": "Status page service", "category": "Monitoring", "link": "https://instatus.com/help/api", "auth": "apiKey"},
|
|
165
|
+
{"name": "Openstatus", "description": "Open source status page", "category": "Monitoring", "link": "https://docs.openstatus.dev/", "auth": "apiKey"},
|
|
166
|
+
{"name": "Incident.io", "description": "Incident management", "category": "Monitoring", "link": "https://api-docs.incident.io/", "auth": "apiKey"},
|
|
167
|
+
|
|
168
|
+
# === Search 2024-2026 ===
|
|
169
|
+
{"name": "Typesense", "description": "Open source search engine", "category": "Search", "link": "https://typesense.org/docs/", "auth": "apiKey"},
|
|
170
|
+
{"name": "Meilisearch", "description": "Fast search API", "category": "Search", "link": "https://www.meilisearch.com/docs/", "auth": "apiKey"},
|
|
171
|
+
{"name": "Algolia", "description": "Search and discovery API", "category": "Search", "link": "https://www.algolia.com/doc/", "auth": "apiKey"},
|
|
172
|
+
{"name": "Elasticsearch", "description": "Distributed search engine", "category": "Search", "link": "https://www.elastic.co/guide/", "auth": "apiKey"},
|
|
173
|
+
{"name": "Orama", "description": "Full-text search engine", "category": "Search", "link": "https://docs.oramasearch.com/", "auth": "apiKey"},
|
|
174
|
+
{"name": "Zinc Search", "description": "Lightweight search engine", "category": "Search", "link": "https://zincsearch.com/docs/", "auth": "apiKey"},
|
|
175
|
+
|
|
176
|
+
# === Developer Tools 2024-2026 ===
|
|
177
|
+
{"name": "Vercel", "description": "Frontend cloud platform", "category": "Development", "link": "https://vercel.com/docs/rest-api", "auth": "apiKey"},
|
|
178
|
+
{"name": "Netlify", "description": "Web development platform", "category": "Development", "link": "https://docs.netlify.com/api/", "auth": "apiKey"},
|
|
179
|
+
{"name": "Railway", "description": "Infrastructure platform", "category": "Development", "link": "https://docs.railway.app/reference/public-api", "auth": "apiKey"},
|
|
180
|
+
{"name": "Render", "description": "Cloud application platform", "category": "Development", "link": "https://api-docs.render.com/", "auth": "apiKey"},
|
|
181
|
+
{"name": "Fly.io", "description": "App deployment platform", "category": "Development", "link": "https://fly.io/docs/machines/api/", "auth": "apiKey"},
|
|
182
|
+
{"name": "Coolify", "description": "Self-hostable Heroku alternative", "category": "Development", "link": "https://coolify.io/docs/", "auth": "apiKey"},
|
|
183
|
+
{"name": "SST", "description": "Serverless framework", "category": "Development", "link": "https://docs.sst.dev/", "auth": "none"},
|
|
184
|
+
{"name": "Pulumi", "description": "Infrastructure as code", "category": "Development", "link": "https://www.pulumi.com/docs/", "auth": "apiKey"},
|
|
185
|
+
{"name": "Terraform Cloud", "description": "Infrastructure automation", "category": "Development", "link": "https://developer.hashicorp.com/terraform/cloud-docs/api-docs", "auth": "apiKey"},
|
|
186
|
+
{"name": "Doppler", "description": "Secret management", "category": "Development", "link": "https://docs.doppler.com/reference/api", "auth": "apiKey"},
|
|
187
|
+
{"name": "Infisical", "description": "Open source secret management", "category": "Development", "link": "https://infisical.com/docs/api-reference/", "auth": "apiKey"},
|
|
188
|
+
{"name": "Hashicorp Vault", "description": "Secret management", "category": "Development", "link": "https://developer.hashicorp.com/vault/api-docs", "auth": "apiKey"},
|
|
189
|
+
{"name": "Trigger.dev", "description": "Background jobs", "category": "Development", "link": "https://trigger.dev/docs/", "auth": "apiKey"},
|
|
190
|
+
{"name": "Inngest", "description": "Event-driven background jobs", "category": "Development", "link": "https://www.inngest.com/docs/", "auth": "apiKey"},
|
|
191
|
+
{"name": "Temporal", "description": "Workflow orchestration", "category": "Development", "link": "https://docs.temporal.io/", "auth": "apiKey"},
|
|
192
|
+
{"name": "Prefect", "description": "Workflow orchestration", "category": "Development", "link": "https://docs.prefect.io/", "auth": "apiKey"},
|
|
193
|
+
{"name": "Dagster", "description": "Data orchestration", "category": "Development", "link": "https://docs.dagster.io/", "auth": "apiKey"},
|
|
194
|
+
{"name": "Windmill", "description": "Developer platform for workflows", "category": "Development", "link": "https://docs.windmill.dev/", "auth": "apiKey"},
|
|
195
|
+
{"name": "n8n", "description": "Workflow automation", "category": "Development", "link": "https://docs.n8n.io/api/", "auth": "apiKey"},
|
|
196
|
+
{"name": "Pipedream", "description": "Integration platform", "category": "Development", "link": "https://pipedream.com/docs/api/", "auth": "apiKey"},
|
|
197
|
+
{"name": "Activepieces", "description": "Open source automation", "category": "Development", "link": "https://www.activepieces.com/docs/", "auth": "apiKey"},
|
|
198
|
+
|
|
199
|
+
# === File Storage 2024-2026 ===
|
|
200
|
+
{"name": "Uploadthing", "description": "File uploads for TypeScript", "category": "Cloud Storage", "link": "https://docs.uploadthing.com/", "auth": "apiKey"},
|
|
201
|
+
{"name": "Filebase", "description": "Web3 object storage", "category": "Cloud Storage", "link": "https://docs.filebase.com/", "auth": "apiKey"},
|
|
202
|
+
{"name": "Backblaze B2", "description": "Cloud object storage", "category": "Cloud Storage", "link": "https://www.backblaze.com/b2/docs/", "auth": "apiKey"},
|
|
203
|
+
{"name": "Wasabi", "description": "Cloud object storage", "category": "Cloud Storage", "link": "https://wasabi.com/developers/", "auth": "apiKey"},
|
|
204
|
+
{"name": "Tigris", "description": "Globally distributed S3 storage", "category": "Cloud Storage", "link": "https://www.tigrisdata.com/docs/", "auth": "apiKey"},
|
|
205
|
+
{"name": "MinIO", "description": "S3 compatible object storage", "category": "Cloud Storage", "link": "https://min.io/docs/minio/linux/developers/minio-drivers.html", "auth": "apiKey"},
|
|
206
|
+
{"name": "Bunny CDN", "description": "CDN and storage", "category": "Cloud Storage", "link": "https://docs.bunny.net/", "auth": "apiKey"},
|
|
207
|
+
|
|
208
|
+
# === Feature Flags 2024-2026 ===
|
|
209
|
+
{"name": "LaunchDarkly", "description": "Feature management platform", "category": "Development", "link": "https://docs.launchdarkly.com/home/", "auth": "apiKey"},
|
|
210
|
+
{"name": "Flagsmith", "description": "Open source feature flags", "category": "Development", "link": "https://docs.flagsmith.com/", "auth": "apiKey"},
|
|
211
|
+
{"name": "GrowthBook", "description": "Open source A/B testing", "category": "Development", "link": "https://docs.growthbook.io/", "auth": "apiKey"},
|
|
212
|
+
{"name": "Unleash", "description": "Open source feature flags", "category": "Development", "link": "https://docs.getunleash.io/", "auth": "apiKey"},
|
|
213
|
+
{"name": "ConfigCat", "description": "Feature flags service", "category": "Development", "link": "https://configcat.com/docs/", "auth": "apiKey"},
|
|
214
|
+
{"name": "Statsig", "description": "Feature flags and analytics", "category": "Development", "link": "https://docs.statsig.com/", "auth": "apiKey"},
|
|
215
|
+
{"name": "Eppo", "description": "A/B testing platform", "category": "Development", "link": "https://docs.geteppo.com/", "auth": "apiKey"},
|
|
216
|
+
|
|
217
|
+
# === Forms 2024-2026 ===
|
|
218
|
+
{"name": "Tally", "description": "Form builder", "category": "Business", "link": "https://tally.so/help/developer-resources", "auth": "apiKey"},
|
|
219
|
+
{"name": "Formbricks", "description": "Open source surveys", "category": "Business", "link": "https://formbricks.com/docs/", "auth": "apiKey"},
|
|
220
|
+
{"name": "Fillout", "description": "Form builder", "category": "Business", "link": "https://www.fillout.com/docs", "auth": "apiKey"},
|
|
221
|
+
{"name": "Formspree", "description": "Form backend", "category": "Business", "link": "https://formspree.io/docs/", "auth": "apiKey"},
|
|
222
|
+
{"name": "Basin", "description": "Form backend", "category": "Business", "link": "https://usebasin.com/docs", "auth": "apiKey"},
|
|
223
|
+
{"name": "Getform", "description": "Form endpoint service", "category": "Business", "link": "https://getform.io/docs", "auth": "apiKey"},
|
|
224
|
+
|
|
225
|
+
# === Scheduling 2024-2026 ===
|
|
226
|
+
{"name": "Cal.com", "description": "Open source scheduling", "category": "Business", "link": "https://cal.com/docs/", "auth": "apiKey"},
|
|
227
|
+
{"name": "Calendly", "description": "Scheduling platform", "category": "Business", "link": "https://developer.calendly.com/", "auth": "apiKey"},
|
|
228
|
+
{"name": "SavvyCal", "description": "Scheduling links", "category": "Business", "link": "https://docs.savvycal.com/", "auth": "apiKey"},
|
|
229
|
+
{"name": "Nylas", "description": "Email and calendar API", "category": "Business", "link": "https://developer.nylas.com/", "auth": "apiKey"},
|
|
230
|
+
{"name": "Cronofy", "description": "Calendar API", "category": "Business", "link": "https://docs.cronofy.com/", "auth": "apiKey"},
|
|
231
|
+
|
|
232
|
+
# === Support 2024-2026 ===
|
|
233
|
+
{"name": "Plain", "description": "Customer support API-first", "category": "Customer Support", "link": "https://www.plain.com/docs/api", "auth": "apiKey"},
|
|
234
|
+
{"name": "Intercom", "description": "Customer messaging", "category": "Customer Support", "link": "https://developers.intercom.com/", "auth": "apiKey"},
|
|
235
|
+
{"name": "Crisp", "description": "Customer messaging platform", "category": "Customer Support", "link": "https://docs.crisp.chat/", "auth": "apiKey"},
|
|
236
|
+
{"name": "Chatwoot", "description": "Open source customer engagement", "category": "Customer Support", "link": "https://www.chatwoot.com/developers/api/", "auth": "apiKey"},
|
|
237
|
+
{"name": "Tawk.to", "description": "Live chat", "category": "Customer Support", "link": "https://developer.tawk.to/", "auth": "apiKey"},
|
|
238
|
+
{"name": "Help Scout", "description": "Customer support platform", "category": "Customer Support", "link": "https://developer.helpscout.com/", "auth": "apiKey"},
|
|
239
|
+
{"name": "Freshdesk", "description": "Customer support software", "category": "Customer Support", "link": "https://developers.freshdesk.com/", "auth": "apiKey"},
|
|
240
|
+
{"name": "Zendesk", "description": "Customer service software", "category": "Customer Support", "link": "https://developer.zendesk.com/", "auth": "apiKey"},
|
|
241
|
+
|
|
242
|
+
# === Documentation 2024-2026 ===
|
|
243
|
+
{"name": "Mintlify", "description": "Documentation platform", "category": "Documentation", "link": "https://mintlify.com/docs/", "auth": "apiKey"},
|
|
244
|
+
{"name": "GitBook", "description": "Documentation platform", "category": "Documentation", "link": "https://developer.gitbook.com/", "auth": "apiKey"},
|
|
245
|
+
{"name": "ReadMe", "description": "Developer documentation", "category": "Documentation", "link": "https://docs.readme.com/reference/", "auth": "apiKey"},
|
|
246
|
+
{"name": "Archbee", "description": "Documentation for teams", "category": "Documentation", "link": "https://docs.archbee.com/", "auth": "apiKey"},
|
|
247
|
+
{"name": "Swimm", "description": "Code documentation", "category": "Documentation", "link": "https://docs.swimm.io/", "auth": "apiKey"},
|
|
248
|
+
|
|
249
|
+
# === Miscellaneous 2024-2026 ===
|
|
250
|
+
{"name": "Apify", "description": "Web scraping platform", "category": "Development", "link": "https://docs.apify.com/api/v2", "auth": "apiKey"},
|
|
251
|
+
{"name": "Crawlee", "description": "Web scraping library", "category": "Development", "link": "https://crawlee.dev/docs/", "auth": "none"},
|
|
252
|
+
{"name": "ScrapingBee", "description": "Web scraping API", "category": "Development", "link": "https://www.scrapingbee.com/documentation/", "auth": "apiKey"},
|
|
253
|
+
{"name": "Browserless", "description": "Headless browser service", "category": "Development", "link": "https://docs.browserless.io/", "auth": "apiKey"},
|
|
254
|
+
{"name": "BrowserStack", "description": "Cross-browser testing", "category": "Development", "link": "https://www.browserstack.com/docs/", "auth": "apiKey"},
|
|
255
|
+
{"name": "Sauce Labs", "description": "Testing platform", "category": "Development", "link": "https://docs.saucelabs.com/dev/api/", "auth": "apiKey"},
|
|
256
|
+
{"name": "ScreenshotOne", "description": "Screenshot API", "category": "Development", "link": "https://screenshotone.com/docs/", "auth": "apiKey"},
|
|
257
|
+
{"name": "urlbox", "description": "Screenshot API", "category": "Development", "link": "https://urlbox.io/docs", "auth": "apiKey"},
|
|
258
|
+
{"name": "Browserless PDF", "description": "HTML to PDF API", "category": "Document", "link": "https://docs.browserless.io/docs/pdf.html", "auth": "apiKey"},
|
|
259
|
+
{"name": "DocSpring", "description": "PDF generation API", "category": "Document", "link": "https://docspring.com/docs/", "auth": "apiKey"},
|
|
260
|
+
{"name": "PDFShift", "description": "HTML to PDF API", "category": "Document", "link": "https://pdfshift.io/documentation", "auth": "apiKey"},
|
|
261
|
+
{"name": "Bannerbear", "description": "Auto-generate images", "category": "Design", "link": "https://www.bannerbear.com/api/", "auth": "apiKey"},
|
|
262
|
+
{"name": "Placid", "description": "Creative automation", "category": "Design", "link": "https://placid.app/docs", "auth": "apiKey"},
|
|
263
|
+
{"name": "Abyssale", "description": "Banner generation API", "category": "Design", "link": "https://developer.abyssale.com/", "auth": "apiKey"},
|
|
264
|
+
{"name": "Dub.co", "description": "Link management API", "category": "Utilities", "link": "https://dub.co/docs/api-reference", "auth": "apiKey"},
|
|
265
|
+
{"name": "Short.io", "description": "URL shortener API", "category": "Utilities", "link": "https://developers.short.io/", "auth": "apiKey"},
|
|
266
|
+
{"name": "Rebrandly", "description": "Branded link management", "category": "Utilities", "link": "https://developers.rebrandly.com/", "auth": "apiKey"},
|
|
267
|
+
{"name": "IPinfo", "description": "IP geolocation API", "category": "Utilities", "link": "https://ipinfo.io/developers", "auth": "apiKey"},
|
|
268
|
+
{"name": "IPify", "description": "Simple public IP API", "category": "Utilities", "link": "https://www.ipify.org/", "auth": "none"},
|
|
269
|
+
{"name": "IP-API", "description": "IP geolocation API", "category": "Utilities", "link": "https://ip-api.com/docs/", "auth": "none"},
|
|
270
|
+
{"name": "Abstract API", "description": "Suite of utility APIs", "category": "Utilities", "link": "https://www.abstractapi.com/docs/", "auth": "apiKey"},
|
|
271
|
+
{"name": "IPdata", "description": "IP intelligence API", "category": "Utilities", "link": "https://docs.ipdata.co/", "auth": "apiKey"},
|
|
272
|
+
{"name": "MaxMind GeoIP", "description": "IP geolocation", "category": "Utilities", "link": "https://dev.maxmind.com/geoip/", "auth": "apiKey"},
|
|
273
|
+
{"name": "ZeroBounce", "description": "Email validation", "category": "Email", "link": "https://www.zerobounce.net/docs/", "auth": "apiKey"},
|
|
274
|
+
{"name": "Hunter", "description": "Email finder API", "category": "Email", "link": "https://hunter.io/api-documentation/v2", "auth": "apiKey"},
|
|
275
|
+
{"name": "Clearbit", "description": "Business intelligence APIs", "category": "Business", "link": "https://clearbit.com/docs", "auth": "apiKey"},
|
|
276
|
+
{"name": "Apollo.io", "description": "Sales intelligence API", "category": "Business", "link": "https://apolloio.github.io/apollo-api-docs/", "auth": "apiKey"},
|
|
277
|
+
{"name": "Crunchbase", "description": "Business data API", "category": "Business", "link": "https://data.crunchbase.com/docs", "auth": "apiKey"},
|
|
278
|
+
{"name": "PDL", "description": "People Data Labs API", "category": "Business", "link": "https://docs.peopledatalabs.com/", "auth": "apiKey"},
|
|
279
|
+
{"name": "Clay", "description": "Data enrichment", "category": "Business", "link": "https://docs.clay.com/", "auth": "apiKey"},
|
|
280
|
+
{"name": "Snov.io", "description": "Email finder and verifier", "category": "Email", "link": "https://snov.io/api", "auth": "apiKey"},
|
|
281
|
+
{"name": "Anymail Finder", "description": "Email finder API", "category": "Email", "link": "https://anymailfinder.com/docs/", "auth": "apiKey"},
|
|
282
|
+
{"name": "Firecrawl", "description": "Web scraping to markdown", "category": "Development", "link": "https://docs.firecrawl.dev/", "auth": "apiKey"},
|
|
283
|
+
{"name": "Jina Reader", "description": "Web to LLM-ready content", "category": "AI/ML", "link": "https://jina.ai/reader/", "auth": "none"},
|
|
284
|
+
{"name": "AssemblyAI", "description": "Speech-to-text API", "category": "AI/ML", "link": "https://www.assemblyai.com/docs/", "auth": "apiKey"},
|
|
285
|
+
{"name": "Deepgram", "description": "Speech recognition API", "category": "AI/ML", "link": "https://developers.deepgram.com/", "auth": "apiKey"},
|
|
286
|
+
{"name": "Rev.ai", "description": "Speech recognition API", "category": "AI/ML", "link": "https://docs.rev.ai/", "auth": "apiKey"},
|
|
287
|
+
{"name": "Whisper API", "description": "OpenAI speech recognition", "category": "AI/ML", "link": "https://platform.openai.com/docs/guides/speech-to-text", "auth": "apiKey"},
|
|
288
|
+
{"name": "Roboflow", "description": "Computer vision API", "category": "AI/ML", "link": "https://docs.roboflow.com/", "auth": "apiKey"},
|
|
289
|
+
{"name": "Ultralytics", "description": "YOLO models API", "category": "AI/ML", "link": "https://docs.ultralytics.com/", "auth": "none"},
|
|
290
|
+
{"name": "Remove.bg", "description": "Background removal API", "category": "AI/ML", "link": "https://www.remove.bg/api", "auth": "apiKey"},
|
|
291
|
+
{"name": "Photoroom", "description": "Background removal API", "category": "AI/ML", "link": "https://www.photoroom.com/api", "auth": "apiKey"},
|
|
292
|
+
{"name": "Unscreen", "description": "Video background removal", "category": "AI/ML", "link": "https://www.unscreen.com/api", "auth": "apiKey"},
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
def main():
|
|
296
|
+
print("🦞 APIClaw 2026 Night Batch - Modern APIs")
|
|
297
|
+
print("=" * 50)
|
|
298
|
+
|
|
299
|
+
registry = load_registry()
|
|
300
|
+
existing_ids = get_existing_ids(registry)
|
|
301
|
+
|
|
302
|
+
added = 0
|
|
303
|
+
skipped = 0
|
|
304
|
+
|
|
305
|
+
for api in MODERN_APIS:
|
|
306
|
+
api_id = generate_id(api['name'])
|
|
307
|
+
|
|
308
|
+
if api_id in existing_ids:
|
|
309
|
+
skipped += 1
|
|
310
|
+
continue
|
|
311
|
+
|
|
312
|
+
registry['apis'].append({
|
|
313
|
+
"id": api_id,
|
|
314
|
+
"name": api['name'],
|
|
315
|
+
"description": api['description'],
|
|
316
|
+
"category": api['category'],
|
|
317
|
+
"auth": api.get('auth', 'apiKey'),
|
|
318
|
+
"https": True,
|
|
319
|
+
"cors": "unknown",
|
|
320
|
+
"link": api['link'],
|
|
321
|
+
"pricing": "unknown",
|
|
322
|
+
"keywords": [],
|
|
323
|
+
"source": "curated-2026"
|
|
324
|
+
})
|
|
325
|
+
existing_ids.add(api_id)
|
|
326
|
+
added += 1
|
|
327
|
+
|
|
328
|
+
save_registry(registry)
|
|
329
|
+
|
|
330
|
+
print(f"✅ Added: {added} APIs")
|
|
331
|
+
print(f"⏭️ Skipped (duplicates): {skipped}")
|
|
332
|
+
print(f"📊 Total APIs in registry: {len(registry['apis'])}")
|
|
333
|
+
|
|
334
|
+
if __name__ == "__main__":
|
|
335
|
+
main()
|