@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,461 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""APIClaw Night Expansion - 2026-02-23 04:00"""
|
|
3
|
+
|
|
4
|
+
import json
|
|
5
|
+
import re
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
|
|
8
|
+
# Load current registry
|
|
9
|
+
with open('/Users/gustavhemmingsson/Projects/apiclaw/src/registry/apis.json', 'r') as f:
|
|
10
|
+
registry = json.load(f)
|
|
11
|
+
|
|
12
|
+
existing_ids = {api['id'] for api in registry['apis']}
|
|
13
|
+
new_apis = []
|
|
14
|
+
|
|
15
|
+
def add_api(name, desc, category, url, auth="unknown"):
|
|
16
|
+
api_id = re.sub(r'[^a-z0-9]', '-', name.lower()).strip('-')
|
|
17
|
+
api_id = re.sub(r'-+', '-', api_id)
|
|
18
|
+
if api_id not in existing_ids and api_id:
|
|
19
|
+
existing_ids.add(api_id)
|
|
20
|
+
new_apis.append({
|
|
21
|
+
"id": api_id,
|
|
22
|
+
"name": name,
|
|
23
|
+
"description": desc[:200],
|
|
24
|
+
"category": category,
|
|
25
|
+
"auth": auth,
|
|
26
|
+
"https": True,
|
|
27
|
+
"cors": "unknown",
|
|
28
|
+
"link": url,
|
|
29
|
+
"pricing": "unknown",
|
|
30
|
+
"keywords": []
|
|
31
|
+
})
|
|
32
|
+
return True
|
|
33
|
+
return False
|
|
34
|
+
|
|
35
|
+
# ===== NEW APIs from public-apis README =====
|
|
36
|
+
|
|
37
|
+
# Animals
|
|
38
|
+
add_api("Zoo Animals", "Facts and pictures of zoo animals", "Animals", "https://zoo-animal-api.herokuapp.com/")
|
|
39
|
+
add_api("xeno-canto", "Bird recordings worldwide", "Animals", "https://xeno-canto.org/explore/api")
|
|
40
|
+
add_api("Movebank", "Movement and Migration data of animals", "Animals", "https://movebank.org")
|
|
41
|
+
add_api("MeowFacts", "Get random cat facts", "Animals", "https://github.com/wh-iterabb-it/meowfacts")
|
|
42
|
+
|
|
43
|
+
# Anime
|
|
44
|
+
add_api("Trace Moe", "Get exact anime scene from screenshot", "Media", "https://trace.moe")
|
|
45
|
+
add_api("Waifu.im", "Anime waifu images archive", "Media", "https://waifu.im/docs")
|
|
46
|
+
add_api("NekosBest", "Neko Images & Anime GIFs", "Media", "https://docs.nekos.best")
|
|
47
|
+
add_api("Shikimori", "Anime discovery and tracking", "Media", "https://shikimori.one/api/doc")
|
|
48
|
+
|
|
49
|
+
# Anti-Malware/Security
|
|
50
|
+
add_api("AbuseIPDB", "IP domain URL reputation checking", "Security", "https://docs.abuseipdb.com/", "apiKey")
|
|
51
|
+
add_api("AlienVault OTX", "Open Threat Exchange intelligence", "Security", "https://otx.alienvault.com/api", "apiKey")
|
|
52
|
+
add_api("MalwareBazaar", "Malware samples collection", "Security", "https://bazaar.abuse.ch/api/", "apiKey")
|
|
53
|
+
add_api("URLhaus", "Malware URL database", "Security", "https://urlhaus-api.abuse.ch/")
|
|
54
|
+
add_api("URLScan.io", "Scan and analyse URLs", "Security", "https://urlscan.io/about-api/", "apiKey")
|
|
55
|
+
add_api("VirusTotal", "File and URL analysis", "Security", "https://www.virustotal.com/en/documentation/public-api/", "apiKey")
|
|
56
|
+
add_api("CAPEsandbox", "Malware execution analysis", "Security", "https://capev2.readthedocs.io/", "apiKey")
|
|
57
|
+
|
|
58
|
+
# Art & Design
|
|
59
|
+
add_api("Art Institute of Chicago", "Art museum collection API", "Art & Design", "https://api.artic.edu/docs/")
|
|
60
|
+
add_api("Colormind", "Color scheme generator AI", "Art & Design", "http://colormind.io/api-access/")
|
|
61
|
+
add_api("EmojiHub", "Get emojis by categories", "Art & Design", "https://github.com/cheatsnake/emojihub")
|
|
62
|
+
add_api("Metropolitan Museum", "Met Museum of Art collection", "Art & Design", "https://metmuseum.github.io/")
|
|
63
|
+
add_api("Rijksmuseum", "Dutch museum collection data", "Art & Design", "https://data.rijksmuseum.nl/", "apiKey")
|
|
64
|
+
add_api("Harvard Art Museums", "Harvard art collection", "Art & Design", "https://github.com/harvardartmuseums/api-docs", "apiKey")
|
|
65
|
+
|
|
66
|
+
# Authentication
|
|
67
|
+
add_api("Auth0", "Authentication authorization platform", "Auth", "https://auth0.com", "apiKey")
|
|
68
|
+
add_api("Stytch", "User infrastructure auth", "Auth", "https://stytch.com/", "apiKey")
|
|
69
|
+
add_api("Warrant", "Authorization access control APIs", "Auth", "https://warrant.dev/", "apiKey")
|
|
70
|
+
|
|
71
|
+
# Blockchain
|
|
72
|
+
add_api("Bitquery", "Onchain GraphQL DEX APIs", "Blockchain", "https://graphql.bitquery.io/ide", "apiKey")
|
|
73
|
+
add_api("Chainlink", "Hybrid smart contracts", "Blockchain", "https://chain.link/developer-resources")
|
|
74
|
+
add_api("Covalent", "Multi-blockchain data aggregator", "Blockchain", "https://www.covalenthq.com/docs/api/", "apiKey")
|
|
75
|
+
add_api("Etherscan", "Ethereum explorer API", "Blockchain", "https://etherscan.io/apis", "apiKey")
|
|
76
|
+
add_api("The Graph", "Indexing protocol GraphQL", "Blockchain", "https://thegraph.com", "apiKey")
|
|
77
|
+
add_api("Watchdata", "Ethereum blockchain access", "Blockchain", "https://docs.watchdata.io", "apiKey")
|
|
78
|
+
add_api("Nownodes", "Blockchain-as-a-service", "Blockchain", "https://nownodes.io/", "apiKey")
|
|
79
|
+
|
|
80
|
+
# Books
|
|
81
|
+
add_api("Wizard World", "Harry Potter universe info", "Books", "https://wizard-world-api.herokuapp.com/")
|
|
82
|
+
add_api("Bhagavad Gita", "Sacred Hindu text API", "Books", "https://docs.bhagavadgitaapi.in", "apiKey")
|
|
83
|
+
add_api("PoetryDB", "Poetry collection database", "Books", "https://github.com/thundercomb/poetrydb")
|
|
84
|
+
add_api("Quran Cloud", "RESTful Quran API", "Books", "https://alquran.cloud/api")
|
|
85
|
+
add_api("Gutendex", "Project Gutenberg books", "Books", "https://gutendex.com/")
|
|
86
|
+
|
|
87
|
+
# Business
|
|
88
|
+
add_api("Apache Superset", "BI dashboards management", "Business", "https://superset.apache.org/docs/api", "apiKey")
|
|
89
|
+
add_api("Clearbit Logo", "Company logo search", "Business", "https://clearbit.com/docs#logo-api", "apiKey")
|
|
90
|
+
add_api("Gmail API", "Gmail programmatic access", "Communication", "https://developers.google.com/gmail/api/", "OAuth")
|
|
91
|
+
add_api("Google Analytics", "Analytics data collection", "Analytics", "https://developers.google.com/analytics/", "OAuth")
|
|
92
|
+
add_api("Mailchimp", "Marketing email campaigns", "Marketing", "https://mailchimp.com/developer/", "apiKey")
|
|
93
|
+
add_api("Redash", "Query dashboards access", "Analytics", "https://redash.io/help/user-guide/integrations-and-api/api", "apiKey")
|
|
94
|
+
add_api("Square", "Payment and business tools", "Payment", "https://developer.squareup.com/reference/square", "OAuth")
|
|
95
|
+
add_api("Trello", "Project board management", "Productivity", "https://developers.trello.com/", "OAuth")
|
|
96
|
+
add_api("Tomba Email Finder", "B2B email finder verifier", "Business", "https://tomba.io/api", "apiKey")
|
|
97
|
+
|
|
98
|
+
# Calendar
|
|
99
|
+
add_api("Calendarific", "Worldwide holidays API", "Calendar", "https://calendarific.com/", "apiKey")
|
|
100
|
+
add_api("Nager.Date", "Public holidays 90+ countries", "Calendar", "https://date.nager.at")
|
|
101
|
+
add_api("Abstract Holidays", "Holiday data via API", "Calendar", "https://www.abstractapi.com/holidays-api", "apiKey")
|
|
102
|
+
|
|
103
|
+
# Cloud Storage
|
|
104
|
+
add_api("Box", "Enterprise file sharing", "Storage", "https://developer.box.com/", "OAuth")
|
|
105
|
+
add_api("Dropbox", "File sync and sharing", "Storage", "https://www.dropbox.com/developers", "OAuth")
|
|
106
|
+
add_api("Google Drive", "Cloud file storage", "Storage", "https://developers.google.com/drive/", "OAuth")
|
|
107
|
+
add_api("OneDrive", "Microsoft cloud storage", "Storage", "https://developer.microsoft.com/onedrive", "OAuth")
|
|
108
|
+
add_api("GoFile", "Unlimited file uploads", "Storage", "https://gofile.io/api", "apiKey")
|
|
109
|
+
add_api("File.io", "Simple file sharing", "Storage", "https://www.file.io")
|
|
110
|
+
add_api("Pinata", "IPFS pinning services", "Storage", "https://docs.pinata.cloud/", "apiKey")
|
|
111
|
+
add_api("Web3 Storage", "Free 1TB cloud storage", "Storage", "https://web3.storage/", "apiKey")
|
|
112
|
+
|
|
113
|
+
# Cryptocurrency - Extended
|
|
114
|
+
add_api("0x Protocol", "Token pool stats DEX", "Cryptocurrency", "https://0x.org/api")
|
|
115
|
+
add_api("1inch", "Decentralized exchange API", "Cryptocurrency", "https://1inch.io/api/")
|
|
116
|
+
add_api("Alchemy Ethereum", "Ethereum node service", "Cryptocurrency", "https://docs.alchemy.com/alchemy/", "apiKey")
|
|
117
|
+
add_api("CoinCap", "Real-time crypto prices", "Cryptocurrency", "https://docs.coincap.io/")
|
|
118
|
+
add_api("CoinGecko", "Crypto price market data", "Cryptocurrency", "https://www.coingecko.com/api")
|
|
119
|
+
add_api("CoinMarketCap", "Cryptocurrency prices", "Cryptocurrency", "https://coinmarketcap.com/api/", "apiKey")
|
|
120
|
+
add_api("Coinpaprika", "Crypto prices volume", "Cryptocurrency", "https://api.coinpaprika.com")
|
|
121
|
+
add_api("CoinRanking", "Live crypto data", "Cryptocurrency", "https://developers.coinranking.com/api/documentation", "apiKey")
|
|
122
|
+
add_api("CryptoCompare", "Crypto comparison rates", "Cryptocurrency", "https://www.cryptocompare.com/api#")
|
|
123
|
+
add_api("Messari", "Crypto assets data", "Cryptocurrency", "https://messari.io/api")
|
|
124
|
+
add_api("dYdX", "Decentralized crypto exchange", "Cryptocurrency", "https://docs.dydx.exchange/", "apiKey")
|
|
125
|
+
add_api("Mempool", "Bitcoin transaction fee API", "Cryptocurrency", "https://mempool.space/api")
|
|
126
|
+
add_api("Solana JSON RPC", "Solana blockchain API", "Cryptocurrency", "https://docs.solana.com/developing/clients/jsonrpc-api")
|
|
127
|
+
|
|
128
|
+
# Currency Exchange
|
|
129
|
+
add_api("ExchangeRate-API", "Free currency conversion", "Finance", "https://www.exchangerate-api.com", "apiKey")
|
|
130
|
+
add_api("Frankfurter", "Exchange rates time series", "Finance", "https://www.frankfurter.app/docs")
|
|
131
|
+
add_api("Currency-api", "150+ currencies no limits", "Finance", "https://github.com/fawazahmed0/currency-api")
|
|
132
|
+
|
|
133
|
+
# Development Tools
|
|
134
|
+
add_api("GitHub API", "GitHub data and operations", "Development", "https://docs.github.com/en/rest", "OAuth")
|
|
135
|
+
add_api("GitLab API", "GitLab automation", "Development", "https://docs.gitlab.com/ee/api/", "OAuth")
|
|
136
|
+
add_api("Bitbucket", "Source code hosting", "Development", "https://developer.atlassian.com/cloud/bitbucket/", "OAuth")
|
|
137
|
+
add_api("CircleCI", "CI/CD automation", "Development", "https://circleci.com/docs/api/v1-reference/", "apiKey")
|
|
138
|
+
add_api("TravisCI", "CI platform API", "Development", "https://docs.travis-ci.com/api/", "apiKey")
|
|
139
|
+
add_api("Docker Hub", "Container registry", "Development", "https://docs.docker.com/docker-hub/api/latest/", "apiKey")
|
|
140
|
+
add_api("Heroku", "Platform-as-a-service", "Development", "https://devcenter.heroku.com/articles/platform-api-reference/", "OAuth")
|
|
141
|
+
add_api("Google Firebase", "Mobile app platform", "Development", "https://firebase.google.com/docs", "apiKey")
|
|
142
|
+
add_api("Google Fonts", "Web fonts metadata", "Development", "https://developers.google.com/fonts/docs/developer_api", "apiKey")
|
|
143
|
+
add_api("QR Code Generator", "QR code creation decode", "Development", "http://goqr.me/api/")
|
|
144
|
+
add_api("IPInfo.io", "IP geolocation lookup", "Development", "https://ipinfo.io/developers", "apiKey")
|
|
145
|
+
add_api("Postman Echo", "Test API server", "Development", "https://www.postman-echo.com")
|
|
146
|
+
add_api("Httpbin", "HTTP request testing", "Development", "https://httpbin.org/")
|
|
147
|
+
add_api("CountAPI", "Free counting service", "Development", "https://countapi.xyz")
|
|
148
|
+
|
|
149
|
+
# Documents & Productivity
|
|
150
|
+
add_api("Google Docs", "Documents API", "Productivity", "https://developers.google.com/docs/api/reference/rest", "OAuth")
|
|
151
|
+
add_api("Google Sheets", "Spreadsheets API", "Productivity", "https://developers.google.com/sheets/api/reference/rest", "OAuth")
|
|
152
|
+
add_api("Google Slides", "Presentations API", "Productivity", "https://developers.google.com/slides/api/reference/rest", "OAuth")
|
|
153
|
+
add_api("Google Keep", "Notes API", "Productivity", "https://developers.google.com/keep/api/reference/rest", "OAuth")
|
|
154
|
+
|
|
155
|
+
# Email Services
|
|
156
|
+
add_api("Context.IO", "Modern email API", "Email", "http://context.io/", "apiKey")
|
|
157
|
+
add_api("Inbox", "RESTful email API", "Email", "https://www.inboxapp.com/docs", "apiKey")
|
|
158
|
+
add_api("Mandrill", "Transactional email", "Email", "https://mandrillapp.com/api/docs/", "apiKey")
|
|
159
|
+
add_api("Outlook Mail", "Office 365 mail API", "Email", "https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations", "OAuth")
|
|
160
|
+
|
|
161
|
+
# Entertainment
|
|
162
|
+
add_api("Chuck Norris Jokes", "Random Chuck Norris jokes", "Entertainment", "https://api.chucknorris.io/")
|
|
163
|
+
add_api("Dad Jokes", "Random dad jokes", "Entertainment", "https://icanhazdadjoke.com/api")
|
|
164
|
+
add_api("JokeAPI", "Programming jokes API", "Entertainment", "https://jokeapi.dev/")
|
|
165
|
+
add_api("Bored API", "Random activities", "Entertainment", "https://www.boredapi.com/")
|
|
166
|
+
|
|
167
|
+
# Finance Extended
|
|
168
|
+
add_api("Alpha Vantage", "Stock market data", "Finance", "https://www.alphavantage.co/documentation/", "apiKey")
|
|
169
|
+
add_api("IEX Cloud", "Financial data platform", "Finance", "https://iexcloud.io/docs/api/", "apiKey")
|
|
170
|
+
add_api("Polygon.io", "Stock crypto forex data", "Finance", "https://polygon.io/docs/", "apiKey")
|
|
171
|
+
add_api("Finnhub", "Real-time stock data", "Finance", "https://finnhub.io/docs/api", "apiKey")
|
|
172
|
+
add_api("Yahoo Finance", "Stock market quotes", "Finance", "https://finance.yahoo.com/")
|
|
173
|
+
add_api("EODHD", "End of day historical data", "Finance", "https://eodhistoricaldata.com/", "apiKey")
|
|
174
|
+
|
|
175
|
+
# Food & Drink
|
|
176
|
+
add_api("TheMealDB", "Meal recipes database", "Food", "https://www.themealdb.com/api.php")
|
|
177
|
+
add_api("TheCocktailDB", "Cocktail recipes", "Food", "https://www.thecocktaildb.com/api.php")
|
|
178
|
+
add_api("Open Food Facts", "Food products database", "Food", "https://world.openfoodfacts.org/data")
|
|
179
|
+
add_api("Spoonacular", "Recipe nutrition API", "Food", "https://spoonacular.com/food-api", "apiKey")
|
|
180
|
+
add_api("Edamam", "Food nutrition analysis", "Food", "https://developer.edamam.com/", "apiKey")
|
|
181
|
+
|
|
182
|
+
# Games Extended
|
|
183
|
+
add_api("Giant Bomb", "Video game database", "Gaming", "https://www.giantbomb.com/api/")
|
|
184
|
+
add_api("IGDB", "Internet game database", "Gaming", "https://api-docs.igdb.com/", "apiKey")
|
|
185
|
+
add_api("RAWG", "Video games database", "Gaming", "https://rawg.io/apidocs", "apiKey")
|
|
186
|
+
add_api("Steam Web API", "Steam platform data", "Gaming", "https://steamcommunity.com/dev", "apiKey")
|
|
187
|
+
add_api("Twitch API", "Live streaming platform", "Gaming", "https://dev.twitch.tv/docs/api/", "OAuth")
|
|
188
|
+
add_api("Discord API", "Chat platform API", "Gaming", "https://discord.com/developers/docs/intro", "OAuth")
|
|
189
|
+
add_api("Pokemon API", "Pokemon data", "Gaming", "https://pokeapi.co/")
|
|
190
|
+
add_api("Marvel API", "Marvel comics universe", "Gaming", "https://developer.marvel.com/", "apiKey")
|
|
191
|
+
add_api("Star Wars API", "Star Wars universe data", "Gaming", "https://swapi.dev/")
|
|
192
|
+
|
|
193
|
+
# Geocoding & Maps
|
|
194
|
+
add_api("OpenCage", "Geocoding API", "Geolocation", "https://opencagedata.com/api", "apiKey")
|
|
195
|
+
add_api("Mapbox", "Maps and location", "Geolocation", "https://docs.mapbox.com/api/", "apiKey")
|
|
196
|
+
add_api("HERE Maps", "Location platform", "Geolocation", "https://developer.here.com/develop/rest-apis", "apiKey")
|
|
197
|
+
add_api("Nominatim", "OpenStreetMap geocoding", "Geolocation", "https://nominatim.org/release-docs/develop/api/Overview/")
|
|
198
|
+
add_api("IP Geolocation", "IP to location", "Geolocation", "https://ipgeolocation.io/documentation", "apiKey")
|
|
199
|
+
add_api("ipstack", "IP geolocation API", "Geolocation", "https://ipstack.com/documentation", "apiKey")
|
|
200
|
+
|
|
201
|
+
# Government & Open Data
|
|
202
|
+
add_api("Data.gov", "US government open data", "Government", "https://api.data.gov/")
|
|
203
|
+
add_api("UK Government", "UK public data", "Government", "https://www.gov.uk/help/reuse-govuk-content")
|
|
204
|
+
add_api("EU Open Data", "European Union data", "Government", "https://data.europa.eu/euodp/en/data")
|
|
205
|
+
add_api("World Bank", "Development indicators", "Government", "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589-developer-information")
|
|
206
|
+
add_api("USGS", "US Geological Survey", "Government", "https://earthquake.usgs.gov/fdsnws/event/1/")
|
|
207
|
+
|
|
208
|
+
# Health
|
|
209
|
+
add_api("OpenFDA", "FDA public data", "Health", "https://open.fda.gov/apis/")
|
|
210
|
+
add_api("NPPES", "Healthcare provider lookup", "Health", "https://npiregistry.cms.hhs.gov/api-page")
|
|
211
|
+
add_api("Healthcare.gov", "US healthcare marketplace", "Health", "https://www.healthcare.gov/developers/")
|
|
212
|
+
add_api("COVID-19 API", "Coronavirus statistics", "Health", "https://covid19api.com/")
|
|
213
|
+
|
|
214
|
+
# Jobs
|
|
215
|
+
add_api("GitHub Jobs", "Tech job listings", "Jobs", "https://jobs.github.com/api")
|
|
216
|
+
add_api("Indeed", "Job search aggregator", "Jobs", "https://opensource.indeedeng.io/api-documentation/")
|
|
217
|
+
add_api("The Muse", "Job listings API", "Jobs", "https://www.themuse.com/developers/api/v2")
|
|
218
|
+
add_api("Adzuna", "Job search engine", "Jobs", "https://developer.adzuna.com/overview", "apiKey")
|
|
219
|
+
|
|
220
|
+
# Machine Learning Extended
|
|
221
|
+
add_api("OpenAI", "GPT language models", "AI & ML", "https://platform.openai.com/docs/api-reference", "apiKey")
|
|
222
|
+
add_api("Anthropic Claude", "AI assistant API", "AI & ML", "https://docs.anthropic.com/claude/reference", "apiKey")
|
|
223
|
+
add_api("Hugging Face", "ML models hub", "AI & ML", "https://huggingface.co/docs/api-inference/", "apiKey")
|
|
224
|
+
add_api("Cohere", "NLP language AI", "AI & ML", "https://docs.cohere.ai/", "apiKey")
|
|
225
|
+
add_api("Stability AI", "Image generation Stable Diffusion", "AI & ML", "https://platform.stability.ai/docs", "apiKey")
|
|
226
|
+
add_api("Replicate", "Run ML models API", "AI & ML", "https://replicate.com/docs", "apiKey")
|
|
227
|
+
add_api("AssemblyAI", "Speech-to-text API", "AI & ML", "https://www.assemblyai.com/docs/", "apiKey")
|
|
228
|
+
add_api("Deepgram", "Speech recognition", "AI & ML", "https://developers.deepgram.com/docs/", "apiKey")
|
|
229
|
+
add_api("Clarifai", "Visual recognition AI", "AI & ML", "https://docs.clarifai.com/api-guide/api-overview", "apiKey")
|
|
230
|
+
|
|
231
|
+
# Music Extended
|
|
232
|
+
add_api("Spotify API", "Music streaming platform", "Music", "https://developer.spotify.com/documentation/web-api/", "OAuth")
|
|
233
|
+
add_api("Last.fm", "Music discovery scrobbling", "Music", "https://www.last.fm/api", "apiKey")
|
|
234
|
+
add_api("Deezer", "Music streaming service", "Music", "https://developers.deezer.com/")
|
|
235
|
+
add_api("Musixmatch", "Lyrics database", "Music", "https://developer.musixmatch.com/", "apiKey")
|
|
236
|
+
add_api("SoundCloud", "Audio sharing platform", "Music", "https://developers.soundcloud.com/", "OAuth")
|
|
237
|
+
add_api("Genius", "Song lyrics annotations", "Music", "https://docs.genius.com/", "apiKey")
|
|
238
|
+
add_api("AudioDB", "Music metadata database", "Music", "https://www.theaudiodb.com/api_guide.php")
|
|
239
|
+
|
|
240
|
+
# News
|
|
241
|
+
add_api("NewsAPI", "News aggregation", "News", "https://newsapi.org/docs/", "apiKey")
|
|
242
|
+
add_api("New York Times", "NYT article search", "News", "https://developer.nytimes.com/", "apiKey")
|
|
243
|
+
add_api("Guardian", "UK Guardian news", "News", "https://open-platform.theguardian.com/documentation/", "apiKey")
|
|
244
|
+
add_api("Hacker News", "Tech news community", "News", "https://github.com/HackerNews/API")
|
|
245
|
+
add_api("Reddit", "Social news aggregation", "News", "https://www.reddit.com/dev/api/", "OAuth")
|
|
246
|
+
add_api("Dev.to", "Developer community", "News", "https://developers.forem.com/api")
|
|
247
|
+
add_api("Product Hunt", "Tech product launches", "News", "https://api.producthunt.com/v2/docs", "OAuth")
|
|
248
|
+
|
|
249
|
+
# Photos Extended
|
|
250
|
+
add_api("Unsplash", "Free high-res photos", "Photos", "https://unsplash.com/documentation", "apiKey")
|
|
251
|
+
add_api("Pexels", "Free stock photos", "Photos", "https://www.pexels.com/api/documentation/", "apiKey")
|
|
252
|
+
add_api("Pixabay", "Free images videos", "Photos", "https://pixabay.com/api/docs/", "apiKey")
|
|
253
|
+
add_api("Flickr", "Photo sharing platform", "Photos", "https://www.flickr.com/services/api/", "apiKey")
|
|
254
|
+
add_api("Lorem Picsum", "Placeholder images", "Photos", "https://picsum.photos/")
|
|
255
|
+
add_api("PlaceKitten", "Kitten placeholders", "Photos", "https://placekitten.com/")
|
|
256
|
+
|
|
257
|
+
# Science
|
|
258
|
+
add_api("NASA", "Space science data", "Science", "https://api.nasa.gov/", "apiKey")
|
|
259
|
+
add_api("SpaceX", "SpaceX launch data", "Science", "https://github.com/r-spacex/SpaceX-API")
|
|
260
|
+
add_api("Open Notify", "ISS location tracking", "Science", "http://open-notify.org/Open-Notify-API/")
|
|
261
|
+
add_api("CERN", "Particle physics data", "Science", "http://opendata.cern.ch/")
|
|
262
|
+
add_api("arXiv", "Scientific papers", "Science", "https://arxiv.org/help/api/")
|
|
263
|
+
add_api("PubChem", "Chemistry database", "Science", "https://pubchem.ncbi.nlm.nih.gov/docs/pug-rest")
|
|
264
|
+
add_api("Numbers API", "Facts about numbers", "Science", "http://numbersapi.com/")
|
|
265
|
+
|
|
266
|
+
# Social Media Extended
|
|
267
|
+
add_api("Facebook Graph", "Facebook platform API", "Social", "https://developers.facebook.com/docs/graph-api/", "OAuth")
|
|
268
|
+
add_api("Twitter API", "Twitter platform data", "Social", "https://developer.twitter.com/en/docs/twitter-api", "OAuth")
|
|
269
|
+
add_api("Instagram Basic", "Instagram user media", "Social", "https://developers.facebook.com/docs/instagram-basic-display-api/", "OAuth")
|
|
270
|
+
add_api("LinkedIn", "Professional network", "Social", "https://developer.linkedin.com/", "OAuth")
|
|
271
|
+
add_api("Pinterest", "Visual discovery", "Social", "https://developers.pinterest.com/", "OAuth")
|
|
272
|
+
add_api("TikTok", "Short video platform", "Social", "https://developers.tiktok.com/doc/", "OAuth")
|
|
273
|
+
add_api("Mastodon", "Decentralized social", "Social", "https://docs.joinmastodon.org/api/")
|
|
274
|
+
add_api("Tumblr", "Microblogging platform", "Social", "https://www.tumblr.com/docs/en/api/v2", "OAuth")
|
|
275
|
+
|
|
276
|
+
# Sports
|
|
277
|
+
add_api("NBA Stats", "Basketball statistics", "Sports", "https://www.nba.com/stats/")
|
|
278
|
+
add_api("ESPN", "Sports news stats", "Sports", "https://www.espn.com/apis/devcenter/docs/")
|
|
279
|
+
add_api("Football-Data", "Soccer competition data", "Sports", "https://www.football-data.org/documentation/", "apiKey")
|
|
280
|
+
add_api("API-Football", "Football statistics", "Sports", "https://www.api-football.com/documentation-v3", "apiKey")
|
|
281
|
+
add_api("TheSportsDB", "Sports database", "Sports", "https://www.thesportsdb.com/api.php")
|
|
282
|
+
add_api("Balldontlie", "NBA data API", "Sports", "https://www.balldontlie.io/")
|
|
283
|
+
add_api("NHL API", "Hockey statistics", "Sports", "https://gitlab.com/dword4/nhlapi")
|
|
284
|
+
add_api("F1 API", "Formula 1 data", "Sports", "https://ergast.com/mrd/")
|
|
285
|
+
|
|
286
|
+
# Transportation
|
|
287
|
+
add_api("Uber", "Ride-sharing platform", "Transportation", "https://developer.uber.com/", "OAuth")
|
|
288
|
+
add_api("Lyft", "Ride-sharing service", "Transportation", "https://www.lyft.com/developers", "OAuth")
|
|
289
|
+
add_api("FlightAware", "Flight tracking", "Transportation", "https://flightaware.com/commercial/flightxml/", "apiKey")
|
|
290
|
+
add_api("AviationStack", "Flight data API", "Transportation", "https://aviationstack.com/documentation", "apiKey")
|
|
291
|
+
add_api("OpenSky", "Air traffic data", "Transportation", "https://openskynetwork.github.io/opensky-api/")
|
|
292
|
+
add_api("Ship24", "Parcel tracking", "Transportation", "https://www.ship24.com/docs/api", "apiKey")
|
|
293
|
+
add_api("AfterShip", "Shipment tracking", "Transportation", "https://docs.aftership.com/api/", "apiKey")
|
|
294
|
+
|
|
295
|
+
# URL Shorteners
|
|
296
|
+
add_api("Bitly", "URL shortening service", "Utilities", "https://dev.bitly.com/", "OAuth")
|
|
297
|
+
add_api("TinyURL", "URL shortener", "Utilities", "https://tinyurl.com/api-create.php")
|
|
298
|
+
add_api("Rebrandly", "Branded short URLs", "Utilities", "https://developers.rebrandly.com/docs", "apiKey")
|
|
299
|
+
|
|
300
|
+
# Video
|
|
301
|
+
add_api("YouTube Data", "YouTube platform API", "Video", "https://developers.google.com/youtube/v3", "apiKey")
|
|
302
|
+
add_api("Vimeo", "Video hosting platform", "Video", "https://developer.vimeo.com/api/start", "OAuth")
|
|
303
|
+
add_api("Dailymotion", "Video sharing platform", "Video", "https://developer.dailymotion.com/api", "apiKey")
|
|
304
|
+
add_api("TMDb", "Movie database API", "Video", "https://developers.themoviedb.org/3", "apiKey")
|
|
305
|
+
add_api("OMDb", "Open movie database", "Video", "https://www.omdbapi.com/", "apiKey")
|
|
306
|
+
add_api("TVmaze", "TV show information", "Video", "https://www.tvmaze.com/api")
|
|
307
|
+
add_api("Trakt", "TV movie tracking", "Video", "https://trakt.docs.apiary.io/", "apiKey")
|
|
308
|
+
|
|
309
|
+
# Weather Extended
|
|
310
|
+
add_api("OpenWeatherMap", "Weather data worldwide", "Weather", "https://openweathermap.org/api", "apiKey")
|
|
311
|
+
add_api("WeatherAPI", "Real-time weather", "Weather", "https://www.weatherapi.com/docs/", "apiKey")
|
|
312
|
+
add_api("Visual Crossing", "Historical weather", "Weather", "https://www.visualcrossing.com/resources/documentation/", "apiKey")
|
|
313
|
+
add_api("Tomorrow.io", "Weather intelligence", "Weather", "https://docs.tomorrow.io/", "apiKey")
|
|
314
|
+
add_api("Weatherstack", "Weather data API", "Weather", "https://weatherstack.com/documentation", "apiKey")
|
|
315
|
+
add_api("MetaWeather", "Weather data aggregator", "Weather", "https://www.metaweather.com/api/")
|
|
316
|
+
add_api("National Weather Service", "US weather forecasts", "Weather", "https://www.weather.gov/documentation/services-web-api")
|
|
317
|
+
|
|
318
|
+
# ===== apis.guru APIs =====
|
|
319
|
+
add_api("1Forge Finance", "Stock forex realtime quotes", "Finance", "https://1forge.com/", "apiKey")
|
|
320
|
+
add_api("1Password Events", "1Password audit events", "Security", "https://developer.1password.com/docs/events-api", "apiKey")
|
|
321
|
+
add_api("1Password Connect", "Secrets management API", "Security", "https://developer.1password.com/docs/connect", "apiKey")
|
|
322
|
+
add_api("Authentiq", "Strong passwordless auth", "Auth", "https://www.authentiq.com/", "OAuth")
|
|
323
|
+
add_api("Ably Platform", "Realtime messaging", "Communication", "https://ably.com/docs/api", "apiKey")
|
|
324
|
+
add_api("Ably Control", "Platform management", "Communication", "https://ably.com/docs/api/control-api", "apiKey")
|
|
325
|
+
add_api("Abstract Geolocation", "IP geolocation API", "Geolocation", "https://www.abstractapi.com/api/ip-geolocation-api", "apiKey")
|
|
326
|
+
add_api("Adafruit IO", "IoT data platform", "IoT", "https://io.adafruit.com/api/docs/", "apiKey")
|
|
327
|
+
add_api("Adobe AEM", "Adobe Experience Manager", "CMS", "https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/implementing/developing/reference-materials/apis/overview.html")
|
|
328
|
+
add_api("Adyen Checkout", "Payment processing", "Payment", "https://docs.adyen.com/api-explorer/Checkout/", "apiKey")
|
|
329
|
+
add_api("Adyen Balance", "Balance platform API", "Payment", "https://docs.adyen.com/api-explorer/BalancePlatform/", "apiKey")
|
|
330
|
+
|
|
331
|
+
# ===== MORE AI/ML APIs =====
|
|
332
|
+
add_api("Google Cloud Vision", "Image analysis AI", "AI & ML", "https://cloud.google.com/vision/docs", "apiKey")
|
|
333
|
+
add_api("Google Cloud NLP", "Natural language processing", "AI & ML", "https://cloud.google.com/natural-language/docs", "apiKey")
|
|
334
|
+
add_api("Google Cloud Speech", "Speech-to-text AI", "AI & ML", "https://cloud.google.com/speech-to-text/docs", "apiKey")
|
|
335
|
+
add_api("Google Cloud Translation", "Text translation AI", "AI & ML", "https://cloud.google.com/translate/docs", "apiKey")
|
|
336
|
+
add_api("AWS Rekognition", "Image video analysis", "AI & ML", "https://docs.aws.amazon.com/rekognition/", "apiKey")
|
|
337
|
+
add_api("AWS Comprehend", "NLP text analysis", "AI & ML", "https://docs.aws.amazon.com/comprehend/", "apiKey")
|
|
338
|
+
add_api("AWS Polly", "Text-to-speech AI", "AI & ML", "https://docs.aws.amazon.com/polly/", "apiKey")
|
|
339
|
+
add_api("AWS Transcribe", "Speech recognition", "AI & ML", "https://docs.aws.amazon.com/transcribe/", "apiKey")
|
|
340
|
+
add_api("Azure Computer Vision", "Image AI analysis", "AI & ML", "https://docs.microsoft.com/azure/cognitive-services/computer-vision/", "apiKey")
|
|
341
|
+
add_api("Azure Text Analytics", "NLP text services", "AI & ML", "https://docs.microsoft.com/azure/cognitive-services/text-analytics/", "apiKey")
|
|
342
|
+
add_api("Azure Speech", "Speech services AI", "AI & ML", "https://docs.microsoft.com/azure/cognitive-services/speech-service/", "apiKey")
|
|
343
|
+
add_api("Azure Translator", "Text translation AI", "AI & ML", "https://docs.microsoft.com/azure/cognitive-services/translator/", "apiKey")
|
|
344
|
+
add_api("IBM Watson NLU", "Natural language understanding", "AI & ML", "https://cloud.ibm.com/apidocs/natural-language-understanding", "apiKey")
|
|
345
|
+
add_api("IBM Watson Assistant", "Conversational AI", "AI & ML", "https://cloud.ibm.com/apidocs/assistant/assistant-v2", "apiKey")
|
|
346
|
+
add_api("Wit.ai", "NLP for apps", "AI & ML", "https://wit.ai/docs", "apiKey")
|
|
347
|
+
add_api("Dialogflow", "Conversational AI Google", "AI & ML", "https://cloud.google.com/dialogflow/docs", "apiKey")
|
|
348
|
+
add_api("Rasa", "Open source conversational AI", "AI & ML", "https://rasa.com/docs/rasa/api/")
|
|
349
|
+
add_api("Perplexity", "AI search engine API", "AI & ML", "https://docs.perplexity.ai/", "apiKey")
|
|
350
|
+
add_api("Groq", "Fast AI inference", "AI & ML", "https://console.groq.com/docs", "apiKey")
|
|
351
|
+
add_api("Together AI", "Open source AI platform", "AI & ML", "https://docs.together.ai/", "apiKey")
|
|
352
|
+
add_api("Fireworks AI", "Fast AI inference", "AI & ML", "https://readme.fireworks.ai/", "apiKey")
|
|
353
|
+
add_api("Mistral AI", "Mistral language models", "AI & ML", "https://docs.mistral.ai/", "apiKey")
|
|
354
|
+
|
|
355
|
+
# ===== E-commerce APIs =====
|
|
356
|
+
add_api("Shopify", "E-commerce platform", "E-commerce", "https://shopify.dev/docs/api", "apiKey")
|
|
357
|
+
add_api("WooCommerce", "WordPress e-commerce", "E-commerce", "https://woocommerce.github.io/woocommerce-rest-api-docs/", "apiKey")
|
|
358
|
+
add_api("BigCommerce", "E-commerce platform", "E-commerce", "https://developer.bigcommerce.com/docs", "apiKey")
|
|
359
|
+
add_api("Magento", "Adobe Commerce API", "E-commerce", "https://developer.adobe.com/commerce/webapi/", "apiKey")
|
|
360
|
+
add_api("eBay", "Online marketplace", "E-commerce", "https://developer.ebay.com/api-docs", "OAuth")
|
|
361
|
+
add_api("Amazon SP-API", "Amazon Selling Partner", "E-commerce", "https://developer-docs.amazon.com/sp-api/", "apiKey")
|
|
362
|
+
add_api("Etsy", "Handmade marketplace", "E-commerce", "https://developers.etsy.com/documentation/", "OAuth")
|
|
363
|
+
add_api("Klarna", "Buy now pay later", "E-commerce", "https://docs.klarna.com/", "apiKey")
|
|
364
|
+
add_api("Afterpay", "Pay in installments", "E-commerce", "https://developers.afterpay.com/", "apiKey")
|
|
365
|
+
|
|
366
|
+
# ===== Marketing & Analytics =====
|
|
367
|
+
add_api("Google Ads", "Advertising platform", "Marketing", "https://developers.google.com/google-ads/api/docs/start", "OAuth")
|
|
368
|
+
add_api("Facebook Ads", "Social advertising", "Marketing", "https://developers.facebook.com/docs/marketing-apis/", "OAuth")
|
|
369
|
+
add_api("HubSpot", "CRM marketing platform", "Marketing", "https://developers.hubspot.com/docs/api/overview", "apiKey")
|
|
370
|
+
add_api("Salesforce", "CRM platform", "Marketing", "https://developer.salesforce.com/docs/apis", "OAuth")
|
|
371
|
+
add_api("Mixpanel", "Product analytics", "Analytics", "https://developer.mixpanel.com/reference/overview", "apiKey")
|
|
372
|
+
add_api("Amplitude", "Product analytics", "Analytics", "https://www.docs.developers.amplitude.com/", "apiKey")
|
|
373
|
+
add_api("Segment", "Customer data platform", "Analytics", "https://segment.com/docs/api/", "apiKey")
|
|
374
|
+
add_api("Hotjar", "User behavior analytics", "Analytics", "https://help.hotjar.com/hc/en-us/categories/115001355687-Hotjar-API", "apiKey")
|
|
375
|
+
add_api("Intercom", "Customer messaging", "Marketing", "https://developers.intercom.com/docs/", "apiKey")
|
|
376
|
+
add_api("Zendesk", "Customer service platform", "Marketing", "https://developer.zendesk.com/api-reference/", "apiKey")
|
|
377
|
+
add_api("Drift", "Conversational marketing", "Marketing", "https://devdocs.drift.com/docs/", "apiKey")
|
|
378
|
+
add_api("Crisp", "Customer messaging", "Marketing", "https://docs.crisp.chat/api/v1/", "apiKey")
|
|
379
|
+
add_api("Freshdesk", "Customer support", "Marketing", "https://developers.freshdesk.com/api/", "apiKey")
|
|
380
|
+
add_api("Pipedrive", "Sales CRM", "Marketing", "https://developers.pipedrive.com/docs/api/v1", "apiKey")
|
|
381
|
+
|
|
382
|
+
# ===== DevOps & Infrastructure =====
|
|
383
|
+
add_api("AWS", "Amazon Web Services", "Cloud", "https://docs.aws.amazon.com/", "apiKey")
|
|
384
|
+
add_api("Google Cloud", "Google Cloud Platform", "Cloud", "https://cloud.google.com/apis", "apiKey")
|
|
385
|
+
add_api("Azure", "Microsoft Azure", "Cloud", "https://docs.microsoft.com/azure/", "apiKey")
|
|
386
|
+
add_api("DigitalOcean", "Cloud infrastructure", "Cloud", "https://docs.digitalocean.com/reference/api/", "apiKey")
|
|
387
|
+
add_api("Linode", "Cloud computing", "Cloud", "https://www.linode.com/docs/api/", "apiKey")
|
|
388
|
+
add_api("Vultr", "Cloud infrastructure", "Cloud", "https://www.vultr.com/api/", "apiKey")
|
|
389
|
+
add_api("Cloudflare", "CDN security platform", "Cloud", "https://api.cloudflare.com/", "apiKey")
|
|
390
|
+
add_api("Netlify", "Web deployment platform", "Cloud", "https://docs.netlify.com/api/get-started/", "apiKey")
|
|
391
|
+
add_api("Vercel", "Frontend deployment", "Cloud", "https://vercel.com/docs/rest-api", "apiKey")
|
|
392
|
+
add_api("Railway", "App deployment platform", "Cloud", "https://docs.railway.app/reference/public-api", "apiKey")
|
|
393
|
+
add_api("Render", "Cloud application hosting", "Cloud", "https://api-docs.render.com/", "apiKey")
|
|
394
|
+
add_api("Fly.io", "Global app platform", "Cloud", "https://fly.io/docs/reference/machines/", "apiKey")
|
|
395
|
+
add_api("PlanetScale", "Serverless MySQL", "Database", "https://api-docs.planetscale.com/", "apiKey")
|
|
396
|
+
add_api("Supabase", "Open source Firebase alt", "Database", "https://supabase.com/docs/guides/api", "apiKey")
|
|
397
|
+
add_api("Upstash", "Serverless Redis Kafka", "Database", "https://docs.upstash.com/redis/rest/", "apiKey")
|
|
398
|
+
add_api("Neon", "Serverless Postgres", "Database", "https://api-docs.neon.tech/", "apiKey")
|
|
399
|
+
add_api("MongoDB Atlas", "Cloud database service", "Database", "https://www.mongodb.com/docs/atlas/api/", "apiKey")
|
|
400
|
+
add_api("Fauna", "Serverless database", "Database", "https://docs.fauna.com/fauna/current/api/", "apiKey")
|
|
401
|
+
add_api("CockroachDB", "Distributed SQL database", "Database", "https://www.cockroachlabs.com/docs/api/", "apiKey")
|
|
402
|
+
add_api("Datadog", "Monitoring observability", "Monitoring", "https://docs.datadoghq.com/api/", "apiKey")
|
|
403
|
+
add_api("New Relic", "Observability platform", "Monitoring", "https://docs.newrelic.com/docs/apis/", "apiKey")
|
|
404
|
+
add_api("Sentry", "Error tracking", "Monitoring", "https://docs.sentry.io/api/", "apiKey")
|
|
405
|
+
add_api("PagerDuty", "Incident management", "Monitoring", "https://developer.pagerduty.com/docs/", "apiKey")
|
|
406
|
+
add_api("StatusPage", "Status page hosting", "Monitoring", "https://developer.statuspage.io/", "apiKey")
|
|
407
|
+
|
|
408
|
+
# ===== Communication APIs =====
|
|
409
|
+
add_api("Twilio", "Communication APIs", "Communication", "https://www.twilio.com/docs/", "apiKey")
|
|
410
|
+
add_api("SendGrid", "Email delivery", "Communication", "https://docs.sendgrid.com/api-reference/", "apiKey")
|
|
411
|
+
add_api("Mailgun", "Email API service", "Communication", "https://documentation.mailgun.com/en/latest/api_reference.html", "apiKey")
|
|
412
|
+
add_api("Postmark", "Transactional email", "Communication", "https://postmarkapp.com/developer", "apiKey")
|
|
413
|
+
add_api("Amazon SES", "Email sending service", "Communication", "https://docs.aws.amazon.com/ses/", "apiKey")
|
|
414
|
+
add_api("Vonage", "Communication APIs", "Communication", "https://developer.vonage.com/", "apiKey")
|
|
415
|
+
add_api("Plivo", "Voice SMS APIs", "Communication", "https://www.plivo.com/docs/", "apiKey")
|
|
416
|
+
add_api("MessageBird", "Omnichannel messaging", "Communication", "https://developers.messagebird.com/", "apiKey")
|
|
417
|
+
add_api("Sinch", "Communication platform", "Communication", "https://developers.sinch.com/", "apiKey")
|
|
418
|
+
add_api("Telnyx", "Communication APIs", "Communication", "https://developers.telnyx.com/docs/v2", "apiKey")
|
|
419
|
+
|
|
420
|
+
# ===== Productivity & Collaboration =====
|
|
421
|
+
add_api("Notion", "Workspace productivity", "Productivity", "https://developers.notion.com/", "apiKey")
|
|
422
|
+
add_api("Airtable", "Spreadsheet database", "Productivity", "https://airtable.com/developers/web/api/", "apiKey")
|
|
423
|
+
add_api("Asana", "Project management", "Productivity", "https://developers.asana.com/docs/overview", "apiKey")
|
|
424
|
+
add_api("Monday.com", "Work management", "Productivity", "https://developer.monday.com/api-reference/docs", "apiKey")
|
|
425
|
+
add_api("Jira", "Issue tracking", "Productivity", "https://developer.atlassian.com/cloud/jira/platform/rest/", "apiKey")
|
|
426
|
+
add_api("Confluence", "Team workspace", "Productivity", "https://developer.atlassian.com/cloud/confluence/rest/", "apiKey")
|
|
427
|
+
add_api("Linear", "Issue tracking", "Productivity", "https://developers.linear.app/docs/", "apiKey")
|
|
428
|
+
add_api("ClickUp", "Project management", "Productivity", "https://clickup.com/api", "apiKey")
|
|
429
|
+
add_api("Basecamp", "Project management", "Productivity", "https://github.com/basecamp/bc3-api", "OAuth")
|
|
430
|
+
add_api("Todoist", "Task management", "Productivity", "https://developer.todoist.com/rest/", "apiKey")
|
|
431
|
+
add_api("Calendly", "Scheduling platform", "Productivity", "https://developer.calendly.com/", "apiKey")
|
|
432
|
+
add_api("Cal.com", "Open source scheduling", "Productivity", "https://cal.com/docs/api-reference/", "apiKey")
|
|
433
|
+
add_api("Loom", "Video messaging", "Productivity", "https://dev.loom.com/docs/", "apiKey")
|
|
434
|
+
add_api("Miro", "Visual collaboration", "Productivity", "https://developers.miro.com/docs/", "OAuth")
|
|
435
|
+
add_api("Figma", "Design platform", "Design", "https://www.figma.com/developers/api", "OAuth")
|
|
436
|
+
add_api("Canva", "Design platform", "Design", "https://www.canva.com/developers/", "OAuth")
|
|
437
|
+
|
|
438
|
+
# ===== Swedish/Nordic APIs =====
|
|
439
|
+
add_api("Swish", "Swedish mobile payments", "Payment", "https://developer.swish.nu/", "certificate")
|
|
440
|
+
add_api("BankID", "Swedish e-ID", "Auth", "https://www.bankid.com/utvecklare/", "certificate")
|
|
441
|
+
add_api("Freja eID", "Nordic e-ID", "Auth", "https://frejaeid.com/developers/", "apiKey")
|
|
442
|
+
add_api("Klarna Checkout", "Swedish payment checkout", "Payment", "https://docs.klarna.com/", "apiKey")
|
|
443
|
+
add_api("Trafiklab", "Swedish transport data", "Transportation", "https://www.trafiklab.se/api", "apiKey")
|
|
444
|
+
add_api("SMHI", "Swedish weather data", "Weather", "https://opendata.smhi.se/apidocs/")
|
|
445
|
+
add_api("SCB", "Statistics Sweden", "Government", "https://www.scb.se/en/services/open-data-api/")
|
|
446
|
+
add_api("Bolagsverket", "Swedish company register", "Government", "https://bolagsverket.se/om/oss/oppna-data")
|
|
447
|
+
add_api("Skatteverket", "Swedish tax authority", "Government", "https://www.skatteverket.se/foretag/etjanster/apier.4.html")
|
|
448
|
+
add_api("PostNord", "Nordic postal service", "Transportation", "https://developer.postnord.com/", "apiKey")
|
|
449
|
+
add_api("Vipps MobilePay", "Nordic mobile payments", "Payment", "https://developer.vippsmobilepay.com/", "apiKey")
|
|
450
|
+
|
|
451
|
+
# Add all new APIs to registry
|
|
452
|
+
registry['apis'].extend(new_apis)
|
|
453
|
+
registry['count'] = len(registry['apis'])
|
|
454
|
+
registry['lastUpdated'] = datetime.utcnow().isoformat()
|
|
455
|
+
|
|
456
|
+
# Save updated registry
|
|
457
|
+
with open('/Users/gustavhemmingsson/Projects/apiclaw/src/registry/apis.json', 'w') as f:
|
|
458
|
+
json.dump(registry, f, indent=2)
|
|
459
|
+
|
|
460
|
+
print(f"✅ Added {len(new_apis)} new APIs")
|
|
461
|
+
print(f"📊 Total APIs: {registry['count']}")
|