@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,261 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Night Expansion - Batch 2 - Niche APIs
|
|
4
|
+
February 23, 2026 06:00
|
|
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('/', '-').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
|
+
# NICHE CATEGORIES - MORE SPECIFIC APIs
|
|
40
|
+
# =========================================
|
|
41
|
+
|
|
42
|
+
WEB3_BLOCKCHAIN = [
|
|
43
|
+
{"name": "Alchemy API", "description": "Blockchain developer platform for Web3", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.alchemy.com/", "pricing": "freemium"},
|
|
44
|
+
{"name": "Infura API", "description": "Ethereum and IPFS API infrastructure", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.infura.io/", "pricing": "freemium"},
|
|
45
|
+
{"name": "QuickNode API", "description": "Blockchain infrastructure for Web3", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.quicknode.com/docs", "pricing": "freemium"},
|
|
46
|
+
{"name": "Moralis API", "description": "Web3 development platform", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.moralis.io/", "pricing": "freemium"},
|
|
47
|
+
{"name": "The Graph API", "description": "Decentralized indexing protocol", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://thegraph.com/docs/", "pricing": "freemium"},
|
|
48
|
+
{"name": "Chainlink API", "description": "Decentralized oracle network", "category": "Web3", "auth": "None", "https": True, "cors": "yes", "link": "https://docs.chain.link/", "pricing": "paid"},
|
|
49
|
+
{"name": "Etherscan API", "description": "Ethereum blockchain explorer API", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.etherscan.io/", "pricing": "freemium"},
|
|
50
|
+
{"name": "Polygonscan API", "description": "Polygon blockchain explorer", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.polygonscan.com/", "pricing": "freemium"},
|
|
51
|
+
{"name": "BscScan API", "description": "BNB Chain blockchain explorer", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.bscscan.com/", "pricing": "freemium"},
|
|
52
|
+
{"name": "Arbiscan API", "description": "Arbitrum blockchain explorer", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.arbiscan.io/", "pricing": "freemium"},
|
|
53
|
+
{"name": "Optimism Etherscan API", "description": "Optimism blockchain explorer", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.optimism.etherscan.io/", "pricing": "freemium"},
|
|
54
|
+
{"name": "Solscan API", "description": "Solana blockchain explorer", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.solscan.io/", "pricing": "freemium"},
|
|
55
|
+
{"name": "Blockfrost API", "description": "Cardano blockchain API", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://blockfrost.dev/docs/", "pricing": "freemium"},
|
|
56
|
+
{"name": "Tatum API", "description": "Unified blockchain development platform", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.tatum.io/", "pricing": "freemium"},
|
|
57
|
+
{"name": "Covalent API", "description": "Multi-chain data aggregator", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.covalenthq.com/docs/api/", "pricing": "freemium"},
|
|
58
|
+
{"name": "Bitquery API", "description": "Blockchain data and analytics", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://bitquery.io/products/streaming", "pricing": "freemium"},
|
|
59
|
+
{"name": "Nansen API", "description": "Blockchain analytics platform", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.nansen.ai/", "pricing": "paid"},
|
|
60
|
+
{"name": "Dune Analytics API", "description": "Crypto analytics platform", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.dune.com/api-reference/", "pricing": "freemium"},
|
|
61
|
+
{"name": "Helius API", "description": "Solana developer platform", "category": "Web3", "auth": "apiKey", "https": "True", "cors": "yes", "link": "https://docs.helius.dev/", "pricing": "freemium"},
|
|
62
|
+
{"name": "SimpleHash API", "description": "NFT data API across chains", "category": "Web3", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.simplehash.com/", "pricing": "freemium"},
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
SECURITY_APIS = [
|
|
66
|
+
{"name": "HaveIBeenPwned API", "description": "Check if credentials have been compromised", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://haveibeenpwned.com/API/v3", "pricing": "freemium"},
|
|
67
|
+
{"name": "VirusTotal API", "description": "Malware and URL scanning", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.virustotal.com/", "pricing": "freemium"},
|
|
68
|
+
{"name": "Shodan API", "description": "Internet-connected device search engine", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.shodan.io/", "pricing": "freemium"},
|
|
69
|
+
{"name": "Censys API", "description": "Internet asset discovery and monitoring", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://search.censys.io/api", "pricing": "freemium"},
|
|
70
|
+
{"name": "SecurityTrails API", "description": "Historical DNS and WHOIS data", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.securitytrails.com/reference", "pricing": "freemium"},
|
|
71
|
+
{"name": "URLScan API", "description": "Website security scanning", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://urlscan.io/docs/api/", "pricing": "freemium"},
|
|
72
|
+
{"name": "Hybrid Analysis API", "description": "Free malware analysis service", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.hybrid-analysis.com/docs/api/v2", "pricing": "freemium"},
|
|
73
|
+
{"name": "AlienVault OTX API", "description": "Open threat exchange platform", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://otx.alienvault.com/api", "pricing": "free"},
|
|
74
|
+
{"name": "AbuseIPDB API", "description": "IP address abuse reporting database", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.abuseipdb.com/", "pricing": "freemium"},
|
|
75
|
+
{"name": "IPQualityScore API", "description": "Fraud prevention and IP reputation", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.ipqualityscore.com/documentation/overview", "pricing": "freemium"},
|
|
76
|
+
{"name": "Snyk API", "description": "Developer security platform", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.snyk.io/snyk-api/", "pricing": "freemium"},
|
|
77
|
+
{"name": "GitHub Security Advisory API", "description": "Security vulnerability database", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.github.com/en/graphql/reference/objects#securityadvisory", "pricing": "free"},
|
|
78
|
+
{"name": "NVD API", "description": "National Vulnerability Database", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://nvd.nist.gov/developers/vulnerabilities", "pricing": "free"},
|
|
79
|
+
{"name": "WhoisXML API", "description": "WHOIS, DNS, and IP data", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://whoisxmlapi.com/", "pricing": "freemium"},
|
|
80
|
+
{"name": "Greynoise API", "description": "Internet background noise intelligence", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.greynoise.io/", "pricing": "freemium"},
|
|
81
|
+
{"name": "ThreatFox API", "description": "Indicators of compromise sharing", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://threatfox.abuse.ch/api/", "pricing": "free"},
|
|
82
|
+
{"name": "MalwareBazaar API", "description": "Malware sample repository", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://bazaar.abuse.ch/api/", "pricing": "free"},
|
|
83
|
+
{"name": "Feodo Tracker API", "description": "Botnet C2 tracking", "category": "Security", "auth": "None", "https": True, "cors": "yes", "link": "https://feodotracker.abuse.ch/", "pricing": "free"},
|
|
84
|
+
{"name": "SSL Labs API", "description": "SSL/TLS server testing", "category": "Security", "auth": "None", "https": True, "cors": "yes", "link": "https://github.com/ssllabs/ssllabs-scan/blob/master/ssllabs-api-docs-v3.md", "pricing": "free"},
|
|
85
|
+
{"name": "CrowdSec API", "description": "Collaborative security platform", "category": "Security", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.crowdsec.net/docs/intro", "pricing": "freemium"},
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
LOGISTICS_SHIPPING = [
|
|
89
|
+
{"name": "FedEx API", "description": "Shipping and tracking services", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.fedex.com/api/en-us/home.html", "pricing": "free"},
|
|
90
|
+
{"name": "UPS API", "description": "Shipping, tracking, and logistics", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.ups.com/", "pricing": "free"},
|
|
91
|
+
{"name": "DHL API", "description": "Global logistics and shipping", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.dhl.com/", "pricing": "free"},
|
|
92
|
+
{"name": "USPS API", "description": "US postal service shipping and tracking", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.usps.com/business/web-tools-apis/", "pricing": "free"},
|
|
93
|
+
{"name": "Canada Post API", "description": "Canadian shipping and postal services", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.canadapost-postescanada.ca/info/mc/business/productsservices/developers/", "pricing": "free"},
|
|
94
|
+
{"name": "Royal Mail API", "description": "UK postal and delivery services", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.royalmail.net/", "pricing": "free"},
|
|
95
|
+
{"name": "PostNord API", "description": "Nordic shipping and logistics", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.postnord.com/", "pricing": "free"},
|
|
96
|
+
{"name": "Bring API", "description": "Norwegian shipping and logistics", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.bring.com/", "pricing": "free"},
|
|
97
|
+
{"name": "DB Schenker API", "description": "Global logistics services", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.dbschenker.com/", "pricing": "free"},
|
|
98
|
+
{"name": "Maersk API", "description": "Container shipping and logistics", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.maersk.com/", "pricing": "free"},
|
|
99
|
+
{"name": "EasyPost API", "description": "Shipping API for multiple carriers", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.easypost.com/docs/api", "pricing": "freemium"},
|
|
100
|
+
{"name": "AfterShip API", "description": "Shipment tracking for multiple carriers", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.aftership.com/docs/tracking/", "pricing": "freemium"},
|
|
101
|
+
{"name": "17Track API", "description": "All-in-one package tracking", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://api.17track.net/en/doc", "pricing": "freemium"},
|
|
102
|
+
{"name": "Flexport API", "description": "Freight forwarding and logistics", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://apidocs.flexport.com/", "pricing": "paid"},
|
|
103
|
+
{"name": "Project44 API", "description": "Supply chain visibility platform", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.project44.com/", "pricing": "paid"},
|
|
104
|
+
{"name": "Freightos API", "description": "Freight rate comparison", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.freightos.com/api/", "pricing": "paid"},
|
|
105
|
+
{"name": "ShipEngine API", "description": "Multi-carrier shipping platform", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.shipengine.com/docs/", "pricing": "freemium"},
|
|
106
|
+
{"name": "Sendle API", "description": "Sustainable parcel delivery", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.sendle.com/", "pricing": "freemium"},
|
|
107
|
+
{"name": "Lalamove API", "description": "On-demand delivery logistics", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.lalamove.com/", "pricing": "paid"},
|
|
108
|
+
{"name": "Routific API", "description": "Route optimization for deliveries", "category": "Logistics", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.routific.com/", "pricing": "paid"},
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
HEALTHCARE_APIS = [
|
|
112
|
+
{"name": "FHIR API", "description": "Healthcare interoperability standard", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.hl7.org/fhir/", "pricing": "free"},
|
|
113
|
+
{"name": "Epic on FHIR API", "description": "Epic EHR integration", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://fhir.epic.com/", "pricing": "free"},
|
|
114
|
+
{"name": "Cerner FHIR API", "description": "Cerner EHR integration", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://fhir.cerner.com/", "pricing": "free"},
|
|
115
|
+
{"name": "Allscripts FHIR API", "description": "Allscripts EHR integration", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.allscripts.com/", "pricing": "free"},
|
|
116
|
+
{"name": "athenahealth API", "description": "Healthcare network and EHR", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://docs.athenahealth.com/", "pricing": "free"},
|
|
117
|
+
{"name": "DrChrono API", "description": "EHR and practice management", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://drchrono.com/api/", "pricing": "free"},
|
|
118
|
+
{"name": "Redox API", "description": "Healthcare data integration platform", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.redoxengine.com/", "pricing": "paid"},
|
|
119
|
+
{"name": "Health Gorilla API", "description": "Clinical data network", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.healthgorilla.com/", "pricing": "paid"},
|
|
120
|
+
{"name": "1upHealth API", "description": "Healthcare data aggregation", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://1up.health/docs/", "pricing": "paid"},
|
|
121
|
+
{"name": "Particle Health API", "description": "Medical record aggregation", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.particlehealth.com/", "pricing": "paid"},
|
|
122
|
+
{"name": "Flexpa API", "description": "Healthcare claims data access", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.flexpa.com/docs/", "pricing": "paid"},
|
|
123
|
+
{"name": "Human API", "description": "Health data aggregation platform", "category": "Healthcare", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://docs.humanapi.co/", "pricing": "paid"},
|
|
124
|
+
{"name": "Validic API", "description": "Digital health data platform", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.validic.com/", "pricing": "paid"},
|
|
125
|
+
{"name": "OpenFDA API", "description": "FDA public data access", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://open.fda.gov/apis/", "pricing": "free"},
|
|
126
|
+
{"name": "RxNorm API", "description": "Normalized drug names", "category": "Healthcare", "auth": "None", "https": True, "cors": "yes", "link": "https://lhncbc.nlm.nih.gov/RxNav/APIs/RxNormAPIs.html", "pricing": "free"},
|
|
127
|
+
{"name": "DrugBank API", "description": "Comprehensive drug database", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.drugbank.com/", "pricing": "freemium"},
|
|
128
|
+
{"name": "PubChem API", "description": "Chemical information database", "category": "Healthcare", "auth": "None", "https": True, "cors": "yes", "link": "https://pubchem.ncbi.nlm.nih.gov/docs/pug-rest", "pricing": "free"},
|
|
129
|
+
{"name": "ClinVar API", "description": "Genetic variant information", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.ncbi.nlm.nih.gov/clinvar/docs/api/", "pricing": "free"},
|
|
130
|
+
{"name": "UMLS API", "description": "Unified Medical Language System", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://documentation.uts.nlm.nih.gov/rest/", "pricing": "free"},
|
|
131
|
+
{"name": "Coverdale API", "description": "Healthcare verification platform", "category": "Healthcare", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.coverdale.health/", "pricing": "paid"},
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
GEOLOCATION_MAPS = [
|
|
135
|
+
{"name": "Mapbox API", "description": "Custom maps and location services", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.mapbox.com/api/", "pricing": "freemium"},
|
|
136
|
+
{"name": "HERE API", "description": "Location platform for developers", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.here.com/", "pricing": "freemium"},
|
|
137
|
+
{"name": "TomTom API", "description": "Maps, routing, and traffic", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.tomtom.com/", "pricing": "freemium"},
|
|
138
|
+
{"name": "OpenStreetMap Nominatim API", "description": "OpenStreetMap geocoding", "category": "Geolocation", "auth": "None", "https": True, "cors": "yes", "link": "https://nominatim.org/release-docs/latest/api/Overview/", "pricing": "free"},
|
|
139
|
+
{"name": "OpenRouteService API", "description": "Open-source routing and geocoding", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://openrouteservice.org/dev/#/api-docs", "pricing": "freemium"},
|
|
140
|
+
{"name": "Geoapify API", "description": "Location and maps platform", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.geoapify.com/api/", "pricing": "freemium"},
|
|
141
|
+
{"name": "LocationIQ API", "description": "Affordable geocoding and routing", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://locationiq.com/docs", "pricing": "freemium"},
|
|
142
|
+
{"name": "Radar API", "description": "Location infrastructure for apps", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://radar.com/documentation/api", "pricing": "freemium"},
|
|
143
|
+
{"name": "What3Words API", "description": "Three-word location addressing", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.what3words.com/public-api", "pricing": "freemium"},
|
|
144
|
+
{"name": "Pelias API", "description": "Open-source geocoder", "category": "Geolocation", "auth": "None", "https": True, "cors": "yes", "link": "https://github.com/pelias/documentation", "pricing": "free"},
|
|
145
|
+
{"name": "Graphhopper API", "description": "Routing and geocoding", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.graphhopper.com/", "pricing": "freemium"},
|
|
146
|
+
{"name": "OSRM API", "description": "Open Source Routing Machine", "category": "Geolocation", "auth": "None", "https": True, "cors": "yes", "link": "http://project-osrm.org/docs/", "pricing": "free"},
|
|
147
|
+
{"name": "Valhalla API", "description": "Open-source routing engine", "category": "Geolocation", "auth": "None", "https": True, "cors": "yes", "link": "https://valhalla.github.io/valhalla/", "pricing": "free"},
|
|
148
|
+
{"name": "SmartyStreets API", "description": "Address validation and verification", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.smartystreets.com/docs/", "pricing": "freemium"},
|
|
149
|
+
{"name": "Lob Address API", "description": "Address verification and autocomplete", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.lob.com/", "pricing": "freemium"},
|
|
150
|
+
{"name": "Melissa API", "description": "Global address verification", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.melissa.com/developer", "pricing": "paid"},
|
|
151
|
+
{"name": "Loqate API", "description": "Address verification by GBG", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.loqate.com/resources/support/apis/", "pricing": "paid"},
|
|
152
|
+
{"name": "Precisely API", "description": "Location intelligence platform", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.precisely.com/", "pricing": "paid"},
|
|
153
|
+
{"name": "Esri ArcGIS API", "description": "Enterprise GIS platform", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.arcgis.com/", "pricing": "freemium"},
|
|
154
|
+
{"name": "Stadia Maps API", "description": "Map tiles and geocoding", "category": "Geolocation", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.stadiamaps.com/", "pricing": "freemium"},
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
IOT_EMBEDDED = [
|
|
158
|
+
{"name": "Arduino IoT Cloud API", "description": "IoT platform for Arduino devices", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.arduino.cc/arduino-cloud/api/", "pricing": "freemium"},
|
|
159
|
+
{"name": "Particle API", "description": "IoT platform for connected products", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.particle.io/reference/cloud-apis/", "pricing": "freemium"},
|
|
160
|
+
{"name": "ThingSpeak API", "description": "IoT analytics platform", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://thingspeak.com/docs", "pricing": "freemium"},
|
|
161
|
+
{"name": "Blynk API", "description": "IoT platform for mobile apps", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.blynk.io/", "pricing": "freemium"},
|
|
162
|
+
{"name": "Cayenne API", "description": "IoT project builder", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.mydevices.com/", "pricing": "freemium"},
|
|
163
|
+
{"name": "Losant API", "description": "Enterprise IoT platform", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.losant.com/rest-api/overview/", "pricing": "freemium"},
|
|
164
|
+
{"name": "Ubidots API", "description": "IoT data analytics platform", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://ubidots.com/docs/api/", "pricing": "freemium"},
|
|
165
|
+
{"name": "Hologram API", "description": "Cellular IoT connectivity", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.hologram.io/references/api/", "pricing": "paid"},
|
|
166
|
+
{"name": "Twilio IoT API", "description": "Programmable connectivity for IoT", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.twilio.com/docs/iot", "pricing": "paid"},
|
|
167
|
+
{"name": "Helium API", "description": "Decentralized IoT network", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.helium.com/api/", "pricing": "paid"},
|
|
168
|
+
{"name": "The Things Network API", "description": "LoRaWAN IoT network", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.thethingsnetwork.org/docs/", "pricing": "freemium"},
|
|
169
|
+
{"name": "AWS IoT Core API", "description": "Managed IoT cloud service", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.aws.amazon.com/iot/", "pricing": "paid"},
|
|
170
|
+
{"name": "Azure IoT Hub API", "description": "Enterprise IoT platform", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://learn.microsoft.com/en-us/rest/api/iothub/", "pricing": "paid"},
|
|
171
|
+
{"name": "Google Cloud IoT API", "description": "Fully managed IoT service", "category": "IoT", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://cloud.google.com/iot/docs/reference/cloudiot/rest", "pricing": "paid"},
|
|
172
|
+
{"name": "Tuya API", "description": "IoT development platform", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.tuya.com/en/docs/", "pricing": "freemium"},
|
|
173
|
+
{"name": "SmartThings API", "description": "Samsung IoT platform", "category": "IoT", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.smartthings.com/docs/api/", "pricing": "free"},
|
|
174
|
+
{"name": "Home Assistant API", "description": "Open-source home automation", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.home-assistant.io/docs/api/", "pricing": "free"},
|
|
175
|
+
{"name": "Philips Hue API", "description": "Smart lighting control", "category": "IoT", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.meethue.com/", "pricing": "free"},
|
|
176
|
+
{"name": "Ecobee API", "description": "Smart thermostat platform", "category": "IoT", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.ecobee.com/home/developer/api/introduction/", "pricing": "free"},
|
|
177
|
+
{"name": "Netatmo API", "description": "Connected home devices", "category": "IoT", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://dev.netatmo.com/", "pricing": "free"},
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
MEDIA_CONTENT = [
|
|
181
|
+
{"name": "Cloudinary API", "description": "Media management and transformation", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://cloudinary.com/documentation/", "pricing": "freemium"},
|
|
182
|
+
{"name": "Imgix API", "description": "Real-time image processing", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.imgix.com/", "pricing": "paid"},
|
|
183
|
+
{"name": "ImageKit API", "description": "Image CDN and optimization", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.imagekit.io/", "pricing": "freemium"},
|
|
184
|
+
{"name": "Uploadcare API", "description": "File uploading and processing", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://uploadcare.com/docs/", "pricing": "freemium"},
|
|
185
|
+
{"name": "Filestack API", "description": "File handling infrastructure", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.filestack.com/docs/", "pricing": "freemium"},
|
|
186
|
+
{"name": "Mux API", "description": "Video infrastructure for developers", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.mux.com/", "pricing": "freemium"},
|
|
187
|
+
{"name": "Cloudflare Stream API", "description": "Video streaming platform", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.cloudflare.com/stream/", "pricing": "paid"},
|
|
188
|
+
{"name": "Wistia API", "description": "Video hosting for business", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://wistia.com/support/developers", "pricing": "freemium"},
|
|
189
|
+
{"name": "Vimeo API", "description": "Professional video platform", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.vimeo.com/", "pricing": "freemium"},
|
|
190
|
+
{"name": "YouTube Data API", "description": "YouTube video platform", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.google.com/youtube/v3", "pricing": "free"},
|
|
191
|
+
{"name": "Giphy API", "description": "GIF search and creation", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.giphy.com/docs/api/", "pricing": "free"},
|
|
192
|
+
{"name": "Tenor API", "description": "GIF search engine", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://tenor.com/developer/dashboard", "pricing": "free"},
|
|
193
|
+
{"name": "Unsplash API", "description": "Free high-resolution photos", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://unsplash.com/developers", "pricing": "free"},
|
|
194
|
+
{"name": "Pexels API", "description": "Free stock photos and videos", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.pexels.com/api/documentation/", "pricing": "free"},
|
|
195
|
+
{"name": "Pixabay API", "description": "Free images and videos", "category": "Media", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://pixabay.com/api/docs/", "pricing": "free"},
|
|
196
|
+
{"name": "Getty Images API", "description": "Premium stock imagery", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://api.gettyimages.com/", "pricing": "paid"},
|
|
197
|
+
{"name": "Shutterstock API", "description": "Stock photos, vectors, videos", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://www.shutterstock.com/developers", "pricing": "paid"},
|
|
198
|
+
{"name": "Adobe Stock API", "description": "Adobe stock content platform", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.adobe.com/stock/docs/", "pricing": "paid"},
|
|
199
|
+
{"name": "Spotify API", "description": "Music streaming platform", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developer.spotify.com/documentation/web-api/", "pricing": "free"},
|
|
200
|
+
{"name": "SoundCloud API", "description": "Audio streaming platform", "category": "Media", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.soundcloud.com/docs/api/", "pricing": "free"},
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
LEGAL_COMPLIANCE = [
|
|
204
|
+
{"name": "DocuSign API", "description": "Electronic signature platform", "category": "Legal", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.docusign.com/", "pricing": "paid"},
|
|
205
|
+
{"name": "HelloSign API", "description": "eSignature and document management", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.hellosign.com/", "pricing": "freemium"},
|
|
206
|
+
{"name": "PandaDoc API", "description": "Document workflow automation", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.pandadoc.com/", "pricing": "freemium"},
|
|
207
|
+
{"name": "SignNow API", "description": "eSignature solutions", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://signnow.com/api", "pricing": "paid"},
|
|
208
|
+
{"name": "Adobe Sign API", "description": "Enterprise eSignature", "category": "Legal", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://opensource.adobe.com/acrobat-sign/developer_guide/", "pricing": "paid"},
|
|
209
|
+
{"name": "Ironclad API", "description": "Contract lifecycle management", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.ironcladapp.com/", "pricing": "paid"},
|
|
210
|
+
{"name": "ContractPodAi API", "description": "AI-powered contract management", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.contractpodai.com/", "pricing": "paid"},
|
|
211
|
+
{"name": "Clio API", "description": "Legal practice management", "category": "Legal", "auth": "OAuth", "https": True, "cors": "yes", "link": "https://developers.clio.com/", "pricing": "paid"},
|
|
212
|
+
{"name": "LexisNexis API", "description": "Legal research database", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.lexisnexis.com/", "pricing": "paid"},
|
|
213
|
+
{"name": "Westlaw API", "description": "Legal research platform", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.westlaw.com/", "pricing": "paid"},
|
|
214
|
+
{"name": "Persona API", "description": "Identity verification platform", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.withpersona.com/", "pricing": "paid"},
|
|
215
|
+
{"name": "Jumio API", "description": "Identity verification and KYC", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.jumio.com/", "pricing": "paid"},
|
|
216
|
+
{"name": "Onfido API", "description": "Identity verification and compliance", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://documentation.onfido.com/", "pricing": "paid"},
|
|
217
|
+
{"name": "Veriff API", "description": "Identity verification platform", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.veriff.com/", "pricing": "paid"},
|
|
218
|
+
{"name": "Sumsub API", "description": "KYC/AML verification", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developers.sumsub.com/", "pricing": "paid"},
|
|
219
|
+
{"name": "Trulioo API", "description": "Global identity verification", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.trulioo.com/", "pricing": "paid"},
|
|
220
|
+
{"name": "ComplyAdvantage API", "description": "AML and fraud detection", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.complyadvantage.com/", "pricing": "paid"},
|
|
221
|
+
{"name": "Chainalysis API", "description": "Blockchain compliance and investigation", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://docs.chainalysis.com/", "pricing": "paid"},
|
|
222
|
+
{"name": "Elliptic API", "description": "Crypto compliance and risk management", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://www.elliptic.co/products/apis", "pricing": "paid"},
|
|
223
|
+
{"name": "Notarize API", "description": "Online notarization platform", "category": "Legal", "auth": "apiKey", "https": True, "cors": "yes", "link": "https://developer.notarize.com/", "pricing": "paid"},
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
def main():
|
|
227
|
+
print("🦞 APIClaw Night Expansion - Batch 2 (Niche APIs)")
|
|
228
|
+
print("=" * 50)
|
|
229
|
+
|
|
230
|
+
registry = load_registry()
|
|
231
|
+
initial_count = len(registry['apis'])
|
|
232
|
+
print(f"Starting with {initial_count} APIs")
|
|
233
|
+
|
|
234
|
+
all_batches = [
|
|
235
|
+
("Web3 & Blockchain", WEB3_BLOCKCHAIN),
|
|
236
|
+
("Security", SECURITY_APIS),
|
|
237
|
+
("Logistics & Shipping", LOGISTICS_SHIPPING),
|
|
238
|
+
("Healthcare", HEALTHCARE_APIS),
|
|
239
|
+
("Geolocation & Maps", GEOLOCATION_MAPS),
|
|
240
|
+
("IoT & Embedded", IOT_EMBEDDED),
|
|
241
|
+
("Media & Content", MEDIA_CONTENT),
|
|
242
|
+
("Legal & Compliance", LEGAL_COMPLIANCE),
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
total_added = 0
|
|
246
|
+
for name, batch in all_batches:
|
|
247
|
+
added = add_apis(registry, batch)
|
|
248
|
+
total_added += added
|
|
249
|
+
print(f" {name}: +{added} APIs")
|
|
250
|
+
|
|
251
|
+
save_registry(registry)
|
|
252
|
+
final_count = len(registry['apis'])
|
|
253
|
+
|
|
254
|
+
print("=" * 50)
|
|
255
|
+
print(f"✅ Added {total_added} new APIs")
|
|
256
|
+
print(f"📊 Total: {initial_count} → {final_count}")
|
|
257
|
+
|
|
258
|
+
return total_added
|
|
259
|
+
|
|
260
|
+
if __name__ == "__main__":
|
|
261
|
+
main()
|