@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,309 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Night Expansion - February 23, 2026 06:00
|
|
4
|
+
Target: +1000 APIs (16,607 → 17,607+)
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import json
|
|
8
|
+
import os
|
|
9
|
+
from datetime import datetime
|
|
10
|
+
|
|
11
|
+
REGISTRY_PATH = os.path.expanduser("~/Projects/apiclaw/src/registry/apis.json")
|
|
12
|
+
|
|
13
|
+
def load_registry():
|
|
14
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
15
|
+
return json.load(f)
|
|
16
|
+
|
|
17
|
+
def save_registry(data):
|
|
18
|
+
data['lastUpdated'] = datetime.utcnow().isoformat()
|
|
19
|
+
data['count'] = len(data['apis'])
|
|
20
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
21
|
+
json.dump(data, f, indent=2)
|
|
22
|
+
|
|
23
|
+
def generate_id(name):
|
|
24
|
+
return name.lower().replace(' ', '-').replace('.', '-').replace('/', '-')[:50]
|
|
25
|
+
|
|
26
|
+
def add_apis(registry, new_apis):
|
|
27
|
+
existing_ids = {api['id'] for api in registry['apis']}
|
|
28
|
+
added = 0
|
|
29
|
+
for api in new_apis:
|
|
30
|
+
api_id = generate_id(api['name'])
|
|
31
|
+
if api_id not in existing_ids:
|
|
32
|
+
api['id'] = api_id
|
|
33
|
+
registry['apis'].append(api)
|
|
34
|
+
existing_ids.add(api_id)
|
|
35
|
+
added += 1
|
|
36
|
+
return added
|
|
37
|
+
|
|
38
|
+
# =========================================
|
|
39
|
+
# NEW API CATEGORIES - FEBRUARY 23 BATCH
|
|
40
|
+
# =========================================
|
|
41
|
+
|
|
42
|
+
BATCH_1_DEVOPS = [
|
|
43
|
+
{"name": "Datadog API", "description": "Monitoring, security, and analytics platform for cloud-scale applications", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.datadoghq.com/api/", "pricing": "paid"},
|
|
44
|
+
{"name": "PagerDuty API", "description": "Incident management and response orchestration platform", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.pagerduty.com/api-reference/", "pricing": "paid"},
|
|
45
|
+
{"name": "Splunk API", "description": "Search, monitor, and analyze machine-generated data", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://dev.splunk.com/enterprise/docs/devtools/restapidocs", "pricing": "paid"},
|
|
46
|
+
{"name": "New Relic API", "description": "Full-stack observability platform for software analytics", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.newrelic.com/docs/apis/", "pricing": "freemium"},
|
|
47
|
+
{"name": "Grafana API", "description": "Open-source analytics and monitoring solution", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://grafana.com/docs/grafana/latest/http_api/", "pricing": "freemium"},
|
|
48
|
+
{"name": "Prometheus API", "description": "Open-source systems monitoring and alerting toolkit", "category": "DevOps", "auth": "None", "https": True, "cors": "yes", "link": "https://prometheus.io/docs/prometheus/latest/querying/api/", "pricing": "free"},
|
|
49
|
+
{"name": "Sentry API", "description": "Application monitoring and error tracking platform", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.sentry.io/api/", "pricing": "freemium"},
|
|
50
|
+
{"name": "LaunchDarkly API", "description": "Feature flag and toggle management platform", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://apidocs.launchdarkly.com/", "pricing": "paid"},
|
|
51
|
+
{"name": "Rollbar API", "description": "Real-time error monitoring and debugging", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.rollbar.com/reference", "pricing": "freemium"},
|
|
52
|
+
{"name": "Honeycomb API", "description": "Observability for distributed systems", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.honeycomb.io/api/", "pricing": "freemium"},
|
|
53
|
+
{"name": "Opsgenie API", "description": "Incident management and alerting platform", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.opsgenie.com/docs/api-overview", "pricing": "paid"},
|
|
54
|
+
{"name": "StatusPage API", "description": "Status page hosting for communicating service status", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.statuspage.io/", "pricing": "paid"},
|
|
55
|
+
{"name": "Terraform Cloud API", "description": "Infrastructure automation and collaboration", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.hashicorp.com/terraform/cloud-docs/api-docs", "pricing": "freemium"},
|
|
56
|
+
{"name": "Ansible Tower API", "description": "IT automation platform REST API", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.ansible.com/ansible-tower/latest/html/towerapi/", "pricing": "paid"},
|
|
57
|
+
{"name": "Puppet API", "description": "Infrastructure automation and configuration management", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://puppet.com/docs/puppet/latest/http_api/", "pricing": "paid"},
|
|
58
|
+
{"name": "Chef API", "description": "Infrastructure automation and configuration management", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.chef.io/api_chef_server/", "pricing": "paid"},
|
|
59
|
+
{"name": "SaltStack API", "description": "Event-driven IT automation and orchestration", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.saltproject.io/en/latest/ref/netapi/all/salt.netapi.rest_cherrypy.html", "pricing": "paid"},
|
|
60
|
+
{"name": "Consul API", "description": "Service mesh and service discovery", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.hashicorp.com/consul/api-docs", "pricing": "freemium"},
|
|
61
|
+
{"name": "Vault API", "description": "Secrets management and data protection", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.hashicorp.com/vault/api-docs", "pricing": "freemium"},
|
|
62
|
+
{"name": "Nomad API", "description": "Workload orchestration and scheduling", "category": "DevOps", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.hashicorp.com/nomad/api-docs", "pricing": "freemium"},
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
BATCH_2_CLOUD = [
|
|
66
|
+
{"name": "AWS EC2 API", "description": "Elastic Compute Cloud - virtual servers in the cloud", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/ec2/", "pricing": "paid"},
|
|
67
|
+
{"name": "AWS S3 API", "description": "Simple Storage Service - scalable object storage", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/s3/", "pricing": "paid"},
|
|
68
|
+
{"name": "AWS Lambda API", "description": "Serverless compute service", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/lambda/", "pricing": "paid"},
|
|
69
|
+
{"name": "AWS DynamoDB API", "description": "NoSQL database service", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/dynamodb/", "pricing": "paid"},
|
|
70
|
+
{"name": "AWS SQS API", "description": "Simple Queue Service - message queuing", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/sqs/", "pricing": "paid"},
|
|
71
|
+
{"name": "AWS SNS API", "description": "Simple Notification Service - pub/sub messaging", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/sns/", "pricing": "paid"},
|
|
72
|
+
{"name": "AWS CloudWatch API", "description": "Monitoring and observability service", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/cloudwatch/", "pricing": "paid"},
|
|
73
|
+
{"name": "AWS IAM API", "description": "Identity and access management", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/iam/", "pricing": "free"},
|
|
74
|
+
{"name": "AWS Route53 API", "description": "Scalable DNS and domain name registration", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/route53/", "pricing": "paid"},
|
|
75
|
+
{"name": "AWS CloudFormation API", "description": "Infrastructure as code - model and provision resources", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/cloudformation/", "pricing": "free"},
|
|
76
|
+
{"name": "Azure Virtual Machines API", "description": "On-demand scalable computing resources", "category": "Cloud", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/rest/api/compute/virtual-machines", "pricing": "paid"},
|
|
77
|
+
{"name": "Azure Blob Storage API", "description": "Object storage for unstructured data", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api", "pricing": "paid"},
|
|
78
|
+
{"name": "Azure Functions API", "description": "Event-driven serverless compute", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference", "pricing": "paid"},
|
|
79
|
+
{"name": "Azure Cosmos DB API", "description": "Globally distributed multi-model database", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/rest/api/cosmos-db/", "pricing": "paid"},
|
|
80
|
+
{"name": "Azure Service Bus API", "description": "Reliable cloud messaging as a service", "category": "Cloud", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/rest/api/servicebus/", "pricing": "paid"},
|
|
81
|
+
{"name": "Google Cloud Compute API", "description": "Virtual machines running in Google's data centers", "category": "Cloud", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://cloud.google.com/compute/docs/reference/rest/v1", "pricing": "paid"},
|
|
82
|
+
{"name": "Google Cloud Storage API", "description": "Object storage for companies of all sizes", "category": "Cloud", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://cloud.google.com/storage/docs/json_api", "pricing": "paid"},
|
|
83
|
+
{"name": "Google Cloud Functions API", "description": "Event-driven serverless compute platform", "category": "Cloud", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://cloud.google.com/functions/docs/reference/rest", "pricing": "paid"},
|
|
84
|
+
{"name": "Google Cloud Run API", "description": "Fully managed serverless containers", "category": "Cloud", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://cloud.google.com/run/docs/reference/rest", "pricing": "paid"},
|
|
85
|
+
{"name": "Google Cloud Pub/Sub API", "description": "Messaging and ingestion for streaming analytics", "category": "Cloud", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://cloud.google.com/pubsub/docs/reference/rest", "pricing": "paid"},
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
BATCH_3_FINTECH = [
|
|
89
|
+
{"name": "Plaid API", "description": "Connect financial accounts and access transaction data", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://plaid.com/docs/api/", "pricing": "paid"},
|
|
90
|
+
{"name": "Stripe Connect API", "description": "Platform payments for marketplaces", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://stripe.com/docs/connect", "pricing": "paid"},
|
|
91
|
+
{"name": "Stripe Billing API", "description": "Subscription and recurring billing management", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://stripe.com/docs/billing", "pricing": "paid"},
|
|
92
|
+
{"name": "Square API", "description": "Payments, point of sale, and commerce solutions", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.squareup.com/reference/square", "pricing": "freemium"},
|
|
93
|
+
{"name": "Braintree API", "description": "Full-stack payments platform for online and mobile", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.paypal.com/braintree/docs/reference/overview", "pricing": "paid"},
|
|
94
|
+
{"name": "Adyen API", "description": "Global payment platform for enterprise", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.adyen.com/api-explorer/", "pricing": "paid"},
|
|
95
|
+
{"name": "Klarna API", "description": "Buy now pay later and payment solutions", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.klarna.com/", "pricing": "paid"},
|
|
96
|
+
{"name": "Affirm API", "description": "Buy now, pay later financing platform", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.affirm.com/", "pricing": "paid"},
|
|
97
|
+
{"name": "Checkout.com API", "description": "Digital payment processing for enterprise", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.checkout.com/docs/api-reference", "pricing": "paid"},
|
|
98
|
+
{"name": "Wise API", "description": "International money transfers and multi-currency accounts", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://api-docs.transferwise.com/", "pricing": "paid"},
|
|
99
|
+
{"name": "Revolut Business API", "description": "Business banking and financial services", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.revolut.com/docs/business-api/", "pricing": "paid"},
|
|
100
|
+
{"name": "Mercury Bank API", "description": "Banking built for startups", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.mercury.com/reference/introduction", "pricing": "paid"},
|
|
101
|
+
{"name": "Ramp API", "description": "Corporate card and spend management", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.ramp.com/", "pricing": "paid"},
|
|
102
|
+
{"name": "Brex API", "description": "Corporate credit cards and financial software", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.brex.com/", "pricing": "paid"},
|
|
103
|
+
{"name": "Marqeta API", "description": "Modern card issuing platform", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.marqeta.com/docs/developer-guides/core-api-reference", "pricing": "paid"},
|
|
104
|
+
{"name": "Lithic API", "description": "Card issuing and program management", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.lithic.com/", "pricing": "paid"},
|
|
105
|
+
{"name": "Unit API", "description": "Embedded banking and payments infrastructure", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.unit.co/", "pricing": "paid"},
|
|
106
|
+
{"name": "Increase API", "description": "Banking infrastructure for developers", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://increase.com/documentation", "pricing": "paid"},
|
|
107
|
+
{"name": "Column API", "description": "Banking infrastructure built for developers", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.column.com/", "pricing": "paid"},
|
|
108
|
+
{"name": "Modern Treasury API", "description": "Payment operations software", "category": "Finance", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.moderntreasury.com/", "pricing": "paid"},
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
BATCH_4_AI_ML = [
|
|
112
|
+
{"name": "Hugging Face Inference API", "description": "Run ML models with simple HTTP requests", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://huggingface.co/docs/api-inference/", "pricing": "freemium"},
|
|
113
|
+
{"name": "Hugging Face Hub API", "description": "Access and share ML models and datasets", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://huggingface.co/docs/hub/api", "pricing": "free"},
|
|
114
|
+
{"name": "Cohere API", "description": "NLP platform for text generation and understanding", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.cohere.com/reference/about", "pricing": "freemium"},
|
|
115
|
+
{"name": "AI21 Labs API", "description": "Advanced language models and NLP services", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.ai21.com/reference/", "pricing": "freemium"},
|
|
116
|
+
{"name": "Anthropic Messages API", "description": "Claude AI assistant API for conversations", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.anthropic.com/en/api/messages", "pricing": "paid"},
|
|
117
|
+
{"name": "Google Gemini API", "description": "Google's multimodal AI model", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://ai.google.dev/gemini-api/docs", "pricing": "freemium"},
|
|
118
|
+
{"name": "Google Vertex AI API", "description": "Unified MLOps platform for building ML solutions", "category": "AI/ML", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://cloud.google.com/vertex-ai/docs/reference/rest", "pricing": "paid"},
|
|
119
|
+
{"name": "Amazon Bedrock API", "description": "Foundation models as a service", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/bedrock/", "pricing": "paid"},
|
|
120
|
+
{"name": "Amazon SageMaker API", "description": "Build, train, and deploy ML models at scale", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/sagemaker/", "pricing": "paid"},
|
|
121
|
+
{"name": "Azure OpenAI API", "description": "Access to OpenAI models through Azure", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/azure/cognitive-services/openai/", "pricing": "paid"},
|
|
122
|
+
{"name": "Azure Cognitive Services API", "description": "AI services including vision, speech, language", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/azure/cognitive-services/", "pricing": "freemium"},
|
|
123
|
+
{"name": "Stability AI API", "description": "Open AI models for image, video, audio, and language", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://platform.stability.ai/docs/api-reference", "pricing": "freemium"},
|
|
124
|
+
{"name": "Midjourney API", "description": "AI image generation through Discord", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.midjourney.com/", "pricing": "paid"},
|
|
125
|
+
{"name": "DALL-E API", "description": "OpenAI's image generation model", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://platform.openai.com/docs/api-reference/images", "pricing": "paid"},
|
|
126
|
+
{"name": "Whisper API", "description": "OpenAI's speech recognition model", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://platform.openai.com/docs/api-reference/audio", "pricing": "paid"},
|
|
127
|
+
{"name": "AssemblyAI API", "description": "Speech-to-text and audio intelligence API", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.assemblyai.com/docs", "pricing": "freemium"},
|
|
128
|
+
{"name": "Deepgram API", "description": "AI speech recognition and understanding", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.deepgram.com/docs", "pricing": "freemium"},
|
|
129
|
+
{"name": "Speechmatics API", "description": "Enterprise speech recognition technology", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.speechmatics.com/", "pricing": "paid"},
|
|
130
|
+
{"name": "Rev.ai API", "description": "Speech-to-text transcription services", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.rev.ai/", "pricing": "paid"},
|
|
131
|
+
{"name": "Otter.ai API", "description": "AI meeting assistant and transcription", "category": "AI/ML", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://otter.ai/", "pricing": "paid"},
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
BATCH_5_ECOMMERCE = [
|
|
135
|
+
{"name": "Shopify Admin API", "description": "Build apps and integrations for Shopify stores", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://shopify.dev/docs/admin-api", "pricing": "freemium"},
|
|
136
|
+
{"name": "Shopify Storefront API", "description": "Build custom storefronts with Shopify data", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://shopify.dev/docs/storefront-api", "pricing": "freemium"},
|
|
137
|
+
{"name": "WooCommerce API", "description": "REST API for WordPress e-commerce", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://woocommerce.github.io/woocommerce-rest-api-docs/", "pricing": "free"},
|
|
138
|
+
{"name": "BigCommerce API", "description": "Enterprise e-commerce platform API", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.bigcommerce.com/docs/rest-catalog", "pricing": "paid"},
|
|
139
|
+
{"name": "Magento API", "description": "Adobe Commerce REST API", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.adobe.com/commerce/webapi/rest/", "pricing": "paid"},
|
|
140
|
+
{"name": "Salesforce Commerce API", "description": "B2C Commerce platform API", "category": "E-commerce", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.salesforce.com/docs/commerce/b2c-commerce", "pricing": "paid"},
|
|
141
|
+
{"name": "Commercetools API", "description": "Headless commerce platform", "category": "E-commerce", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://docs.commercetools.com/api/", "pricing": "paid"},
|
|
142
|
+
{"name": "Medusa API", "description": "Open-source headless commerce engine", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.medusajs.com/api/admin", "pricing": "free"},
|
|
143
|
+
{"name": "Saleor API", "description": "GraphQL-first headless commerce platform", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.saleor.io/docs/3.x/api-reference", "pricing": "freemium"},
|
|
144
|
+
{"name": "Vendure API", "description": "Headless commerce framework", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.vendure.io/docs/graphql-api/", "pricing": "free"},
|
|
145
|
+
{"name": "Amazon Product API", "description": "Access Amazon product data", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.amazon.com/docs/product-advertising-api/", "pricing": "free"},
|
|
146
|
+
{"name": "eBay API", "description": "Access eBay marketplace data and features", "category": "E-commerce", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.ebay.com/develop/apis", "pricing": "free"},
|
|
147
|
+
{"name": "Etsy API", "description": "Access Etsy marketplace functionality", "category": "E-commerce", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.etsy.com/documentation/", "pricing": "free"},
|
|
148
|
+
{"name": "Walmart API", "description": "Walmart marketplace integration", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.walmart.com/", "pricing": "free"},
|
|
149
|
+
{"name": "Best Buy API", "description": "Access Best Buy product catalog and data", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.bestbuy.com/", "pricing": "free"},
|
|
150
|
+
{"name": "Printful API", "description": "Print-on-demand dropshipping platform", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.printful.com/docs/", "pricing": "freemium"},
|
|
151
|
+
{"name": "Printify API", "description": "Print-on-demand e-commerce platform", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.printify.com/", "pricing": "freemium"},
|
|
152
|
+
{"name": "ShipStation API", "description": "Shipping and fulfillment platform", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.shipstation.com/docs/api/", "pricing": "paid"},
|
|
153
|
+
{"name": "ShipBob API", "description": "E-commerce fulfillment platform", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.shipbob.com/", "pricing": "paid"},
|
|
154
|
+
{"name": "Shippo API", "description": "Shipping API for e-commerce", "category": "E-commerce", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://goshippo.com/docs/", "pricing": "freemium"},
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
BATCH_6_MARKETING = [
|
|
158
|
+
{"name": "Mailchimp API", "description": "Email marketing and automation platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://mailchimp.com/developer/", "pricing": "freemium"},
|
|
159
|
+
{"name": "SendGrid API", "description": "Email delivery and engagement platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.sendgrid.com/api-reference/", "pricing": "freemium"},
|
|
160
|
+
{"name": "Mailgun API", "description": "Email automation made easy", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://documentation.mailgun.com/en/latest/api_reference.html", "pricing": "freemium"},
|
|
161
|
+
{"name": "Postmark API", "description": "Fast, reliable email delivery", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://postmarkapp.com/developer", "pricing": "paid"},
|
|
162
|
+
{"name": "Customer.io API", "description": "Marketing automation for digital businesses", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://customer.io/docs/api/", "pricing": "paid"},
|
|
163
|
+
{"name": "Braze API", "description": "Customer engagement platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.braze.com/docs/api/", "pricing": "paid"},
|
|
164
|
+
{"name": "Iterable API", "description": "Cross-channel marketing platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://api.iterable.com/api/docs", "pricing": "paid"},
|
|
165
|
+
{"name": "Klaviyo API", "description": "E-commerce marketing automation", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.klaviyo.com/en", "pricing": "freemium"},
|
|
166
|
+
{"name": "ActiveCampaign API", "description": "Customer experience automation platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.activecampaign.com/reference/overview", "pricing": "paid"},
|
|
167
|
+
{"name": "Drip API", "description": "E-commerce CRM platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.drip.com/", "pricing": "paid"},
|
|
168
|
+
{"name": "ConvertKit API", "description": "Email marketing for creators", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.convertkit.com/", "pricing": "freemium"},
|
|
169
|
+
{"name": "Beehiiv API", "description": "Newsletter platform for growth", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.beehiiv.com/", "pricing": "freemium"},
|
|
170
|
+
{"name": "Substack API", "description": "Newsletter publishing platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://substack.com/", "pricing": "freemium"},
|
|
171
|
+
{"name": "Buffer API", "description": "Social media management platform", "category": "Marketing", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://buffer.com/developers/api", "pricing": "freemium"},
|
|
172
|
+
{"name": "Hootsuite API", "description": "Social media management", "category": "Marketing", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.hootsuite.com/", "pricing": "paid"},
|
|
173
|
+
{"name": "Sprout Social API", "description": "Social media management and analytics", "category": "Marketing", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.sproutsocial.com/", "pricing": "paid"},
|
|
174
|
+
{"name": "Later API", "description": "Social media scheduling and management", "category": "Marketing", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.later.com/", "pricing": "paid"},
|
|
175
|
+
{"name": "Amplitude API", "description": "Product analytics platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.amplitude.com/docs/apis", "pricing": "freemium"},
|
|
176
|
+
{"name": "Mixpanel API", "description": "Product analytics for mobile and web", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.mixpanel.com/docs", "pricing": "freemium"},
|
|
177
|
+
{"name": "Segment API", "description": "Customer data platform", "category": "Marketing", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://segment.com/docs/connections/sources/catalog/libraries/server/http-api/", "pricing": "freemium"},
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
BATCH_7_CRM = [
|
|
181
|
+
{"name": "Salesforce API", "description": "World's #1 CRM platform", "category": "CRM", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/", "pricing": "paid"},
|
|
182
|
+
{"name": "HubSpot CRM API", "description": "Free CRM with premium features", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.hubspot.com/docs/api/crm/", "pricing": "freemium"},
|
|
183
|
+
{"name": "Pipedrive API", "description": "Sales CRM designed for small teams", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.pipedrive.com/docs/api/v1", "pricing": "paid"},
|
|
184
|
+
{"name": "Zoho CRM API", "description": "Online CRM software for businesses", "category": "CRM", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.zoho.com/crm/developer/docs/api/v2/", "pricing": "freemium"},
|
|
185
|
+
{"name": "Close API", "description": "Inside sales CRM built for growth teams", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.close.com/", "pricing": "paid"},
|
|
186
|
+
{"name": "Freshsales API", "description": "Sales CRM with AI-based lead scoring", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.freshworks.com/crm/api/", "pricing": "paid"},
|
|
187
|
+
{"name": "Copper API", "description": "CRM for Google Workspace", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.copper.com/", "pricing": "paid"},
|
|
188
|
+
{"name": "Attio API", "description": "Modern CRM for relationship-driven teams", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://attio.com/docs/api", "pricing": "paid"},
|
|
189
|
+
{"name": "Folk API", "description": "CRM for people-centric teams", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.folk.app/", "pricing": "paid"},
|
|
190
|
+
{"name": "Monday CRM API", "description": "Work management platform CRM", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.monday.com/api-reference/", "pricing": "paid"},
|
|
191
|
+
{"name": "Zendesk Sell API", "description": "Sales CRM for modern sales teams", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.zendesk.com/api-reference/sales-crm/", "pricing": "paid"},
|
|
192
|
+
{"name": "Insightly API", "description": "CRM for small businesses", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://api.insightly.com/v3.1/Help", "pricing": "paid"},
|
|
193
|
+
{"name": "Nimble API", "description": "Simple CRM for Office 365 & G Suite", "category": "CRM", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.nimble.com/", "pricing": "paid"},
|
|
194
|
+
{"name": "Nutshell API", "description": "CRM designed for small businesses", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.nutshell.com/", "pricing": "paid"},
|
|
195
|
+
{"name": "Agile CRM API", "description": "All-in-One CRM for SMBs", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.agilecrm.com/api", "pricing": "freemium"},
|
|
196
|
+
{"name": "Highrise API", "description": "Simple CRM for small business", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://github.com/basecamp/highrise-api", "pricing": "paid"},
|
|
197
|
+
{"name": "Capsule CRM API", "description": "Simple, smart CRM", "category": "CRM", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.capsulecrm.com/", "pricing": "paid"},
|
|
198
|
+
{"name": "Keap API", "description": "All-in-one sales and marketing automation", "category": "CRM", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.keap.com/docs/rest/", "pricing": "paid"},
|
|
199
|
+
{"name": "SugarCRM API", "description": "Award-winning CRM platform", "category": "CRM", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide/", "pricing": "paid"},
|
|
200
|
+
{"name": "Microsoft Dynamics 365 API", "description": "Enterprise CRM and ERP", "category": "CRM", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/dynamics365/customer-engagement/web-api/", "pricing": "paid"},
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
BATCH_8_COMMUNICATION = [
|
|
204
|
+
{"name": "Twilio Messaging API", "description": "SMS, MMS, and WhatsApp messaging", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.twilio.com/docs/sms/api", "pricing": "paid"},
|
|
205
|
+
{"name": "Twilio Voice API", "description": "Programmable voice calls", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.twilio.com/docs/voice/api", "pricing": "paid"},
|
|
206
|
+
{"name": "Twilio Video API", "description": "Programmable video conferencing", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.twilio.com/docs/video/api", "pricing": "paid"},
|
|
207
|
+
{"name": "Vonage Messages API", "description": "Multi-channel messaging platform", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.vonage.com/en/messages/overview", "pricing": "paid"},
|
|
208
|
+
{"name": "MessageBird API", "description": "Omnichannel communication platform", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.messagebird.com/api/", "pricing": "paid"},
|
|
209
|
+
{"name": "Plivo API", "description": "Cloud communications platform", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.plivo.com/docs/", "pricing": "paid"},
|
|
210
|
+
{"name": "Bandwidth API", "description": "Communications platform as a service", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://dev.bandwidth.com/apis/", "pricing": "paid"},
|
|
211
|
+
{"name": "Telnyx API", "description": "Voice, messaging, and connectivity", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.telnyx.com/docs/overview", "pricing": "paid"},
|
|
212
|
+
{"name": "Sinch API", "description": "Customer engagement cloud platform", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.sinch.com/", "pricing": "paid"},
|
|
213
|
+
{"name": "Discord API", "description": "Chat and voice communication for communities", "category": "Communication", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://discord.com/developers/docs/intro", "pricing": "free"},
|
|
214
|
+
{"name": "Slack API", "description": "Business communication platform", "category": "Communication", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://api.slack.com/", "pricing": "freemium"},
|
|
215
|
+
{"name": "Microsoft Teams API", "description": "Business collaboration platform", "category": "Communication", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/graph/teams-concept-overview", "pricing": "paid"},
|
|
216
|
+
{"name": "Zoom API", "description": "Video conferencing platform", "category": "Communication", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.zoom.us/docs/api/", "pricing": "freemium"},
|
|
217
|
+
{"name": "Google Meet API", "description": "Video conferencing solution", "category": "Communication", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.google.com/meet/api", "pricing": "freemium"},
|
|
218
|
+
{"name": "Daily API", "description": "Video and audio call API", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.daily.co/reference", "pricing": "freemium"},
|
|
219
|
+
{"name": "Agora API", "description": "Real-time engagement platform", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.agora.io/en/", "pricing": "freemium"},
|
|
220
|
+
{"name": "LiveKit API", "description": "Open source WebRTC infrastructure", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.livekit.io/", "pricing": "freemium"},
|
|
221
|
+
{"name": "Sendbird API", "description": "In-app chat and messaging", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://sendbird.com/docs/", "pricing": "freemium"},
|
|
222
|
+
{"name": "Stream Chat API", "description": "In-app messaging infrastructure", "category": "Communication", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://getstream.io/chat/docs/", "pricing": "freemium"},
|
|
223
|
+
{"name": "Intercom API", "description": "Business messaging platform", "category": "Communication", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.intercom.com/docs/build-an-integration/learn-more/rest-apis", "pricing": "paid"},
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
BATCH_9_DATA_SERVICES = [
|
|
227
|
+
{"name": "Clearbit API", "description": "B2B data enrichment and prospecting", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://dashboard.clearbit.com/docs", "pricing": "paid"},
|
|
228
|
+
{"name": "ZoomInfo API", "description": "B2B contact and company data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.zoominfo.com/", "pricing": "paid"},
|
|
229
|
+
{"name": "Apollo API", "description": "Sales intelligence and engagement", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://apolloio.github.io/apollo-api-docs/", "pricing": "freemium"},
|
|
230
|
+
{"name": "Hunter API", "description": "Email finder and verifier", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://hunter.io/api-documentation", "pricing": "freemium"},
|
|
231
|
+
{"name": "Snov.io API", "description": "Email outreach and lead generation", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://snov.io/api", "pricing": "freemium"},
|
|
232
|
+
{"name": "Lusha API", "description": "B2B contact and company data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.lusha.com/docs/", "pricing": "paid"},
|
|
233
|
+
{"name": "FullContact API", "description": "Identity resolution and enrichment", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.fullcontact.com/", "pricing": "paid"},
|
|
234
|
+
{"name": "People Data Labs API", "description": "B2B data API for developers", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.peopledatalabs.com/", "pricing": "freemium"},
|
|
235
|
+
{"name": "Pipl API", "description": "Identity search and verification", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.pipl.com/", "pricing": "paid"},
|
|
236
|
+
{"name": "Diffbot API", "description": "Web data extraction and AI knowledge graph", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.diffbot.com/", "pricing": "paid"},
|
|
237
|
+
{"name": "Crunchbase API", "description": "Company and investor data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://data.crunchbase.com/docs", "pricing": "paid"},
|
|
238
|
+
{"name": "PitchBook API", "description": "Private market data and research", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://pitchbook.com/data", "pricing": "paid"},
|
|
239
|
+
{"name": "BuiltWith API", "description": "Website technology profiling", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://builtwith.com/api", "pricing": "paid"},
|
|
240
|
+
{"name": "SimilarWeb API", "description": "Website traffic and engagement data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.similarweb.com/corp/developer/", "pricing": "paid"},
|
|
241
|
+
{"name": "SEMrush API", "description": "SEO and marketing data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.semrush.com/", "pricing": "paid"},
|
|
242
|
+
{"name": "Ahrefs API", "description": "SEO tools and backlink data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://ahrefs.com/api", "pricing": "paid"},
|
|
243
|
+
{"name": "Moz API", "description": "SEO software and link data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://moz.com/products/api", "pricing": "paid"},
|
|
244
|
+
{"name": "Majestic API", "description": "Link intelligence data", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer-support.majestic.com/", "pricing": "paid"},
|
|
245
|
+
{"name": "SpyFu API", "description": "Competitor keyword research", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.spyfu.com/apis", "pricing": "paid"},
|
|
246
|
+
{"name": "Dataforseo API", "description": "SEO data extraction APIs", "category": "Data", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.dataforseo.com/", "pricing": "paid"},
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
BATCH_10_PRODUCTIVITY = [
|
|
250
|
+
{"name": "Notion API", "description": "All-in-one workspace for notes, docs, and projects", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.notion.com/", "pricing": "freemium"},
|
|
251
|
+
{"name": "Airtable API", "description": "Spreadsheet-database hybrid", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://airtable.com/developers/web/api/introduction", "pricing": "freemium"},
|
|
252
|
+
{"name": "Asana API", "description": "Work management platform", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.asana.com/docs/", "pricing": "freemium"},
|
|
253
|
+
{"name": "Trello API", "description": "Visual project management", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.atlassian.com/cloud/trello/", "pricing": "freemium"},
|
|
254
|
+
{"name": "Monday.com API", "description": "Work OS for teams", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.monday.com/", "pricing": "paid"},
|
|
255
|
+
{"name": "ClickUp API", "description": "All-in-one productivity platform", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://clickup.com/api", "pricing": "freemium"},
|
|
256
|
+
{"name": "Todoist API", "description": "Task management app", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.todoist.com/rest/v2", "pricing": "freemium"},
|
|
257
|
+
{"name": "Linear API", "description": "Issue tracking for software teams", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.linear.app/docs/graphql/", "pricing": "freemium"},
|
|
258
|
+
{"name": "Jira API", "description": "Issue and project tracking", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.atlassian.com/cloud/jira/platform/rest/v3/", "pricing": "freemium"},
|
|
259
|
+
{"name": "Confluence API", "description": "Team collaboration and documentation", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.atlassian.com/cloud/confluence/rest/v2/", "pricing": "freemium"},
|
|
260
|
+
{"name": "Coda API", "description": "All-in-one doc for teams", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://coda.io/developers/apis/v1", "pricing": "freemium"},
|
|
261
|
+
{"name": "Basecamp API", "description": "Project management and team communication", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://github.com/basecamp/bc3-api", "pricing": "paid"},
|
|
262
|
+
{"name": "Wrike API", "description": "Work management platform", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.wrike.com/", "pricing": "paid"},
|
|
263
|
+
{"name": "Teamwork API", "description": "Project management and collaboration", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.teamwork.com/", "pricing": "paid"},
|
|
264
|
+
{"name": "Smartsheet API", "description": "Work management and automation", "category": "Productivity", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://smartsheet.redoc.ly/", "pricing": "paid"},
|
|
265
|
+
{"name": "Miro API", "description": "Online collaborative whiteboard", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.miro.com/", "pricing": "freemium"},
|
|
266
|
+
{"name": "Figma API", "description": "Collaborative design platform", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.figma.com/developers/api", "pricing": "freemium"},
|
|
267
|
+
{"name": "Canva API", "description": "Design platform for visual content", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.canva.dev/docs/", "pricing": "freemium"},
|
|
268
|
+
{"name": "Loom API", "description": "Video messaging for work", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.loom.com/community/api", "pricing": "freemium"},
|
|
269
|
+
{"name": "Calendly API", "description": "Scheduling automation platform", "category": "Productivity", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.calendly.com/api-docs", "pricing": "freemium"},
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
def main():
|
|
273
|
+
print("🦞 APIClaw Night Expansion - February 23, 2026 06:00")
|
|
274
|
+
print("=" * 50)
|
|
275
|
+
|
|
276
|
+
registry = load_registry()
|
|
277
|
+
initial_count = len(registry['apis'])
|
|
278
|
+
print(f"Starting with {initial_count} APIs")
|
|
279
|
+
|
|
280
|
+
all_batches = [
|
|
281
|
+
("DevOps & Monitoring", BATCH_1_DEVOPS),
|
|
282
|
+
("Cloud Providers", BATCH_2_CLOUD),
|
|
283
|
+
("Fintech & Banking", BATCH_3_FINTECH),
|
|
284
|
+
("AI/ML Services", BATCH_4_AI_ML),
|
|
285
|
+
("E-commerce", BATCH_5_ECOMMERCE),
|
|
286
|
+
("Marketing & Email", BATCH_6_MARKETING),
|
|
287
|
+
("CRM Platforms", BATCH_7_CRM),
|
|
288
|
+
("Communication", BATCH_8_COMMUNICATION),
|
|
289
|
+
("Data Services", BATCH_9_DATA_SERVICES),
|
|
290
|
+
("Productivity", BATCH_10_PRODUCTIVITY),
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
total_added = 0
|
|
294
|
+
for name, batch in all_batches:
|
|
295
|
+
added = add_apis(registry, batch)
|
|
296
|
+
total_added += added
|
|
297
|
+
print(f" {name}: +{added} APIs")
|
|
298
|
+
|
|
299
|
+
save_registry(registry)
|
|
300
|
+
final_count = len(registry['apis'])
|
|
301
|
+
|
|
302
|
+
print("=" * 50)
|
|
303
|
+
print(f"✅ Added {total_added} new APIs")
|
|
304
|
+
print(f"📊 Total: {initial_count} → {final_count}")
|
|
305
|
+
|
|
306
|
+
return total_added
|
|
307
|
+
|
|
308
|
+
if __name__ == "__main__":
|
|
309
|
+
main()
|