@nordsym/apiclaw 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +50 -33
- package/README.md +22 -12
- package/SOUL.md +60 -19
- package/STATUS.md +91 -169
- package/convex/_generated/api.d.ts +6 -0
- package/convex/directCall.ts +598 -0
- package/convex/providers.ts +341 -26
- package/convex/schema.ts +87 -0
- package/convex/usage.ts +260 -0
- package/convex/waitlist.ts +55 -0
- package/data/combined-02-26.json +22102 -0
- package/data/night-expansion-02-26-06-batch2.json +1898 -0
- package/data/night-expansion-02-26-06-batch3.json +1410 -0
- package/data/night-expansion-02-26-06.json +3146 -0
- package/data/night-expansion-02-26-full.json +9726 -0
- package/data/night-expansion-02-26-v2.json +330 -0
- package/data/night-expansion-02-26.json +171 -0
- package/dist/crypto.d.ts +7 -0
- package/dist/crypto.d.ts.map +1 -0
- package/dist/crypto.js +67 -0
- package/dist/crypto.js.map +1 -0
- package/dist/execute-dynamic.d.ts +116 -0
- package/dist/execute-dynamic.d.ts.map +1 -0
- package/dist/execute-dynamic.js +456 -0
- package/dist/execute-dynamic.js.map +1 -0
- package/dist/execute.d.ts +2 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +35 -5
- package/dist/execute.js.map +1 -1
- package/dist/index.js +33 -4
- package/dist/index.js.map +1 -1
- package/dist/registry/apis.json +2081 -3
- package/docs/PRD-customer-key-passthrough.md +184 -0
- package/landing/public/badges/available-on-apiclaw.svg +14 -0
- package/landing/scripts/generate-stats.js +75 -4
- package/landing/src/app/admin/page.tsx +1 -1
- package/landing/src/app/api/auth/magic-link/route.ts +1 -1
- package/landing/src/app/api/auth/session/route.ts +1 -1
- package/landing/src/app/api/auth/verify/route.ts +1 -1
- package/landing/src/app/api/og/route.tsx +5 -3
- package/landing/src/app/docs/page.tsx +5 -4
- package/landing/src/app/earn/page.tsx +14 -11
- package/landing/src/app/globals.css +16 -15
- package/landing/src/app/layout.tsx +2 -2
- package/landing/src/app/page.tsx +425 -254
- package/landing/src/app/providers/dashboard/[apiId]/actions/[actionId]/edit/page.tsx +600 -0
- package/landing/src/app/providers/dashboard/[apiId]/actions/new/page.tsx +583 -0
- package/landing/src/app/providers/dashboard/[apiId]/actions/page.tsx +301 -0
- package/landing/src/app/providers/dashboard/[apiId]/direct-call/page.tsx +659 -0
- package/landing/src/app/providers/dashboard/[apiId]/page.tsx +381 -0
- package/landing/src/app/providers/dashboard/[apiId]/test/page.tsx +418 -0
- package/landing/src/app/providers/dashboard/layout.tsx +292 -0
- package/landing/src/app/providers/dashboard/page.tsx +353 -290
- package/landing/src/app/providers/register/page.tsx +87 -10
- package/landing/src/components/AiClientDropdown.tsx +85 -0
- package/landing/src/components/ConfigHelperModal.tsx +113 -0
- package/landing/src/components/HeroTabs.tsx +187 -0
- package/landing/src/components/ShareIntegrationModal.tsx +198 -0
- package/landing/src/hooks/useDashboardData.ts +53 -1
- package/landing/src/lib/apis.json +46554 -174
- package/landing/src/lib/convex-client.ts +22 -3
- package/landing/src/lib/stats.json +4 -4
- package/landing/tsconfig.tsbuildinfo +1 -1
- package/night-expansion-02-26-06-batch2.py +368 -0
- package/night-expansion-02-26-06-batch3.py +299 -0
- package/night-expansion-02-26-06.py +756 -0
- package/package.json +1 -1
- package/scripts/bulk-add-public-apis-v2.py +418 -0
- package/scripts/night-expansion-02-26-v2.py +296 -0
- package/scripts/night-expansion-02-26.py +890 -0
- package/scripts/seed-complete-api.js +181 -0
- package/scripts/seed-demo-api.sh +44 -0
- package/src/crypto.ts +75 -0
- package/src/execute-dynamic.ts +589 -0
- package/src/execute.ts +41 -5
- package/src/index.ts +38 -4
- package/src/registry/apis.json +2081 -3
package/package.json
CHANGED
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Natt-Expansion v2 - Parse public-apis README and add missing APIs
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import json
|
|
7
|
+
import re
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
|
|
10
|
+
REGISTRY_PATH = Path(__file__).parent.parent / "src" / "registry" / "apis.json"
|
|
11
|
+
|
|
12
|
+
def generate_id(name: str) -> str:
|
|
13
|
+
"""Generate clean ID from name"""
|
|
14
|
+
clean = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
15
|
+
return clean[:50]
|
|
16
|
+
|
|
17
|
+
def load_registry() -> dict:
|
|
18
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
19
|
+
return json.load(f)
|
|
20
|
+
|
|
21
|
+
def save_registry(registry: dict):
|
|
22
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
23
|
+
json.dump(registry, f, indent=2)
|
|
24
|
+
|
|
25
|
+
def get_existing_ids(registry: dict) -> set:
|
|
26
|
+
return {api['id'] for api in registry['apis']}
|
|
27
|
+
|
|
28
|
+
# Additional APIs parsed from public-apis README and other sources
|
|
29
|
+
# Focus on APIs NOT already in our registry
|
|
30
|
+
ADDITIONAL_APIS = [
|
|
31
|
+
# === ANIMALS ===
|
|
32
|
+
{"name": "Axolotl API", "description": "Collection of axolotl pictures and facts", "category": "Animals", "link": "https://theaxolotlapi.netlify.app/", "auth": "None"},
|
|
33
|
+
{"name": "Cat Facts API", "description": "Daily cat facts", "category": "Animals", "link": "https://alexwohlbruck.github.io/cat-facts/", "auth": "None"},
|
|
34
|
+
{"name": "Dog Facts API", "description": "Random dog facts", "category": "Animals", "link": "https://dukengn.github.io/Dog-facts-API/", "auth": "None"},
|
|
35
|
+
{"name": "eBird API", "description": "Retrieve recent or notable birding observations within a region", "category": "Animals", "link": "https://documenter.getpostman.com/view/664302/S1ENwy59", "auth": "apiKey"},
|
|
36
|
+
{"name": "FishWatch API", "description": "Information and pictures about individual fish species", "category": "Animals", "link": "https://www.fishwatch.gov/developers", "auth": "None"},
|
|
37
|
+
{"name": "HTTP Cat", "description": "Cat for every HTTP Status", "category": "Entertainment", "link": "https://http.cat/", "auth": "None"},
|
|
38
|
+
{"name": "HTTP Dog", "description": "Dogs for every HTTP response status code", "category": "Entertainment", "link": "https://http.dog/", "auth": "None"},
|
|
39
|
+
{"name": "IUCN Red List", "description": "IUCN Red List of Threatened Species", "category": "Science", "link": "http://apiv3.iucnredlist.org/api/v3/docs", "auth": "apiKey"},
|
|
40
|
+
{"name": "MeowFacts", "description": "Get random cat facts", "category": "Animals", "link": "https://github.com/wh-iterabb-it/meowfacts", "auth": "None"},
|
|
41
|
+
{"name": "Movebank API", "description": "Movement and Migration data of animals", "category": "Science", "link": "https://github.com/movebank/movebank-api-doc", "auth": "None"},
|
|
42
|
+
{"name": "PlaceBear", "description": "Placeholder bear pictures", "category": "Design", "link": "https://placebear.com/", "auth": "None"},
|
|
43
|
+
{"name": "PlaceDog", "description": "Placeholder Dog pictures", "category": "Design", "link": "https://place.dog", "auth": "None"},
|
|
44
|
+
{"name": "PlaceKitten", "description": "Placeholder Kitten pictures", "category": "Design", "link": "https://placekitten.com/", "auth": "None"},
|
|
45
|
+
{"name": "RandomDog", "description": "Random pictures of dogs", "category": "Entertainment", "link": "https://random.dog/woof.json", "auth": "None"},
|
|
46
|
+
{"name": "RandomDuck", "description": "Random pictures of ducks", "category": "Entertainment", "link": "https://random-d.uk/api", "auth": "None"},
|
|
47
|
+
{"name": "RandomFox", "description": "Random pictures of foxes", "category": "Entertainment", "link": "https://randomfox.ca/floof/", "auth": "None"},
|
|
48
|
+
{"name": "RescueGroups", "description": "Pet adoption data", "category": "Animals", "link": "https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home", "auth": "None"},
|
|
49
|
+
{"name": "Shibe.Online", "description": "Random pictures of Shiba Inu, cats or birds", "category": "Entertainment", "link": "http://shibe.online/", "auth": "None"},
|
|
50
|
+
{"name": "xeno-canto", "description": "Bird recordings", "category": "Science", "link": "https://xeno-canto.org/explore/api", "auth": "None"},
|
|
51
|
+
{"name": "Zoo Animals API", "description": "Facts and pictures of zoo animals", "category": "Animals", "link": "https://zoo-animal-api.herokuapp.com/", "auth": "None"},
|
|
52
|
+
|
|
53
|
+
# === ANIME ===
|
|
54
|
+
{"name": "AniAPI", "description": "Anime discovery, streaming & syncing with trackers", "category": "Entertainment", "link": "https://aniapi.com/docs/", "auth": "OAuth"},
|
|
55
|
+
{"name": "AniDB", "description": "Anime Database", "category": "Entertainment", "link": "https://wiki.anidb.net/HTTP_API_Definition", "auth": "apiKey"},
|
|
56
|
+
{"name": "AnimeChan", "description": "Anime quotes (over 10k+)", "category": "Entertainment", "link": "https://github.com/RocktimSaikia/anime-chan", "auth": "None"},
|
|
57
|
+
{"name": "AnimeFacts", "description": "Anime Facts (over 100+)", "category": "Entertainment", "link": "https://chandan-02.github.io/anime-facts-rest-api/", "auth": "None"},
|
|
58
|
+
{"name": "AnimeNewsNetwork", "description": "Anime industry news", "category": "News", "link": "https://www.animenewsnetwork.com/encyclopedia/api.php", "auth": "None"},
|
|
59
|
+
{"name": "Catboy API", "description": "Neko images, funny GIFs & more", "category": "Entertainment", "link": "https://catboys.com/api", "auth": "None"},
|
|
60
|
+
{"name": "Danbooru Anime", "description": "Thousands of anime artist database to find good anime art", "category": "Entertainment", "link": "https://danbooru.donmai.us/wiki_pages/help:api", "auth": "apiKey"},
|
|
61
|
+
{"name": "MangaDex", "description": "Manga Database and Community", "category": "Entertainment", "link": "https://api.mangadex.org/docs.html", "auth": "apiKey"},
|
|
62
|
+
{"name": "NekosBest", "description": "Neko Images & Anime roleplaying GIFs", "category": "Entertainment", "link": "https://docs.nekos.best", "auth": "None"},
|
|
63
|
+
{"name": "Shikimori", "description": "Anime discovery, tracking, forum, rates", "category": "Entertainment", "link": "https://shikimori.one/api/doc", "auth": "OAuth"},
|
|
64
|
+
{"name": "Trace Moe", "description": "Get the exact scene of an anime from a screenshot", "category": "AI/ML", "link": "https://soruly.github.io/trace.moe-api/#/", "auth": "None"},
|
|
65
|
+
{"name": "Waifu.im", "description": "Get waifu pictures from an archive of over 4000 images", "category": "Entertainment", "link": "https://waifu.im/docs", "auth": "None"},
|
|
66
|
+
{"name": "Waifu.pics", "description": "Image sharing platform for anime images", "category": "Entertainment", "link": "https://waifu.pics/docs", "auth": "None"},
|
|
67
|
+
|
|
68
|
+
# === ANTI-MALWARE / SECURITY ===
|
|
69
|
+
{"name": "AbuseIPDB", "description": "IP/domain/URL reputation", "category": "Security", "link": "https://docs.abuseipdb.com/", "auth": "apiKey"},
|
|
70
|
+
{"name": "AlienVault OTX", "description": "IP/domain/URL reputation", "category": "Security", "link": "https://otx.alienvault.com/api", "auth": "apiKey"},
|
|
71
|
+
{"name": "CAPEsandbox", "description": "Malware execution and analysis", "category": "Security", "link": "https://capev2.readthedocs.io/en/latest/usage/api.html", "auth": "apiKey"},
|
|
72
|
+
{"name": "MalDatabase", "description": "Provide malware datasets and threat intelligence feeds", "category": "Security", "link": "https://maldatabase.com/api-doc.html", "auth": "apiKey"},
|
|
73
|
+
{"name": "MalShare", "description": "Malware Archive / file sourcing", "category": "Security", "link": "https://malshare.com/doc.php", "auth": "apiKey"},
|
|
74
|
+
{"name": "MalwareBazaar", "description": "Collect and share malware samples", "category": "Security", "link": "https://bazaar.abuse.ch/api/", "auth": "apiKey"},
|
|
75
|
+
{"name": "NoPhishy", "description": "Check links to see if they're known phishing attempts", "category": "Security", "link": "https://rapidapi.com/Amiichu/api/exerra-phishing-check/", "auth": "apiKey"},
|
|
76
|
+
{"name": "Phisherman", "description": "IP/domain/URL reputation for phishing detection", "category": "Security", "link": "https://phisherman.gg/", "auth": "apiKey"},
|
|
77
|
+
{"name": "Scanii", "description": "Scan documents/files for the presence of threats", "category": "Security", "link": "https://docs.scanii.com/", "auth": "apiKey"},
|
|
78
|
+
{"name": "URLhaus", "description": "Bulk queries and Download Malware Samples", "category": "Security", "link": "https://urlhaus-api.abuse.ch/", "auth": "None"},
|
|
79
|
+
{"name": "URLScan.io", "description": "Scan and Analyse URLs", "category": "Security", "link": "https://urlscan.io/about-api/", "auth": "apiKey"},
|
|
80
|
+
{"name": "Web of Trust API", "description": "IP/domain/URL reputation", "category": "Security", "link": "https://support.mywot.com/hc/en-us/sections/360004477734-API-", "auth": "apiKey"},
|
|
81
|
+
|
|
82
|
+
# === ART & DESIGN ===
|
|
83
|
+
{"name": "Améthyste API", "description": "Generate images for Discord users", "category": "Design", "link": "https://api.amethyste.moe/", "auth": "apiKey"},
|
|
84
|
+
{"name": "Colormind", "description": "Color scheme generator", "category": "Design", "link": "http://colormind.io/api-access/", "auth": "None"},
|
|
85
|
+
{"name": "ColourLovers", "description": "Get various patterns, palettes and images", "category": "Design", "link": "http://www.colourlovers.com/api", "auth": "None"},
|
|
86
|
+
{"name": "Cooper Hewitt", "description": "Smithsonian Design Museum", "category": "Content", "link": "https://collection.cooperhewitt.org/api", "auth": "apiKey"},
|
|
87
|
+
{"name": "EmojiHub", "description": "Get emojis by categories and groups", "category": "Content", "link": "https://github.com/cheatsnake/emojihub", "auth": "None"},
|
|
88
|
+
{"name": "Europeana", "description": "European Museum and Galleries content", "category": "Content", "link": "https://pro.europeana.eu/resources/apis/search", "auth": "apiKey"},
|
|
89
|
+
{"name": "Harvard Art Museums", "description": "Art from Harvard", "category": "Content", "link": "https://github.com/harvardartmuseums/api-docs", "auth": "apiKey"},
|
|
90
|
+
{"name": "Lordicon", "description": "Icons with predone Animations", "category": "Design", "link": "https://lordicon.com/", "auth": "None"},
|
|
91
|
+
{"name": "Metropolitan Museum of Art", "description": "Met Museum of Art data", "category": "Content", "link": "https://metmuseum.github.io/", "auth": "None"},
|
|
92
|
+
{"name": "Noun Project", "description": "Icons", "category": "Design", "link": "http://api.thenounproject.com/index.html", "auth": "OAuth"},
|
|
93
|
+
{"name": "Pixel Encounter", "description": "SVG Icon Generator", "category": "Design", "link": "https://pixelencounter.com/api", "auth": "None"},
|
|
94
|
+
{"name": "Rijksmuseum", "description": "RijksMuseum Data", "category": "Content", "link": "https://data.rijksmuseum.nl/object-metadata/api/", "auth": "apiKey"},
|
|
95
|
+
{"name": "Word Cloud API", "description": "Easily create word clouds", "category": "Design", "link": "https://wordcloudapi.com/", "auth": "apiKey"},
|
|
96
|
+
{"name": "xColors", "description": "Generate & convert colors", "category": "Design", "link": "https://x-colors.herokuapp.com/", "auth": "None"},
|
|
97
|
+
|
|
98
|
+
# === AUTHENTICATION ===
|
|
99
|
+
{"name": "GetOTP", "description": "Implement OTP flow quickly", "category": "Security", "link": "https://otp.dev/en/docs/", "auth": "apiKey"},
|
|
100
|
+
{"name": "Micro User Service", "description": "User management and authentication", "category": "Security", "link": "https://m3o.com/user", "auth": "apiKey"},
|
|
101
|
+
{"name": "MojoAuth", "description": "Secure and modern passwordless authentication platform", "category": "Security", "link": "https://mojoauth.com", "auth": "apiKey"},
|
|
102
|
+
{"name": "SAWO Labs", "description": "Simplify login and improve user experience by integrating passwordless authentication", "category": "Security", "link": "https://sawolabs.com", "auth": "apiKey"},
|
|
103
|
+
{"name": "Stytch", "description": "User infrastructure for modern applications", "category": "Security", "link": "https://stytch.com/", "auth": "apiKey"},
|
|
104
|
+
{"name": "Warrant", "description": "APIs for authorization and access control", "category": "Security", "link": "https://warrant.dev/", "auth": "apiKey"},
|
|
105
|
+
|
|
106
|
+
# === BLOCKCHAIN ===
|
|
107
|
+
{"name": "Bitquery", "description": "Onchain GraphQL APIs & DEX APIs", "category": "Finance", "link": "https://graphql.bitquery.io/ide", "auth": "apiKey"},
|
|
108
|
+
{"name": "Chainlink", "description": "Build hybrid smart contracts with Chainlink", "category": "Finance", "link": "https://chain.link/developer-resources", "auth": "None"},
|
|
109
|
+
{"name": "Chainpoint", "description": "Anchoring data to the Bitcoin blockchain", "category": "Finance", "link": "https://tierion.com/chainpoint/", "auth": "None"},
|
|
110
|
+
{"name": "Etherscan", "description": "Ethereum explorer API", "category": "Finance", "link": "https://etherscan.io/apis", "auth": "apiKey"},
|
|
111
|
+
{"name": "Helium Blockchain", "description": "Helium network data for IoT Hotspots", "category": "IoT", "link": "https://docs.helium.com/api/blockchain/introduction/", "auth": "None"},
|
|
112
|
+
{"name": "Nownodes", "description": "Blockchain-as-a-service solution", "category": "Finance", "link": "https://nownodes.io/", "auth": "apiKey"},
|
|
113
|
+
{"name": "The Graph", "description": "Indexing protocol for querying networks like Ethereum with GraphQL", "category": "Finance", "link": "https://thegraph.com", "auth": "apiKey"},
|
|
114
|
+
{"name": "Walltime", "description": "Retrieve Walltime's market info", "category": "Finance", "link": "https://walltime.info/api.html", "auth": "None"},
|
|
115
|
+
{"name": "Watchdata", "description": "Simple and reliable API access to Ethereum blockchain", "category": "Finance", "link": "https://docs.watchdata.io", "auth": "apiKey"},
|
|
116
|
+
|
|
117
|
+
# === BOOKS ===
|
|
118
|
+
{"name": "A Bíblia Digital", "description": "Multiple versions of the Bible", "category": "Content", "link": "https://www.abibliadigital.com.br/en", "auth": "apiKey"},
|
|
119
|
+
{"name": "Bhagavad Gita API", "description": "Open Source Shrimad Bhagavad Gita API", "category": "Content", "link": "https://docs.bhagavadgitaapi.in", "auth": "apiKey"},
|
|
120
|
+
{"name": "British National Bibliography", "description": "Books data from BNB", "category": "Content", "link": "http://bnb.data.bl.uk/", "auth": "None"},
|
|
121
|
+
{"name": "Crossref Metadata", "description": "Books & Articles Metadata", "category": "Content", "link": "https://github.com/CrossRef/rest-api-doc", "auth": "None"},
|
|
122
|
+
{"name": "Ganjoor", "description": "Classic Persian poetry works", "category": "Content", "link": "https://api.ganjoor.net", "auth": "OAuth"},
|
|
123
|
+
{"name": "GurbaniNow", "description": "Fast and Accurate Gurbani RESTful API", "category": "Content", "link": "https://github.com/GurbaniNow/api", "auth": "None"},
|
|
124
|
+
{"name": "Gutendex", "description": "Web-API for fetching data from Project Gutenberg Books Library", "category": "Content", "link": "https://gutendex.com/", "auth": "None"},
|
|
125
|
+
{"name": "Penguin Publishing", "description": "Books, book covers and related data", "category": "Content", "link": "http://www.penguinrandomhouse.biz/webservices/rest/", "auth": "None"},
|
|
126
|
+
{"name": "PoetryDB", "description": "Poetry collection API", "category": "Content", "link": "https://github.com/thundercomb/poetrydb#readme", "auth": "None"},
|
|
127
|
+
{"name": "Quran Cloud", "description": "A RESTful Quran API to retrieve an Ayah, Surah, Juz", "category": "Content", "link": "https://alquran.cloud/api", "auth": "None"},
|
|
128
|
+
{"name": "Rig Veda", "description": "Gods and poets, their categories, and the verse meters", "category": "Content", "link": "https://aninditabasu.github.io/indica/html/rv.html", "auth": "None"},
|
|
129
|
+
{"name": "The Bible API", "description": "Everything you need from the Bible in one discoverable place", "category": "Content", "link": "https://docs.api.bible", "auth": "apiKey"},
|
|
130
|
+
{"name": "Thirukkural", "description": "1330 Thirukkural poems and explanation in Tamil and English", "category": "Content", "link": "https://api-thirukkural.web.app/", "auth": "None"},
|
|
131
|
+
{"name": "Vedic Society", "description": "Descriptions of all nouns from vedic literature", "category": "Content", "link": "https://aninditabasu.github.io/indica/html/vs.html", "auth": "None"},
|
|
132
|
+
{"name": "Wizard World API", "description": "Get information from the Harry Potter universe", "category": "Entertainment", "link": "https://wizard-world-api.herokuapp.com/swagger/index.html", "auth": "None"},
|
|
133
|
+
{"name": "Wolne Lektury", "description": "E-books from WolneLektury.pl", "category": "Content", "link": "https://wolnelektury.pl/api/", "auth": "None"},
|
|
134
|
+
|
|
135
|
+
# === BUSINESS ===
|
|
136
|
+
{"name": "Apache Superset", "description": "API to manage your BI dashboards and data sources", "category": "Business", "link": "https://superset.apache.org/docs/api", "auth": "apiKey"},
|
|
137
|
+
{"name": "Charity Search", "description": "Non-profit charity data", "category": "Business", "link": "http://charityapi.orghunter.com/", "auth": "apiKey"},
|
|
138
|
+
{"name": "Clearbit Logo", "description": "Search for company logos and embed them in your projects", "category": "Business", "link": "https://clearbit.com/docs#logo-api", "auth": "apiKey"},
|
|
139
|
+
{"name": "Instatus", "description": "Post to and update maintenance and incidents on your status page", "category": "Business", "link": "https://instatus.com/help/api", "auth": "apiKey"},
|
|
140
|
+
{"name": "markerapi", "description": "Trademark Search", "category": "Business", "link": "https://markerapi.com", "auth": "None"},
|
|
141
|
+
{"name": "ORB Intelligence", "description": "Company lookup", "category": "Business", "link": "https://api.orb-intelligence.com/docs/", "auth": "apiKey"},
|
|
142
|
+
{"name": "Redash", "description": "Access your queries and dashboards on Redash", "category": "Business", "link": "https://redash.io/help/user-guide/integrations-and-api/api", "auth": "apiKey"},
|
|
143
|
+
{"name": "Smartsheet API", "description": "Programmatically access Smartsheet data", "category": "Business", "link": "https://smartsheet.redoc.ly/", "auth": "OAuth"},
|
|
144
|
+
{"name": "SwiftKanban", "description": "Kanban software, Visualize Work", "category": "Business", "link": "https://www.digite.com/knowledge-base/swiftkanban/article/api-for-swift-kanban-web-services/#restapi", "auth": "apiKey"},
|
|
145
|
+
{"name": "Tenders Hungary", "description": "Procurements in Hungary in JSON format", "category": "Business", "link": "https://tenders.guru/hu/api", "auth": "None"},
|
|
146
|
+
{"name": "Tenders Poland", "description": "Procurements in Poland in JSON format", "category": "Business", "link": "https://tenders.guru/pl/api", "auth": "None"},
|
|
147
|
+
{"name": "Tenders Romania", "description": "Procurements in Romania in JSON format", "category": "Business", "link": "https://tenders.guru/ro/api", "auth": "None"},
|
|
148
|
+
{"name": "Tenders Spain", "description": "Procurements in Spain in JSON format", "category": "Business", "link": "https://tenders.guru/es/api", "auth": "None"},
|
|
149
|
+
{"name": "Tenders Ukraine", "description": "Procurements in Ukraine in JSON format", "category": "Business", "link": "https://tenders.guru/ua/api", "auth": "None"},
|
|
150
|
+
{"name": "Tomba Email Finder", "description": "Email Finder for B2B sales and email marketing", "category": "Business", "link": "https://tomba.io/api", "auth": "apiKey"},
|
|
151
|
+
|
|
152
|
+
# === CALENDAR ===
|
|
153
|
+
{"name": "Abstract Public Holidays", "description": "Data on national, regional, and religious holidays via API", "category": "Utilities", "link": "https://www.abstractapi.com/holidays-api", "auth": "apiKey"},
|
|
154
|
+
{"name": "Calendarific", "description": "Worldwide Holidays", "category": "Utilities", "link": "https://calendarific.com/", "auth": "apiKey"},
|
|
155
|
+
{"name": "Church Calendar", "description": "Catholic liturgical calendar", "category": "Utilities", "link": "http://calapi.inadiutorium.cz/", "auth": "None"},
|
|
156
|
+
{"name": "Czech Namedays", "description": "Lookup for a name and returns nameday date", "category": "Utilities", "link": "https://svatky.adresa.info", "auth": "None"},
|
|
157
|
+
{"name": "Festivo Public Holidays", "description": "Fastest public holiday and observance service", "category": "Utilities", "link": "https://docs.getfestivo.com/docs/products/public-holidays-api/intro", "auth": "apiKey"},
|
|
158
|
+
{"name": "Hebrew Calendar", "description": "Convert between Gregorian and Hebrew, fetch Shabbat and Holiday times", "category": "Utilities", "link": "https://www.hebcal.com/home/developer-apis", "auth": "None"},
|
|
159
|
+
{"name": "LectServe", "description": "Protestant liturgical calendar", "category": "Utilities", "link": "http://www.lectserve.com", "auth": "None"},
|
|
160
|
+
{"name": "Nager.Date", "description": "Public holidays for more than 90 countries", "category": "Utilities", "link": "https://date.nager.at", "auth": "None"},
|
|
161
|
+
{"name": "Namedays Calendar", "description": "Provides namedays for multiple countries", "category": "Utilities", "link": "https://nameday.abalin.net", "auth": "None"},
|
|
162
|
+
{"name": "Non-Working Days ICS", "description": "Database of ICS files for non working days", "category": "Utilities", "link": "https://github.com/gadael/icsdb", "auth": "None"},
|
|
163
|
+
{"name": "Russian Calendar", "description": "Check if a date is a Russian holiday or not", "category": "Utilities", "link": "https://github.com/egno/work-calendar", "auth": "None"},
|
|
164
|
+
{"name": "UK Bank Holidays", "description": "Bank holidays in England and Wales, Scotland and Northern Ireland", "category": "Utilities", "link": "https://www.gov.uk/bank-holidays.json", "auth": "None"},
|
|
165
|
+
|
|
166
|
+
# === CLOUD STORAGE ===
|
|
167
|
+
{"name": "AnonFiles", "description": "Upload and share your files anonymously", "category": "Cloud Storage", "link": "https://anonfiles.com/docs/api", "auth": "None"},
|
|
168
|
+
{"name": "BayFiles", "description": "Upload and share your files", "category": "Cloud Storage", "link": "https://bayfiles.com/docs/api", "auth": "None"},
|
|
169
|
+
{"name": "ddownload", "description": "File Sharing and Storage", "category": "Cloud Storage", "link": "https://ddownload.com/api", "auth": "apiKey"},
|
|
170
|
+
{"name": "File.io", "description": "Super simple file sharing, convenient, anonymous and secure", "category": "Cloud Storage", "link": "https://www.file.io", "auth": "None"},
|
|
171
|
+
{"name": "GoFile", "description": "Unlimited size file uploads for free", "category": "Cloud Storage", "link": "https://gofile.io/api", "auth": "apiKey"},
|
|
172
|
+
{"name": "Imgbb", "description": "Simple and quick private image sharing", "category": "Cloud Storage", "link": "https://api.imgbb.com/", "auth": "apiKey"},
|
|
173
|
+
{"name": "Pantry", "description": "Free JSON storage for small projects", "category": "Cloud Storage", "link": "https://getpantry.cloud/", "auth": "None"},
|
|
174
|
+
{"name": "Pinata IPFS", "description": "IPFS Pinning Services API", "category": "Cloud Storage", "link": "https://docs.pinata.cloud/", "auth": "apiKey"},
|
|
175
|
+
{"name": "Quip", "description": "File Sharing and Storage for groups", "category": "Cloud Storage", "link": "https://quip.com/dev/automation/documentation", "auth": "apiKey"},
|
|
176
|
+
{"name": "Storj", "description": "Decentralized Open-Source Cloud Storage", "category": "Cloud Storage", "link": "https://docs.storj.io/dcs/", "auth": "apiKey"},
|
|
177
|
+
{"name": "The Null Pointer", "description": "No-bullshit file hosting and URL shortening service", "category": "Cloud Storage", "link": "https://0x0.st", "auth": "None"},
|
|
178
|
+
{"name": "Web3 Storage", "description": "File Sharing and Storage with 1TB Space", "category": "Cloud Storage", "link": "https://web3.storage/", "auth": "apiKey"},
|
|
179
|
+
|
|
180
|
+
# === CI/CD ===
|
|
181
|
+
{"name": "Azure DevOps Health", "description": "Resource health helps you diagnose Azure issues", "category": "Development", "link": "https://docs.microsoft.com/en-us/rest/api/resourcehealth", "auth": "apiKey"},
|
|
182
|
+
{"name": "Bitrise", "description": "Build tool and processes integrations", "category": "Development", "link": "https://api-docs.bitrise.io/", "auth": "apiKey"},
|
|
183
|
+
{"name": "Buddy CI", "description": "Fastest continuous integration and continuous delivery platform", "category": "Development", "link": "https://buddy.works/docs/api/getting-started/overview", "auth": "OAuth"},
|
|
184
|
+
{"name": "Codeship", "description": "Continuous Integration Platform in the cloud", "category": "Development", "link": "https://docs.cloudbees.com/docs/cloudbees-codeship/latest/api-overview/", "auth": "apiKey"},
|
|
185
|
+
|
|
186
|
+
# === CRYPTO ===
|
|
187
|
+
{"name": "0x API", "description": "API for querying token and pool stats across liquidity pools", "category": "Finance", "link": "https://0x.org/api", "auth": "None"},
|
|
188
|
+
{"name": "1inch", "description": "API for querying decentralize exchange", "category": "Finance", "link": "https://1inch.io/api/", "auth": "None"},
|
|
189
|
+
{"name": "Alchemy Ethereum", "description": "Ethereum Node-as-a-Service Provider", "category": "Finance", "link": "https://docs.alchemy.com/alchemy/", "auth": "apiKey"},
|
|
190
|
+
{"name": "Apilayer Coinlayer", "description": "Real-time Crypto Currency Exchange Rates", "category": "Finance", "link": "https://coinlayer.com", "auth": "apiKey"},
|
|
191
|
+
{"name": "Bitcambio", "description": "List of all traded assets in the exchange", "category": "Finance", "link": "https://nova.bitcambio.com.br/api/v3/docs#a-public", "auth": "None"},
|
|
192
|
+
{"name": "BitcoinAverage", "description": "Digital Asset Price Data for the blockchain industry", "category": "Finance", "link": "https://apiv2.bitcoinaverage.com/", "auth": "apiKey"},
|
|
193
|
+
{"name": "BitcoinCharts", "description": "Financial and Technical Data related to the Bitcoin Network", "category": "Finance", "link": "https://bitcoincharts.com/about/exchanges/", "auth": "None"},
|
|
194
|
+
{"name": "Bitmex", "description": "Real-Time Cryptocurrency derivatives trading platform", "category": "Finance", "link": "https://www.bitmex.com/app/apiOverview", "auth": "apiKey"},
|
|
195
|
+
{"name": "Bittrex", "description": "Next Generation Crypto Trading Platform", "category": "Finance", "link": "https://bittrex.github.io/api/v3", "auth": "apiKey"},
|
|
196
|
+
{"name": "Block.io", "description": "Bitcoin Payment, Wallet & Transaction Data", "category": "Finance", "link": "https://block.io/docs/basic", "auth": "apiKey"},
|
|
197
|
+
{"name": "Blockfrost Cardano", "description": "Interaction with the Cardano mainnet and testnets", "category": "Finance", "link": "https://blockfrost.io/", "auth": "apiKey"},
|
|
198
|
+
{"name": "Brave NewCoin", "description": "Real-time and historic crypto data from 200+ exchanges", "category": "Finance", "link": "https://bravenewcoin.com/developers", "auth": "apiKey"},
|
|
199
|
+
{"name": "BtcTurk", "description": "Real-time cryptocurrency data, graphs and API", "category": "Finance", "link": "https://docs.btcturk.com/", "auth": "apiKey"},
|
|
200
|
+
{"name": "Bybit", "description": "Cryptocurrency data feed and algorithmic trading", "category": "Finance", "link": "https://bybit-exchange.github.io/docs/linear/#t-introduction", "auth": "apiKey"},
|
|
201
|
+
{"name": "CoinCap", "description": "Real time Cryptocurrency prices through a RESTful API", "category": "Finance", "link": "https://docs.coincap.io/", "auth": "None"},
|
|
202
|
+
{"name": "CoinDCX", "description": "Cryptocurrency Trading Platform", "category": "Finance", "link": "https://docs.coindcx.com/", "auth": "apiKey"},
|
|
203
|
+
{"name": "Coinlib", "description": "Crypto Currency Prices", "category": "Finance", "link": "https://coinlib.io/apidocs", "auth": "apiKey"},
|
|
204
|
+
{"name": "CoinRanking", "description": "Live Cryptocurrency data", "category": "Finance", "link": "https://developers.coinranking.com/api/documentation", "auth": "apiKey"},
|
|
205
|
+
{"name": "Coinremitter", "description": "Cryptocurrencies Payment & Prices", "category": "Finance", "link": "https://coinremitter.com/docs", "auth": "apiKey"},
|
|
206
|
+
{"name": "CoinStats", "description": "Crypto Tracker", "category": "Finance", "link": "https://documenter.getpostman.com/view/5734027/RzZ6Hzr3?version=latest", "auth": "None"},
|
|
207
|
+
{"name": "CryptAPI", "description": "Cryptocurrency Payment Processor", "category": "Finance", "link": "https://docs.cryptapi.io/", "auth": "None"},
|
|
208
|
+
{"name": "CryptingUp", "description": "Cryptocurrency data", "category": "Finance", "link": "https://www.cryptingup.com/apidoc/#introduction", "auth": "None"},
|
|
209
|
+
{"name": "CryptoMarket", "description": "Cryptocurrencies Trading platform", "category": "Finance", "link": "https://api.exchange.cryptomkt.com/", "auth": "apiKey"},
|
|
210
|
+
{"name": "dYdX", "description": "Decentralized cryptocurrency exchange", "category": "Finance", "link": "https://docs.dydx.exchange/", "auth": "apiKey"},
|
|
211
|
+
{"name": "Ethplorer", "description": "Ethereum tokens, balances, addresses, history", "category": "Finance", "link": "https://github.com/EverexIO/Ethplorer/wiki/Ethplorer-API", "auth": "apiKey"},
|
|
212
|
+
{"name": "EXMO", "description": "Cryptocurrencies exchange based in UK", "category": "Finance", "link": "https://documenter.getpostman.com/view/10287440/SzYXWKPi", "auth": "apiKey"},
|
|
213
|
+
{"name": "Gateio", "description": "API provides spot, margin and futures trading operations", "category": "Finance", "link": "https://www.gate.io/api2", "auth": "apiKey"},
|
|
214
|
+
{"name": "Gemini Crypto", "description": "Cryptocurrencies Exchange", "category": "Finance", "link": "https://docs.gemini.com/rest-api/", "auth": "None"},
|
|
215
|
+
{"name": "Hirak Exchange Rates", "description": "Exchange rates between 162 currency & 300 crypto", "category": "Finance", "link": "https://rates.hirak.site/", "auth": "apiKey"},
|
|
216
|
+
{"name": "icy.tools", "description": "GraphQL based NFT API", "category": "Finance", "link": "https://developers.icy.tools/", "auth": "apiKey"},
|
|
217
|
+
{"name": "Indodax", "description": "Trade your Bitcoin and other assets with rupiah", "category": "Finance", "link": "https://github.com/btcid/indodax-official-api-docs", "auth": "apiKey"},
|
|
218
|
+
{"name": "INFURA Ethereum", "description": "Interaction with the Ethereum mainnet and testnets", "category": "Finance", "link": "https://infura.io/product/ethereum", "auth": "apiKey"},
|
|
219
|
+
{"name": "KuCoin", "description": "Cryptocurrency Trading Platform", "category": "Finance", "link": "https://docs.kucoin.com/", "auth": "apiKey"},
|
|
220
|
+
{"name": "Localbitcoins", "description": "P2P platform to buy and sell Bitcoins", "category": "Finance", "link": "https://localbitcoins.com/api-docs/", "auth": "None"},
|
|
221
|
+
{"name": "Mempool", "description": "Bitcoin API Service focusing on transaction fee", "category": "Finance", "link": "https://mempool.space/api", "auth": "None"},
|
|
222
|
+
{"name": "MercadoBitcoin", "description": "Brazilian Cryptocurrency Information", "category": "Finance", "link": "https://www.mercadobitcoin.com.br/api-doc/", "auth": "None"},
|
|
223
|
+
{"name": "Messari", "description": "API endpoints for thousands of crypto assets", "category": "Finance", "link": "https://messari.io/api", "auth": "None"},
|
|
224
|
+
{"name": "Nexchange", "description": "Automated cryptocurrency exchange service", "category": "Finance", "link": "https://nexchange2.docs.apiary.io/", "auth": "None"},
|
|
225
|
+
{"name": "Nomics", "description": "Historical and realtime cryptocurrency prices and market data", "category": "Finance", "link": "https://nomics.com/docs/", "auth": "apiKey"},
|
|
226
|
+
{"name": "NovaDax", "description": "NovaDAX API to access all market data", "category": "Finance", "link": "https://doc.novadax.com/en-US/#introduction", "auth": "apiKey"},
|
|
227
|
+
{"name": "OKEx", "description": "Cryptocurrency exchange based in Seychelles", "category": "Finance", "link": "https://www.okex.com/docs/", "auth": "apiKey"},
|
|
228
|
+
{"name": "Solana JSON RPC", "description": "Interact with the Solana Blockchain", "category": "Finance", "link": "https://docs.solana.com/developing/clients/jsonrpc-api", "auth": "None"},
|
|
229
|
+
{"name": "Technical Analysis API", "description": "Cryptocurrency prices and technical analysis", "category": "Finance", "link": "https://technical-analysis-api.com", "auth": "apiKey"},
|
|
230
|
+
{"name": "VALR", "description": "Cryptocurrency Exchange based in South Africa", "category": "Finance", "link": "https://docs.valr.com/", "auth": "apiKey"},
|
|
231
|
+
{"name": "WorldCoinIndex", "description": "Cryptocurrencies Prices", "category": "Finance", "link": "https://www.worldcoinindex.com/apiservice", "auth": "apiKey"},
|
|
232
|
+
{"name": "ZMOK", "description": "Ethereum JSON RPC API and Web3 provider", "category": "Finance", "link": "https://zmok.io", "auth": "None"},
|
|
233
|
+
|
|
234
|
+
# === DEVELOPMENT ===
|
|
235
|
+
{"name": "24 Pull Requests", "description": "Project to promote open source collaboration during December", "category": "Development", "link": "https://24pullrequests.com/api", "auth": "None"},
|
|
236
|
+
{"name": "Abstract Screenshot", "description": "Take programmatic screenshots of web pages", "category": "Development", "link": "https://www.abstractapi.com/website-screenshot-api", "auth": "apiKey"},
|
|
237
|
+
{"name": "Agify.io", "description": "Estimates the age from a first name", "category": "Utilities", "link": "https://agify.io", "auth": "None"},
|
|
238
|
+
{"name": "API Grátis", "description": "Multiple services and public APIs", "category": "Development", "link": "https://apigratis.com.br/", "auth": "None"},
|
|
239
|
+
{"name": "ApicAgent", "description": "Extract device details from user-agent string", "category": "Development", "link": "https://www.apicagent.com", "auth": "None"},
|
|
240
|
+
{"name": "Apilayer Userstack", "description": "Secure User-Agent String Lookup JSON API", "category": "Development", "link": "https://userstack.com/", "auth": "OAuth"},
|
|
241
|
+
{"name": "Azure DevOps API", "description": "The Azure DevOps basic components of a REST API", "category": "Development", "link": "https://docs.microsoft.com/en-us/rest/api/azure/devops", "auth": "apiKey"},
|
|
242
|
+
{"name": "Base API", "description": "Building quick backends", "category": "Development", "link": "https://www.base-api.io/", "auth": "apiKey"},
|
|
243
|
+
{"name": "Beeceptor", "description": "Build a mock Rest API endpoint in seconds", "category": "Development", "link": "https://beeceptor.com/", "auth": "None"},
|
|
244
|
+
{"name": "Blague.xyz", "description": "La plus grande API de Blagues FR", "category": "Entertainment", "link": "https://blague.xyz/", "auth": "apiKey"},
|
|
245
|
+
{"name": "Blitapp", "description": "Schedule screenshots of web pages", "category": "Development", "link": "https://blitapp.com/api/", "auth": "apiKey"},
|
|
246
|
+
{"name": "Blynk-Cloud", "description": "Control IoT Devices from Blynk IoT Cloud", "category": "IoT", "link": "https://blynkapi.docs.apiary.io/#", "auth": "apiKey"},
|
|
247
|
+
{"name": "Brainshop.ai", "description": "Make A Free A.I Brain", "category": "AI/ML", "link": "https://brainshop.ai/", "auth": "apiKey"},
|
|
248
|
+
{"name": "Browshot", "description": "Easily make screenshots of web pages in any screen size", "category": "Development", "link": "https://browshot.com/api/documentation", "auth": "apiKey"},
|
|
249
|
+
{"name": "CDNJS API", "description": "Library info on CDNJS", "category": "Development", "link": "https://api.cdnjs.com/libraries/jquery", "auth": "None"},
|
|
250
|
+
{"name": "Changelogs.md", "description": "Structured changelog metadata from open source projects", "category": "Development", "link": "https://changelogs.md", "auth": "None"},
|
|
251
|
+
{"name": "Ciprand", "description": "Secure random string generator", "category": "Development", "link": "https://github.com/polarspetroll/ciprand", "auth": "None"},
|
|
252
|
+
{"name": "Cloudflare Trace API", "description": "Get IP Address, Timestamp, User Agent, Country Code", "category": "Development", "link": "https://github.com/fawazahmed0/cloudflare-trace-api", "auth": "None"},
|
|
253
|
+
{"name": "CodeX Compiler", "description": "Online Compiler for Various Languages", "category": "Development", "link": "https://github.com/Jaagrav/CodeX", "auth": "None"},
|
|
254
|
+
{"name": "Contentful Images", "description": "Retrieve and apply transformations to images", "category": "Design", "link": "https://www.contentful.com/developers/docs/references/images-api/", "auth": "apiKey"},
|
|
255
|
+
{"name": "CORS Proxy", "description": "Get around the dreaded CORS error", "category": "Development", "link": "https://github.com/burhanuday/cors-proxy", "auth": "None"},
|
|
256
|
+
{"name": "CountAPI", "description": "Free and simple counting service", "category": "Development", "link": "https://countapi.xyz", "auth": "None"},
|
|
257
|
+
{"name": "Databricks API", "description": "Service to manage your databricks account", "category": "Development", "link": "https://docs.databricks.com/dev-tools/api/latest/index.html", "auth": "apiKey"},
|
|
258
|
+
{"name": "DigitalOcean Status", "description": "Status of all DigitalOcean services", "category": "Development", "link": "https://status.digitalocean.com/api", "auth": "None"},
|
|
259
|
+
{"name": "Docker Hub API", "description": "Interact with Docker Hub", "category": "Development", "link": "https://docs.docker.com/docker-hub/api/latest/", "auth": "apiKey"},
|
|
260
|
+
{"name": "ExtendsClass JSON Storage", "description": "A simple JSON store API", "category": "Development", "link": "https://extendsclass.com/json-storage.html", "auth": "None"},
|
|
261
|
+
{"name": "GeekFlare API", "description": "Testing and monitoring methods for websites", "category": "Development", "link": "https://apidocs.geekflare.com/docs/geekflare-api", "auth": "apiKey"},
|
|
262
|
+
{"name": "Genderize.io", "description": "Estimates a gender from a first name", "category": "Utilities", "link": "https://genderize.io", "auth": "None"},
|
|
263
|
+
{"name": "GETPing", "description": "Trigger an email notification with a simple GET request", "category": "Development", "link": "https://www.getping.info", "auth": "apiKey"},
|
|
264
|
+
{"name": "Ghost CMS API", "description": "Get Published content into your Website", "category": "Development", "link": "https://ghost.org/", "auth": "apiKey"},
|
|
265
|
+
{"name": "Glitterly", "description": "Image generation API", "category": "Design", "link": "https://developers.glitterly.app", "auth": "apiKey"},
|
|
266
|
+
{"name": "Gorest", "description": "Online REST API for Testing and Prototyping", "category": "Development", "link": "https://gorest.co.in/", "auth": "OAuth"},
|
|
267
|
+
{"name": "Hasura", "description": "GraphQL and REST API Engine with built in Authorization", "category": "Development", "link": "https://hasura.io/opensource/", "auth": "apiKey"},
|
|
268
|
+
{"name": "Heroku API", "description": "REST API to programmatically create apps", "category": "Development", "link": "https://devcenter.heroku.com/articles/platform-api-reference/", "auth": "OAuth"},
|
|
269
|
+
{"name": "host-t.com", "description": "Basic DNS query via HTTP GET request", "category": "Development", "link": "https://host-t.com", "auth": "None"},
|
|
270
|
+
{"name": "Host.io", "description": "Domains Data API for Developers", "category": "Development", "link": "https://host.io", "auth": "apiKey"},
|
|
271
|
+
{"name": "HTTP2.Pro", "description": "Test endpoints for HTTP/2 protocol support", "category": "Development", "link": "https://http2.pro/doc/api", "auth": "None"},
|
|
272
|
+
{"name": "Httpbin Cloudflare", "description": "HTTP Request & Response Service with HTTP/3 Support", "category": "Development", "link": "https://cloudflare-quic.com/b/", "auth": "None"},
|
|
273
|
+
{"name": "Hunter API", "description": "API for domain search, professional email finder", "category": "Business", "link": "https://hunter.io/api", "auth": "apiKey"},
|
|
274
|
+
{"name": "IBM Text to Speech", "description": "Convert text to speech", "category": "AI/ML", "link": "https://cloud.ibm.com/docs/text-to-speech/getting-started.html", "auth": "apiKey"},
|
|
275
|
+
{"name": "Icanhazepoch", "description": "Get Epoch time", "category": "Utilities", "link": "https://icanhazepoch.com", "auth": "None"},
|
|
276
|
+
{"name": "Icanhazip", "description": "IP Address API", "category": "Utilities", "link": "https://major.io/icanhazip-com-faq/", "auth": "None"},
|
|
277
|
+
{"name": "IFTTT Connect API", "description": "IFTTT Connect API", "category": "Development", "link": "https://platform.ifttt.com/docs/connect_api", "auth": "None"},
|
|
278
|
+
{"name": "import.io", "description": "Retrieve structured data from a website or RSS feed", "category": "Development", "link": "http://api.docs.import.io/", "auth": "apiKey"},
|
|
279
|
+
{"name": "ip-fast.com", "description": "IP address, country and city", "category": "Utilities", "link": "https://ip-fast.com/docs/", "auth": "None"},
|
|
280
|
+
{"name": "IP2WHOIS", "description": "WHOIS domain name lookup", "category": "Development", "link": "https://www.ip2whois.com/", "auth": "apiKey"},
|
|
281
|
+
{"name": "ipfind.io", "description": "Geographic location of an IP address or domain", "category": "Geocoding", "link": "https://ipfind.io", "auth": "apiKey"},
|
|
282
|
+
{"name": "jsDelivr API", "description": "Package info and download stats on jsDelivr CDN", "category": "Development", "link": "https://github.com/jsdelivr/data.jsdelivr.com", "auth": "None"},
|
|
283
|
+
{"name": "JSON 2 JSONP", "description": "Convert JSON to JSONP for cross-domain data requests", "category": "Development", "link": "https://json2jsonp.com/", "auth": "None"},
|
|
284
|
+
{"name": "Kroki", "description": "Creates diagrams from textual descriptions", "category": "Development", "link": "https://kroki.io", "auth": "None"},
|
|
285
|
+
{"name": "License-API", "description": "Unofficial REST API for choosealicense.com", "category": "Development", "link": "https://github.com/cmccandless/license-api/blob/master/README.md", "auth": "None"},
|
|
286
|
+
{"name": "Logs.to", "description": "Generate logs", "category": "Development", "link": "https://logs.to/", "auth": "apiKey"},
|
|
287
|
+
{"name": "Lua Decompiler", "description": "Online Lua 5.1 Decompiler", "category": "Development", "link": "https://lua-decompiler.ferib.dev/", "auth": "None"},
|
|
288
|
+
{"name": "MAC address vendor lookup", "description": "Retrieve vendor details regarding a MAC address", "category": "Development", "link": "https://macaddress.io/api", "auth": "apiKey"},
|
|
289
|
+
{"name": "Micro DB", "description": "Simple database service", "category": "Development", "link": "https://m3o.com/db", "auth": "apiKey"},
|
|
290
|
+
{"name": "MicroENV", "description": "Fake Rest API for developers", "category": "Development", "link": "https://microenv.com/", "auth": "None"},
|
|
291
|
+
{"name": "Mocky", "description": "Mock user defined test JSON for REST API endpoints", "category": "Development", "link": "https://designer.mocky.io/", "auth": "None"},
|
|
292
|
+
{"name": "MY IP API", "description": "Get IP address information", "category": "Utilities", "link": "https://www.myip.com/api-docs/", "auth": "None"},
|
|
293
|
+
{"name": "Nationalize.io", "description": "Estimate the nationality of a first name", "category": "Utilities", "link": "https://nationalize.io", "auth": "None"},
|
|
294
|
+
|
|
295
|
+
# === MORE POPULAR APIs ===
|
|
296
|
+
{"name": "GNews API", "description": "Search for news from 60,000+ sources", "category": "News", "link": "https://gnews.io/docs/v4", "auth": "apiKey"},
|
|
297
|
+
{"name": "Perigon News", "description": "Real-time global news API", "category": "News", "link": "https://www.goperigon.com/", "auth": "apiKey"},
|
|
298
|
+
{"name": "Mailgun Email Validation", "description": "Validate email addresses", "category": "Email", "link": "https://documentation.mailgun.com/en/latest/api-email-validation.html", "auth": "apiKey"},
|
|
299
|
+
{"name": "Abstract Email Validation", "description": "Validate email addresses in real-time", "category": "Email", "link": "https://www.abstractapi.com/email-verification-validation-api", "auth": "apiKey"},
|
|
300
|
+
{"name": "Eva Email Validation", "description": "Validate email addresses and get deliverability info", "category": "Email", "link": "https://eva.pingutil.com/", "auth": "apiKey"},
|
|
301
|
+
{"name": "PromptPerfect", "description": "AI prompt optimization API", "category": "AI/ML", "link": "https://promptperfect.jina.ai/api", "auth": "apiKey"},
|
|
302
|
+
{"name": "Replicate", "description": "Run AI models in the cloud", "category": "AI/ML", "link": "https://replicate.com/docs/reference/http", "auth": "apiKey"},
|
|
303
|
+
{"name": "Hugging Face Inference", "description": "Run ML models using the Hugging Face API", "category": "AI/ML", "link": "https://huggingface.co/docs/api-inference/", "auth": "apiKey"},
|
|
304
|
+
{"name": "AI21 Labs", "description": "AI models for natural language processing", "category": "AI/ML", "link": "https://docs.ai21.com/", "auth": "apiKey"},
|
|
305
|
+
{"name": "Cohere AI", "description": "Large language models for text generation", "category": "AI/ML", "link": "https://docs.cohere.com/", "auth": "apiKey"},
|
|
306
|
+
{"name": "Claude API", "description": "Anthropic's Claude language model API", "category": "AI/ML", "link": "https://docs.anthropic.com/", "auth": "apiKey"},
|
|
307
|
+
{"name": "Stability AI", "description": "Image generation with Stable Diffusion", "category": "AI/ML", "link": "https://platform.stability.ai/docs/api-reference", "auth": "apiKey"},
|
|
308
|
+
{"name": "DALL-E API", "description": "OpenAI's image generation API", "category": "AI/ML", "link": "https://platform.openai.com/docs/guides/images", "auth": "apiKey"},
|
|
309
|
+
{"name": "Midjourney API", "description": "Unofficial Midjourney image generation API", "category": "AI/ML", "link": "https://docs.midjourney.com/", "auth": "apiKey"},
|
|
310
|
+
{"name": "Runway ML", "description": "AI-powered creative tools API", "category": "AI/ML", "link": "https://runwayml.com/docs/", "auth": "apiKey"},
|
|
311
|
+
{"name": "AssemblyAI", "description": "Speech-to-Text and audio intelligence API", "category": "AI/ML", "link": "https://www.assemblyai.com/docs/", "auth": "apiKey"},
|
|
312
|
+
{"name": "Deepgram", "description": "Speech recognition API for developers", "category": "AI/ML", "link": "https://developers.deepgram.com/", "auth": "apiKey"},
|
|
313
|
+
{"name": "Rev.ai", "description": "Speech recognition API", "category": "AI/ML", "link": "https://www.rev.ai/docs", "auth": "apiKey"},
|
|
314
|
+
{"name": "Otter.ai", "description": "Meeting transcription and notes", "category": "AI/ML", "link": "https://otter.ai/api", "auth": "apiKey"},
|
|
315
|
+
{"name": "Sonix", "description": "Automated transcription API", "category": "AI/ML", "link": "https://sonix.ai/api", "auth": "apiKey"},
|
|
316
|
+
{"name": "Writesonic", "description": "AI writing assistant API", "category": "AI/ML", "link": "https://writesonic.com/api", "auth": "apiKey"},
|
|
317
|
+
{"name": "Copy.ai", "description": "AI copywriting API", "category": "AI/ML", "link": "https://www.copy.ai/api", "auth": "apiKey"},
|
|
318
|
+
{"name": "Jasper AI", "description": "AI content creation API", "category": "AI/ML", "link": "https://www.jasper.ai/api", "auth": "apiKey"},
|
|
319
|
+
{"name": "ContentBot", "description": "AI content generation API", "category": "AI/ML", "link": "https://contentbot.ai/api", "auth": "apiKey"},
|
|
320
|
+
{"name": "Notion API", "description": "Interact with Notion databases and pages", "category": "Business", "link": "https://developers.notion.com/", "auth": "OAuth"},
|
|
321
|
+
{"name": "Coda API", "description": "Interact with Coda docs programmatically", "category": "Business", "link": "https://coda.io/developers/apis/v1", "auth": "apiKey"},
|
|
322
|
+
{"name": "Linear API", "description": "Issue tracking and project management API", "category": "Business", "link": "https://linear.app/docs/api", "auth": "apiKey"},
|
|
323
|
+
{"name": "Height API", "description": "Task management API", "category": "Business", "link": "https://height.notion.site/API-a35e5f12d5844f6a8e8b96fd00f282cc", "auth": "apiKey"},
|
|
324
|
+
{"name": "Fibery API", "description": "Work management platform API", "category": "Business", "link": "https://api.fibery.io/", "auth": "apiKey"},
|
|
325
|
+
{"name": "Monday.com", "description": "Work OS API", "category": "Business", "link": "https://developer.monday.com/api-reference/docs", "auth": "apiKey"},
|
|
326
|
+
{"name": "ClickUp API", "description": "Productivity platform API", "category": "Business", "link": "https://clickup.com/api", "auth": "apiKey"},
|
|
327
|
+
{"name": "Basecamp API", "description": "Project management API", "category": "Business", "link": "https://github.com/basecamp/bc3-api", "auth": "OAuth"},
|
|
328
|
+
{"name": "Teamwork API", "description": "Project management platform API", "category": "Business", "link": "https://developer.teamwork.com/", "auth": "apiKey"},
|
|
329
|
+
{"name": "Wrike API", "description": "Work management platform API", "category": "Business", "link": "https://developers.wrike.com/", "auth": "OAuth"},
|
|
330
|
+
{"name": "Resend Email", "description": "Modern email API for developers", "category": "Email", "link": "https://resend.com/docs/api-reference/introduction", "auth": "apiKey"},
|
|
331
|
+
{"name": "Postmark", "description": "Transactional email API", "category": "Email", "link": "https://postmarkapp.com/developer", "auth": "apiKey"},
|
|
332
|
+
{"name": "SendGrid", "description": "Email delivery API", "category": "Email", "link": "https://docs.sendgrid.com/api-reference/", "auth": "apiKey"},
|
|
333
|
+
{"name": "Mailjet", "description": "Email delivery and marketing API", "category": "Email", "link": "https://dev.mailjet.com/email/reference/", "auth": "apiKey"},
|
|
334
|
+
{"name": "Amazon SES", "description": "Email sending service API", "category": "Email", "link": "https://docs.aws.amazon.com/ses/latest/APIReference/", "auth": "apiKey"},
|
|
335
|
+
{"name": "SparkPost", "description": "Email delivery API", "category": "Email", "link": "https://developers.sparkpost.com/api/", "auth": "apiKey"},
|
|
336
|
+
{"name": "Mandrill", "description": "Transactional email API from Mailchimp", "category": "Email", "link": "https://mailchimp.com/developer/transactional/api/", "auth": "apiKey"},
|
|
337
|
+
{"name": "Customer.io", "description": "Marketing automation API", "category": "Marketing", "link": "https://customer.io/docs/api/", "auth": "apiKey"},
|
|
338
|
+
{"name": "Iterable", "description": "Growth marketing platform API", "category": "Marketing", "link": "https://api.iterable.com/api/docs", "auth": "apiKey"},
|
|
339
|
+
{"name": "Klaviyo", "description": "Email marketing API", "category": "Marketing", "link": "https://developers.klaviyo.com/en", "auth": "apiKey"},
|
|
340
|
+
{"name": "ActiveCampaign", "description": "Marketing automation API", "category": "Marketing", "link": "https://developers.activecampaign.com/reference", "auth": "apiKey"},
|
|
341
|
+
{"name": "Drip", "description": "Ecommerce marketing automation API", "category": "Marketing", "link": "https://developer.drip.com/", "auth": "apiKey"},
|
|
342
|
+
{"name": "ConvertKit", "description": "Email marketing for creators API", "category": "Marketing", "link": "https://developers.convertkit.com/", "auth": "apiKey"},
|
|
343
|
+
{"name": "Beehiiv", "description": "Newsletter platform API", "category": "Marketing", "link": "https://developers.beehiiv.com/", "auth": "apiKey"},
|
|
344
|
+
{"name": "Substack", "description": "Newsletter publishing platform", "category": "Content", "link": "https://substack.com/api", "auth": "apiKey"},
|
|
345
|
+
{"name": "Ghost CMS", "description": "Publishing platform API", "category": "Content", "link": "https://ghost.org/docs/admin-api/", "auth": "apiKey"},
|
|
346
|
+
{"name": "Contentful", "description": "Content management API", "category": "Content", "link": "https://www.contentful.com/developers/docs/references/content-delivery-api/", "auth": "apiKey"},
|
|
347
|
+
{"name": "Sanity", "description": "Content platform API", "category": "Content", "link": "https://www.sanity.io/docs/api-versioning", "auth": "apiKey"},
|
|
348
|
+
{"name": "Strapi", "description": "Headless CMS API", "category": "Content", "link": "https://docs.strapi.io/developer-docs/latest/developer-resources/database-apis-reference/rest-api.html", "auth": "apiKey"},
|
|
349
|
+
{"name": "DatoCMS", "description": "Content management API", "category": "Content", "link": "https://www.datocms.com/docs/content-delivery-api", "auth": "apiKey"},
|
|
350
|
+
{"name": "Hygraph", "description": "GraphQL content API", "category": "Content", "link": "https://hygraph.com/docs/api-reference", "auth": "apiKey"},
|
|
351
|
+
{"name": "Builder.io", "description": "Visual content management API", "category": "Content", "link": "https://www.builder.io/c/docs/content-api", "auth": "apiKey"},
|
|
352
|
+
{"name": "Prismic", "description": "Headless CMS API", "category": "Content", "link": "https://prismic.io/docs/api", "auth": "apiKey"},
|
|
353
|
+
{"name": "Storyblok", "description": "Content management API", "category": "Content", "link": "https://www.storyblok.com/docs/api/content-delivery", "auth": "apiKey"},
|
|
354
|
+
{"name": "ButterCMS", "description": "Headless CMS API", "category": "Content", "link": "https://buttercms.com/docs/api/", "auth": "apiKey"},
|
|
355
|
+
{"name": "Payload CMS", "description": "Open source headless CMS", "category": "Content", "link": "https://payloadcms.com/docs/rest-api/overview", "auth": "apiKey"},
|
|
356
|
+
{"name": "Directus", "description": "Open data platform API", "category": "Content", "link": "https://docs.directus.io/reference/introduction.html", "auth": "apiKey"},
|
|
357
|
+
{"name": "Keystone", "description": "Headless CMS and GraphQL API", "category": "Content", "link": "https://keystonejs.com/docs/apis/graphql", "auth": "apiKey"},
|
|
358
|
+
{"name": "Segment", "description": "Customer data platform API", "category": "Analytics", "link": "https://segment.com/docs/connections/sources/catalog/libraries/server/http-api/", "auth": "apiKey"},
|
|
359
|
+
{"name": "Amplitude", "description": "Product analytics API", "category": "Analytics", "link": "https://www.docs.developers.amplitude.com/analytics/apis/http-v2-api/", "auth": "apiKey"},
|
|
360
|
+
{"name": "Heap", "description": "Digital insights platform API", "category": "Analytics", "link": "https://developers.heap.io/reference", "auth": "apiKey"},
|
|
361
|
+
{"name": "PostHog", "description": "Product analytics API", "category": "Analytics", "link": "https://posthog.com/docs/api", "auth": "apiKey"},
|
|
362
|
+
{"name": "June.so", "description": "Product analytics for B2B SaaS", "category": "Analytics", "link": "https://www.june.so/docs/api", "auth": "apiKey"},
|
|
363
|
+
{"name": "Plausible", "description": "Privacy-focused analytics API", "category": "Analytics", "link": "https://plausible.io/docs/stats-api", "auth": "apiKey"},
|
|
364
|
+
{"name": "Fathom Analytics", "description": "Privacy-focused web analytics", "category": "Analytics", "link": "https://usefathom.com/api", "auth": "apiKey"},
|
|
365
|
+
{"name": "Simple Analytics", "description": "Privacy-first analytics API", "category": "Analytics", "link": "https://docs.simpleanalytics.com/api", "auth": "apiKey"},
|
|
366
|
+
{"name": "Pirsch", "description": "Cookie-free web analytics API", "category": "Analytics", "link": "https://pirsch.io/docs/api", "auth": "apiKey"},
|
|
367
|
+
{"name": "Splitbee", "description": "Analytics API", "category": "Analytics", "link": "https://splitbee.io/docs/api", "auth": "apiKey"},
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
def main():
|
|
371
|
+
print("🦞 APIClaw Public APIs Mass Import v2")
|
|
372
|
+
print("=" * 50)
|
|
373
|
+
|
|
374
|
+
registry = load_registry()
|
|
375
|
+
existing_ids = get_existing_ids(registry)
|
|
376
|
+
existing_names = {api['name'].lower() for api in registry['apis']}
|
|
377
|
+
|
|
378
|
+
added = 0
|
|
379
|
+
skipped = 0
|
|
380
|
+
|
|
381
|
+
for api in ADDITIONAL_APIS:
|
|
382
|
+
api_id = generate_id(api['name'])
|
|
383
|
+
|
|
384
|
+
# Skip if already exists by ID or name
|
|
385
|
+
if api_id in existing_ids or api['name'].lower() in existing_names:
|
|
386
|
+
skipped += 1
|
|
387
|
+
continue
|
|
388
|
+
|
|
389
|
+
registry['apis'].append({
|
|
390
|
+
"id": api_id,
|
|
391
|
+
"name": api['name'],
|
|
392
|
+
"description": api['description'],
|
|
393
|
+
"category": api.get('category', 'Other'),
|
|
394
|
+
"auth": api.get('auth', 'apiKey'),
|
|
395
|
+
"https": True,
|
|
396
|
+
"cors": "unknown",
|
|
397
|
+
"link": api['link'],
|
|
398
|
+
"pricing": "unknown",
|
|
399
|
+
"keywords": [],
|
|
400
|
+
"source": "public-apis-v2"
|
|
401
|
+
})
|
|
402
|
+
existing_ids.add(api_id)
|
|
403
|
+
existing_names.add(api['name'].lower())
|
|
404
|
+
added += 1
|
|
405
|
+
|
|
406
|
+
# Update count and version
|
|
407
|
+
registry['count'] = len(registry['apis'])
|
|
408
|
+
registry['lastUpdated'] = "2026-02-26"
|
|
409
|
+
registry['version'] = "3.2.4"
|
|
410
|
+
|
|
411
|
+
save_registry(registry)
|
|
412
|
+
|
|
413
|
+
print(f"✅ Added: {added} APIs")
|
|
414
|
+
print(f"⏭️ Skipped (duplicates): {skipped}")
|
|
415
|
+
print(f"📊 Total APIs in registry: {registry['count']}")
|
|
416
|
+
|
|
417
|
+
if __name__ == "__main__":
|
|
418
|
+
main()
|