@nordsym/apiclaw 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/STATUS.md +1 -1
- package/dist/credentials.d.ts.map +1 -1
- package/dist/credentials.js +26 -0
- package/dist/credentials.js.map +1 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +162 -0
- package/dist/execute.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/proxy.d.ts.map +1 -1
- package/dist/proxy.js +1 -1
- package/dist/proxy.js.map +1 -1
- package/dist/registry/apis.json +1 -116054
- package/landing/src/app/docs/page.tsx +300 -0
- package/landing/src/app/page.tsx +1 -1
- package/landing/src/lib/apis.json +1 -116054
- package/landing/src/lib/stats.json +4 -4
- package/package.json +1 -1
- package/scripts/add-public-apis.py +625 -0
- package/scripts/apisguru-data.json +158837 -0
- package/scripts/bonus-batch.py +250 -0
- package/scripts/bulk-add-apisguru.js +122 -0
- package/scripts/expand-2026-batch.py +335 -0
- package/scripts/expand-from-github.py +460 -0
- package/scripts/expand-n4ze3m.py +198 -0
- package/scripts/expand-niche-batch.py +269 -0
- package/scripts/expand-nordic-niche.py +189 -0
- package/scripts/expand-tonnyL.py +343 -0
- package/scripts/final-batch.py +315 -0
- package/scripts/final-push-06.py +242 -0
- package/scripts/mega-expansion.py +495 -0
- package/scripts/mega-final-06.py +512 -0
- package/scripts/more-apis.py +353 -0
- package/scripts/night-batch-05.py +546 -0
- package/scripts/night-batch-05b.py +427 -0
- package/scripts/night-expansion-06.py +325 -0
- package/scripts/night-expansion.py +441 -0
- package/scripts/super-final-06.py +341 -0
- package/src/credentials.ts +28 -0
- package/src/execute.ts +193 -0
- package/src/index.ts +2 -1
- package/src/proxy.ts +1 -1
- package/src/registry/apis.json +1 -116054
|
@@ -0,0 +1,460 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Expansion: Parse GitHub awesome-apis lists
|
|
4
|
+
"""
|
|
5
|
+
import json
|
|
6
|
+
import re
|
|
7
|
+
import hashlib
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
|
|
10
|
+
registry_path = Path(__file__).parent.parent / 'src/registry/apis.json'
|
|
11
|
+
|
|
12
|
+
# Load existing registry
|
|
13
|
+
with open(registry_path) as f:
|
|
14
|
+
registry = json.load(f)
|
|
15
|
+
|
|
16
|
+
existing_ids = {a['id'].lower() for a in registry['apis']}
|
|
17
|
+
existing_links = {a.get('link', '').lower().rstrip('/') for a in registry['apis']}
|
|
18
|
+
existing_names = {a['name'].lower() for a in registry['apis']}
|
|
19
|
+
|
|
20
|
+
def make_id(name):
|
|
21
|
+
slug = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
22
|
+
return slug[:50] if len(slug) > 50 else slug
|
|
23
|
+
|
|
24
|
+
def add_api(name, desc, category, link, auth='None', https=True, cors='unknown'):
|
|
25
|
+
api_id = make_id(name)
|
|
26
|
+
|
|
27
|
+
# Skip if exists
|
|
28
|
+
if api_id in existing_ids:
|
|
29
|
+
return False
|
|
30
|
+
if link.lower().rstrip('/') in existing_links:
|
|
31
|
+
return False
|
|
32
|
+
if name.lower() in existing_names:
|
|
33
|
+
return False
|
|
34
|
+
|
|
35
|
+
# Generate unique ID if collision
|
|
36
|
+
if api_id in existing_ids:
|
|
37
|
+
api_id = f"{api_id}-{hashlib.md5(link.encode()).hexdigest()[:6]}"
|
|
38
|
+
|
|
39
|
+
keywords = [category.lower()]
|
|
40
|
+
desc_lower = desc.lower()
|
|
41
|
+
if 'free' in desc_lower:
|
|
42
|
+
keywords.append('free')
|
|
43
|
+
if 'json' in desc_lower:
|
|
44
|
+
keywords.append('json')
|
|
45
|
+
if 'rest' in desc_lower:
|
|
46
|
+
keywords.append('rest')
|
|
47
|
+
if 'open' in desc_lower:
|
|
48
|
+
keywords.append('opensource')
|
|
49
|
+
|
|
50
|
+
registry['apis'].append({
|
|
51
|
+
'id': api_id,
|
|
52
|
+
'name': name,
|
|
53
|
+
'description': desc[:500],
|
|
54
|
+
'category': category,
|
|
55
|
+
'auth': auth,
|
|
56
|
+
'https': https,
|
|
57
|
+
'cors': cors,
|
|
58
|
+
'link': link,
|
|
59
|
+
'pricing': 'unknown',
|
|
60
|
+
'keywords': list(set(keywords)),
|
|
61
|
+
'source': 'github-awesome'
|
|
62
|
+
})
|
|
63
|
+
existing_ids.add(api_id)
|
|
64
|
+
existing_links.add(link.lower().rstrip('/'))
|
|
65
|
+
existing_names.add(name.lower())
|
|
66
|
+
return True
|
|
67
|
+
|
|
68
|
+
added = 0
|
|
69
|
+
|
|
70
|
+
# ======================
|
|
71
|
+
# n0shake/Public-APIs extra additions
|
|
72
|
+
# ======================
|
|
73
|
+
|
|
74
|
+
# Advertising
|
|
75
|
+
new_apis = [
|
|
76
|
+
("Amazon Mobile Ads", "Monetize across platforms with multiple ad formats", "Advertising", "https://developer.amazon.com/mobile-ads"),
|
|
77
|
+
("Facebook Marketing API", "Manage ads and campaigns using the Facebook API", "Advertising", "https://developers.facebook.com/docs/marketing-apis"),
|
|
78
|
+
("Google AdSense", "Free, flexible way to earn money from your websites", "Advertising", "https://developers.google.com/adsense/?hl=en"),
|
|
79
|
+
("Google AdWords API", "Manage Google AdWords campaigns programmatically", "Advertising", "https://developers.google.com/adwords/api/docs/guides/start"),
|
|
80
|
+
("Kevel Ad APIs", "Build your own ad server with Kevel's ad APIs", "Advertising", "https://dev.kevel.co"),
|
|
81
|
+
|
|
82
|
+
# Analytics additions
|
|
83
|
+
("Amazon Mobile Analytics", "Service for collecting, visualizing, and understanding app usage data", "Analytics", "https://aws.amazon.com/documentation/mobileanalytics/"),
|
|
84
|
+
("Clicky", "Extract your website's traffic data into several formats", "Analytics", "https://clicky.com/help/api"),
|
|
85
|
+
("Fabric (Firebase)", "Platform that helps your mobile team build better apps", "Analytics", "https://firebase.google.com/"),
|
|
86
|
+
("Localytics", "Interface to Localytics analytics platform", "Analytics", "http://docs.localytics.com/dev/query-api.html#query-api"),
|
|
87
|
+
("Matomo", "All-in-one premium web analytics platform", "Analytics", "https://matomo.org/docs/analytics-api/"),
|
|
88
|
+
("Open Web Analytics", "Way to request and work with your data outside of OWA", "Analytics", "https://github.com/padams/Open-Web-Analytics/wiki/Data-Access-API"),
|
|
89
|
+
("Ticksel", "Friendly website analytics made for humans", "Analytics", "https://ticksel.com"),
|
|
90
|
+
("Woopra", "Real-time website analysis tool that targets customer engagement", "Analytics", "https://www.woopra.com/docs/developer/analytics-api/"),
|
|
91
|
+
|
|
92
|
+
# AR/VR
|
|
93
|
+
("Vuforia", "Solid SDK with robust development options for AR", "AR/VR", "https://library.vuforia.com/"),
|
|
94
|
+
("Wikitude", "All-in-one AR solution includes image recognition & tracking", "AR/VR", "http://www.wikitude.com/download/"),
|
|
95
|
+
|
|
96
|
+
# Barcode
|
|
97
|
+
("Dynamic QR Code", "Generate dynamic and static QR Codes", "Barcode", "https://rapidapi.com/updeploy-tools/api/qr-code-dynamic-and-static1/details"),
|
|
98
|
+
("Google Barcode", "Barcode API detects barcodes in real-time", "Barcode", "https://developers.google.com/vision/barcodes-overview?hl=en"),
|
|
99
|
+
("EAN-Search", "Lookup products by EAN, UPC or GTIN barcode", "Barcode", "https://www.ean-search.org/ean-database-api.html"),
|
|
100
|
+
("QR Code Generator API", "Static and Dynamic QR code generator API", "Barcode", "https://docs.openqr.io/"),
|
|
101
|
+
|
|
102
|
+
# Big Data
|
|
103
|
+
("Google Charts", "Free tool with wide range of capabilities for visualizing data", "Big Data", "https://developers.google.com/chart/interactive/docs/"),
|
|
104
|
+
("Keen IO", "Powerful, flexible, and scalable Big Data solution", "Big Data", "https://keen.io/docs/api/"),
|
|
105
|
+
("LinkedData.Center", "RDF graph database as a service with SPARQL", "Big Data", "http://linkeddata.center/home/gdaas"),
|
|
106
|
+
|
|
107
|
+
# Cryptocurrency additional
|
|
108
|
+
("Block.io", "Most versatile and secure wallet for all your coins", "Cryptocurrency", "https://block.io/"),
|
|
109
|
+
("BlockCypher", "Infrastructure fabric for blockchain applications", "Cryptocurrency", "https://www.blockcypher.com/"),
|
|
110
|
+
("BlockFacts.io", "Compliance-first digital asset data", "Cryptocurrency", "https://blockfacts.io/"),
|
|
111
|
+
("Coinigy", "Interacting with Coinigy Accounts and Exchange Directly", "Cryptocurrency", "https://coinigy.docs.apiary.io"),
|
|
112
|
+
("Covalent", "Multi-blockchain data aggregator", "Cryptocurrency", "https://www.covalenthq.com/docs/api/"),
|
|
113
|
+
("PENDAX", "SDK for Trading, Data, and Websockets", "Cryptocurrency", "https://github.com/CompendiumFi/PENDAX-SDK"),
|
|
114
|
+
("ShapeShift.io", "Exchange between cryptocurrencies without an account", "Cryptocurrency", "https://shapeshift.io/"),
|
|
115
|
+
("Technical Analysis API", "Cryptocurrency prices, technical analysis and sentiment", "Cryptocurrency", "https://technical-analysis-api.com"),
|
|
116
|
+
|
|
117
|
+
# Calendar
|
|
118
|
+
("CalendarIndex", "Worldwide Holidays and Working Days API", "Calendar", "https://www.calendarindex.com"),
|
|
119
|
+
("DigiDates API", "Rest API for date and time calculations", "Calendar", "https://digidates.de/en/"),
|
|
120
|
+
("Holiday API", "Public holiday API service for several supported countries", "Calendar", "https://holidayapi.pl/"),
|
|
121
|
+
("OpenHolidays API", "Public and school holidays for European countries", "Calendar", "https://www.openholidaysapi.org/"),
|
|
122
|
+
|
|
123
|
+
# Captcha
|
|
124
|
+
("Anti-Captcha", "Access to Anti-Captcha's API", "Captcha", "https://anti-captcha.com/apidoc"),
|
|
125
|
+
("ProxyCrawl", "Crawl and scrape websites without proxies", "Captcha", "https://proxycrawl.com"),
|
|
126
|
+
|
|
127
|
+
# Check-In
|
|
128
|
+
("Facebook Check-In", "A check-in made to a location-based Page", "Location", "https://developers.facebook.com/docs/graph-api/reference/v2.3/checkin"),
|
|
129
|
+
("Google Places", "Access to Google Places' API", "Location", "https://developers.google.com/places/?hl=en"),
|
|
130
|
+
("Foursquare Check-In", "Allows you to check in to a place", "Location", "https://developer.foursquare.com/reference/v2-checkins-add"),
|
|
131
|
+
|
|
132
|
+
# Commerce
|
|
133
|
+
("Commerce Layer", "Headless commerce platform", "Commerce", "https://docs.commercelayer.io/api/"),
|
|
134
|
+
("envoice", "Invoicing for online businesses", "Commerce", "https://www.envoice.in/reference/api/docs"),
|
|
135
|
+
("koomalooma", "Loyalty BPaaS for mobile and web companies", "Commerce", "http://business.koomalooma.com"),
|
|
136
|
+
("Moltin", "Unified APIs for inventory, carts, checkout, payments", "Commerce", "https://www.moltin.com/developers"),
|
|
137
|
+
("Repetiti", "3d Printer Management Service", "Commerce", "https://developers.repetiti.com"),
|
|
138
|
+
("Yellow Pages API", "Get data for all categories of businesses", "Commerce", "https://github.com/Hrushi11/Yellow-Pages-End-API"),
|
|
139
|
+
|
|
140
|
+
# Communication
|
|
141
|
+
("Africa's Talking", "Access African telco services through HTTP API", "Communication", "https://africastalking.com/"),
|
|
142
|
+
("iP1sms", "Send and receive SMS messages worldwide", "Communication", "https://www.ip1sms.com/en/developer/"),
|
|
143
|
+
("Eqivo", "Telephony/Programmable-Voice API platform", "Communication", "https://eqivo.org"),
|
|
144
|
+
("Sakari", "Send and Receive SMS to over 200+ countries", "Communication", "https://developer.sakari.io"),
|
|
145
|
+
("Telnyx", "Build Voice, SMS, Fax, Networking and Cellular IoT", "Communication", "https://developers.telnyx.com/"),
|
|
146
|
+
("The SMS Works", "Low-cost, reliable SMS API for developers", "Communication", "https://thesmsworks.co.uk/sms-api"),
|
|
147
|
+
|
|
148
|
+
# Content
|
|
149
|
+
("Bible API", "Lightning-fast Bible API, 200+ translations", "Content", "https://github.com/wldeh/bible-api"),
|
|
150
|
+
("Bible API Alt", "JSON API for public domain and open bible translations", "Content", "https://bible-api.com/"),
|
|
151
|
+
("Fruits API", "API GraphQL with information on fruit trees", "Content", "https://github.com/Franqsanz/fruits-api"),
|
|
152
|
+
("Jokes One", "Full featured Jokes API", "Content", "https://jokes.one/api/joke/"),
|
|
153
|
+
("Perfect Tense API", "Grammar checking API using AI", "Content", "https://www.perfecttense.com/developers"),
|
|
154
|
+
("Random Data Generator", "API Generator for telephones, text, numbers", "Content", "https://randommer.io/randommer-api"),
|
|
155
|
+
("Random Facts", "Random Facts API", "Content", "https://fungenerators.com/api/facts/"),
|
|
156
|
+
("Today in History", "Daily historical events, births and deaths API", "Content", "https://history.muffinlabs.com/"),
|
|
157
|
+
|
|
158
|
+
# Currency
|
|
159
|
+
("Currency-api", "Free Currency Exchange Rates API with 150+ Currencies", "Currency", "https://github.com/fawazahmed0/currency-api#readme"),
|
|
160
|
+
("Frankfurter", "Exchange rates and currency data API", "Currency", "https://www.frankfurter.app/docs/"),
|
|
161
|
+
|
|
162
|
+
# Design
|
|
163
|
+
("Dribbble", "Discover the world's top designers & creatives", "Design", "http://developer.dribbble.com/"),
|
|
164
|
+
("Icon Horse", "Get favicon logo for any web address", "Design", "https://icon.horse/usage"),
|
|
165
|
+
("Pexels", "High quality and completely free stock photos", "Design", "https://www.pexels.com/api/"),
|
|
166
|
+
("PHP-Noise", "Noise background image generator api", "Design", "https://php-noise.com/"),
|
|
167
|
+
|
|
168
|
+
# Dictionary
|
|
169
|
+
("Agarathi", "Tamil language Dictionary API", "Dictionary", "https://agarathi.com/api/dictionary"),
|
|
170
|
+
("Cambridge Dictionaries", "Access to Cambridge's custom-developed API", "Dictionary", "http://dictionary.cambridge.org/license.html"),
|
|
171
|
+
("Datamuse API", "Word-finding query engine", "Dictionary", "https://www.datamuse.com/api/"),
|
|
172
|
+
("Free Dictionary API", "Get word definitions for free", "Dictionary", "https://dictionaryapi.dev/"),
|
|
173
|
+
("Lingua Robot API", "Definition of words, pronunciations, synonyms", "Dictionary", "https://www.linguarobot.io/"),
|
|
174
|
+
("Oxford Dictionary API", "Access to Oxford Dictionary services", "Dictionary", "https://developer.oxforddictionaries.com/"),
|
|
175
|
+
("Wordnik", "Dictionary functions", "Dictionary", "http://developer.wordnik.com/docs.html#!/word"),
|
|
176
|
+
("Words API", "Definitions for more than 150,000 words", "Dictionary", "https://www.wordsapi.com/"),
|
|
177
|
+
|
|
178
|
+
# Entertainment
|
|
179
|
+
("AniList", "Anime discovery & tracking GraphQL API", "Entertainment", "https://github.com/AniList/ApiV2-GraphQL-Docs"),
|
|
180
|
+
("Bob's Burgers API", "Data for Bob's Burgers characters, episodes", "Entertainment", "https://www.bobsburgersapi.com/documentation"),
|
|
181
|
+
("Breaking Bad API", "Get data about characters, episodes, quotes", "Entertainment", "https://breakingbadapi.com/documentation"),
|
|
182
|
+
("Cat as a Service", "REST API to spread peace and love with cats", "Entertainment", "https://cataas.com/#/"),
|
|
183
|
+
("Comic Vine", "Extremely mature comic information resource", "Entertainment", "http://comicvine.gamespot.com/api/"),
|
|
184
|
+
("Danbooru", "Get images categorized by tags", "Entertainment", "https://danbooru.donmai.us/posts?tags=help%3Aapi"),
|
|
185
|
+
("Dune API", "Book, character, movie and quotes JSON data", "Entertainment", "https://github.com/ywalia01/dune-api"),
|
|
186
|
+
("Final Space API", "Information and images about Final Space", "Entertainment", "https://finalspaceapi.com/docs/"),
|
|
187
|
+
("Fun Translations API", "Translate to over 50+ languages from TV Series", "Entertainment", "https://funtranslations.com/api/"),
|
|
188
|
+
("Jandapress API", "A doujinshi API with gather in mind", "Entertainment", "https://github.com/sinkaroid/jandapress"),
|
|
189
|
+
("Lord of the Rings API", "Data about books, movies, characters, quotes", "Entertainment", "https://the-one-api.dev/documentation"),
|
|
190
|
+
("Marvel", "Access over 70 years of comic data", "Entertainment", "https://developer.marvel.com/"),
|
|
191
|
+
("My Anime List API (Jikan)", "Data about any specific anime", "Entertainment", "https://jikan.moe/"),
|
|
192
|
+
("Nick Cannon Baby API", "JSON API for entertainer Nick Cannon's children", "Entertainment", "https://nick-cannon-baby-api.onrender.com/"),
|
|
193
|
+
("Owen Wilson Wow API", "JSON API for Owen Wilson's wow exclamations", "Entertainment", "https://owen-wilson-wow-api.onrender.com/"),
|
|
194
|
+
("Pokéapi", "All the Pokémon data you'll ever need", "Entertainment", "https://pokeapi.co/"),
|
|
195
|
+
("Rick and Morty", "All Rick and Morty information, including images", "Entertainment", "https://rickandmortyapi.com/"),
|
|
196
|
+
("Riddles API", "An API to get random riddles", "Entertainment", "https://riddles-api.vercel.app/"),
|
|
197
|
+
("Star Trek API (STAPI)", "Star Trek data API", "Entertainment", "https://stapi.co/api-documentation"),
|
|
198
|
+
("Star Wars API (SWAPI)", "All things Star Wars", "Entertainment", "https://www.swapi.tech/"),
|
|
199
|
+
("Studio Ghibli", "Resources from Studio Ghibli films", "Entertainment", "https://ghibliapi.vercel.app/"),
|
|
200
|
+
("TCGdex", "Multilanguage Pokémon TCG Database", "Entertainment", "https://www.tcgdex.dev/"),
|
|
201
|
+
|
|
202
|
+
# Events
|
|
203
|
+
("Picatic", "Sell tickets directly from your app or website", "Events", "http://developer.picatic.com/?utm_medium=web"),
|
|
204
|
+
|
|
205
|
+
# Face Recognition
|
|
206
|
+
("Kairos", "Face recognition, emotion analysis", "Face Recognition", "https://www.kairos.com/"),
|
|
207
|
+
("Skybiometry", "Face detection, emotional analysis", "Face Recognition", "https://www.skybiometry.com"),
|
|
208
|
+
|
|
209
|
+
# File Storage
|
|
210
|
+
("Amazon S3", "API that provides access to stored files", "File Storage", "https://aws.amazon.com/de/documentation/s3/"),
|
|
211
|
+
("Cloudinary", "Image and video storage and manipulation", "File Storage", "http://cloudinary.com/documentation"),
|
|
212
|
+
("DigitalOcean Spaces", "Easy access to store and receive files", "File Storage", "https://www.digitalocean.com/products/spaces"),
|
|
213
|
+
("Filestack", "APIs for image and file manipulation", "File Storage", "https://filestack.com/docs/"),
|
|
214
|
+
("Microsoft Graph OneDrive", "Access stored files and photos", "File Storage", "https://graph.microsoft.io/en-us/docs/api-reference/v1.0/resources/onedrive"),
|
|
215
|
+
("PDF Blocks", "API for working with PDF documents", "File Storage", "https://www.pdfblocks.com/docs/api/getting-started"),
|
|
216
|
+
("SignNow API", "Embed branded eSignature workflows", "File Storage", "https://docs.signnow.com/docs/signnow/welcome"),
|
|
217
|
+
("Smash", "Upload large files on websites, mobile apps", "File Storage", "https://api.fromsmash.com/"),
|
|
218
|
+
("Vector Express", "API for converting, processing vector files", "File Storage", "https://github.com/smidyo/vectorexpress-api"),
|
|
219
|
+
("Vertopal", "Convert files to various formats", "File Storage", "https://www.vertopal.com/en/developer/api/introduction"),
|
|
220
|
+
|
|
221
|
+
# Finance additions
|
|
222
|
+
("Alpha Vantage", "Y Combinator backed API for stock data", "Finance", "https://www.alphavantage.co/"),
|
|
223
|
+
("Atom Finance", "Market, earnings and news data", "Finance", "https://docs.atom.finance/"),
|
|
224
|
+
("IEX", "Free Stocks and Market Data", "Finance", "https://iextrading.com/developer/"),
|
|
225
|
+
("Twelve Data", "Stock market data (real-time & historical)", "Finance", "https://twelvedata.com/docs/"),
|
|
226
|
+
("Exchange Rates", "Foreign exchange rates and currency conversion", "Finance", "https://exchangeratesapi.io/"),
|
|
227
|
+
("IBANAPI", "Validate IBAN number & get bank account from it", "Finance", "https://ibanapi.com/get-api"),
|
|
228
|
+
("Portfolio Optimizer", "Portfolio analysis and optimization", "Finance", "https://portfoliooptimizer.io/"),
|
|
229
|
+
|
|
230
|
+
# Fitness
|
|
231
|
+
("FitBit", "Access data from Fitbit activity trackers", "Fitness", "https://dev.fitbit.com/build/reference/"),
|
|
232
|
+
("HealthGraph", "RunKeeper's HealthGraph API", "Fitness", "https://runkeeper.com/developer/healthgraph/registration-authorization"),
|
|
233
|
+
("Open Food Facts", "Database of food products", "Fitness", "https://en.wiki.openfoodfacts.org/API"),
|
|
234
|
+
("Strava", "API for accessing athlete and activity data", "Fitness", "https://strava.github.io/api/"),
|
|
235
|
+
("VeganCheck", "Information about food based on EAN/UPC code", "Fitness", "https://jokenetwork.de/vegancheck-api"),
|
|
236
|
+
("Withings", "Access to data from Withings activity trackers", "Fitness", "http://oauth.withings.com/api"),
|
|
237
|
+
|
|
238
|
+
# Google APIs
|
|
239
|
+
("Gmail API", "The Gmail REST API", "Google", "https://developers.google.com/gmail/api/?hl=en"),
|
|
240
|
+
("Google BigQuery API", "Data platform for create, manage, query data", "Google", "https://cloud.google.com/bigquery/docs/reference/rest/v2/"),
|
|
241
|
+
("Google Books API", "Search for books and manage library", "Google", "https://developers.google.com/books/"),
|
|
242
|
+
("Google Calendar API", "Manipulate events and calendar data", "Google", "https://developers.google.com/google-apps/calendar/?hl=en"),
|
|
243
|
+
("Google Classroom API", "Google Classroom API", "Google", "https://developers.google.com/classroom/?hl=en"),
|
|
244
|
+
("Google CustomSearch API", "Search over a website or collection", "Google", "https://developers.google.com/custom-search/json-api/v1/overview"),
|
|
245
|
+
("Google Drive API", "Interact with Google Drive", "Google", "https://developers.google.com/drive/v2/reference/"),
|
|
246
|
+
("Google Fitness API", "The Fit API", "Google", "https://developers.google.com/fit/?hl=en"),
|
|
247
|
+
("Google Fonts API", "Add fonts to any web page", "Google", "https://developers.google.com/fonts/?hl=en"),
|
|
248
|
+
("Google Genomics API", "Access to Genomics data", "Google", "https://cloud.google.com/genomics/reference/rest/"),
|
|
249
|
+
("Google Monitoring API", "Access Google Cloud monitoring data", "Google", "https://cloud.google.com/monitoring/api/v3/"),
|
|
250
|
+
|
|
251
|
+
# Identity Verification
|
|
252
|
+
("BlockScore", "Real-time identity verification API", "Identity", "https://docs.blockscore.com/"),
|
|
253
|
+
("Cognito", "Powerful identity verification API", "Identity", "https://cognitohq.com/docs"),
|
|
254
|
+
("Whitepages Pro", "Global Identity Verification API", "Identity", "https://pro.whitepages.com/"),
|
|
255
|
+
|
|
256
|
+
# Image Moderation
|
|
257
|
+
("WebPurify", "Live image moderation by humans", "Image Moderation", "https://www.webpurify.com/image-moderation/"),
|
|
258
|
+
|
|
259
|
+
# IoT
|
|
260
|
+
("Ably", "API for cross-protocol real time communication", "IoT", "https://www.ably.com/documentation"),
|
|
261
|
+
("Particle", "API to manage Particle devices", "IoT", "https://docs.particle.io/reference/api/"),
|
|
262
|
+
("PubNub", "API to make real time applications", "IoT", "https://www.pubnub.com/docs"),
|
|
263
|
+
("Philips Hue", "Control Hue brand lights", "IoT", "https://developers.meethue.com/documentation/getting-started"),
|
|
264
|
+
("SmartThings", "API for Samsung SmartThings", "IoT", "http://developer.smartthings.com/"),
|
|
265
|
+
("Temboo SDK", "Code snippets to trigger complex processes", "IoT", "https://temboo.com/download"),
|
|
266
|
+
("ThingSpeak", "Internet of Things application and API", "IoT", "https://github.com/iobridge/ThingSpeak"),
|
|
267
|
+
("Xively", "Free libraries to connect hardware to cloud", "IoT", "https://developer.xively.com/reference"),
|
|
268
|
+
("Zetta", "Open source platform for creating IoT servers", "IoT", "https://github.com/zettajs/zetta/wiki"),
|
|
269
|
+
|
|
270
|
+
# Legal
|
|
271
|
+
("GitHub Licenses API", "Get license information", "Legal", "https://developer.github.com/v3/licenses/"),
|
|
272
|
+
("ToSDR API", "Terms of Service; Didn't Read", "Legal", "https://tosdr.org/api.html"),
|
|
273
|
+
|
|
274
|
+
# Login/Auth
|
|
275
|
+
("Auth0", "Authenticate and authorize apps and APIs", "Authentication", "https://auth0.com"),
|
|
276
|
+
("Facebook Login", "Secure, fast, convenient login", "Authentication", "https://developers.facebook.com/docs/facebook-login"),
|
|
277
|
+
("Firebase", "Authentication, analytics, cloud messaging", "Authentication", "https://firebase.google.com/docs/reference/"),
|
|
278
|
+
("GitHub Authentication", "GitHub's Authentication API", "Authentication", "https://developer.github.com/guides/basics-of-authentication/"),
|
|
279
|
+
("LinkedIn Sign-in", "Sign in with professional identity", "Authentication", "https://developer.linkedin.com/docs/signin-with-linkedin"),
|
|
280
|
+
("PayPal Login", "Sign in with PayPal credentials", "Authentication", "https://developer.paypal.com/docs/integration/direct/identity/log-in-with-paypal/"),
|
|
281
|
+
("Salesforce Auth", "OAuth protocol for secure access", "Authentication", "https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_understanding_authentication.htm"),
|
|
282
|
+
("WorkOS", "Support Single Sign-On for Enterprise", "Authentication", "https://workos.com/docs"),
|
|
283
|
+
|
|
284
|
+
# Machine Learning
|
|
285
|
+
("Amazon ML API", "Simplifies process of making predictions", "Machine Learning", "http://docs.aws.amazon.com/machine-learning/latest/APIReference/Welcome.html"),
|
|
286
|
+
("AYLIEN", "NLP, Information Retrieval and ML tools", "Machine Learning", "http://aylien.com/"),
|
|
287
|
+
("Big ML", "Machine learning API focusing on decision trees", "Machine Learning", "http://bigml.com/api/"),
|
|
288
|
+
("Cloud Machine Learning Engine", "Cloud-based ML platform", "Machine Learning", "https://cloud.google.com/ml-engine/docs/"),
|
|
289
|
+
("Microsoft Azure ML", "Helps publish ML models in minutes", "Machine Learning", "https://azure.microsoft.com/en-us/services/cognitive-services/"),
|
|
290
|
+
("ObjectCut", "Automatic background removal service by AI", "Machine Learning", "https://objectcut.com"),
|
|
291
|
+
("OVHcloud AI Endpoints", "Simplify GenAI & ML integration", "Machine Learning", "https://endpoints.ai.cloud.ovh.net/"),
|
|
292
|
+
("Unplugg", "Automated Forecasting API for timeseries", "Machine Learning", "http://unplu.gg/test_api.html"),
|
|
293
|
+
|
|
294
|
+
# Maps
|
|
295
|
+
("Amazon Maps API", "Add interactive 3D maps to Fire apps", "Maps", "https://developer.amazon.com/maps"),
|
|
296
|
+
("CartoDB", "Generate maps based on CartoDB data", "Maps", "https://carto.com/developers/#apis"),
|
|
297
|
+
("Daum Maps API", "Multiple APIs for Korean maps", "Maps", "http://apis.map.daum.net/"),
|
|
298
|
+
("HERE Maps API", "Wide range of map APIs", "Maps", "https://developer.here.com/"),
|
|
299
|
+
("Leaflet.js", "Open-source JavaScript library for maps", "Maps", "http://leafletjs.com/"),
|
|
300
|
+
("Mapbox", "Access to MapBox's API", "Maps", "https://www.mapbox.com/developers/api/maps/"),
|
|
301
|
+
("Open Street Map", "API access to OSM", "Maps", "http://wiki.openstreetmap.org/wiki/API"),
|
|
302
|
+
("Scribble", "Cross browser, mobile ready map builder", "Maps", "https://www.scribblemaps.com/api/"),
|
|
303
|
+
("Yahoo Maps", "Embed rich and interactive maps", "Maps", "https://developer.yahoo.com/maps/"),
|
|
304
|
+
("Yandex", "API for Yandex.Maps", "Maps", "https://tech.yandex.com/maps/"),
|
|
305
|
+
|
|
306
|
+
# Math
|
|
307
|
+
("Newton", "API for Arithmetic and Symbolic Math", "Math", "https://newton.now.sh/"),
|
|
308
|
+
|
|
309
|
+
# Medical
|
|
310
|
+
("COVID-19 Data", "Get live and historical Coronavirus data", "Medical", "https://github.com/M-Media-Group/Covid-19-API"),
|
|
311
|
+
("Infermedica", "AI-based engine for patient triage", "Medical", "https://developer.infermedica.com/docs/introduction"),
|
|
312
|
+
|
|
313
|
+
# Miscellaneous
|
|
314
|
+
("qKast Channel Content", "Access live content collections", "Content", "https://github.com/egfx/qKast"),
|
|
315
|
+
("SLF", "German city, country, river database", "Open Data", "https://github.com/slftool/slftool.github.io/blob/master/API.md"),
|
|
316
|
+
("Wikipedia", "Free multilingual Encyclopedia", "Open Data", "https://en.wikipedia.org/w/api.php"),
|
|
317
|
+
|
|
318
|
+
# Movies
|
|
319
|
+
("TMDb", "The Movie Database API", "Movies", "https://developers.themoviedb.org/3"),
|
|
320
|
+
("OMDb", "Open Movie Database API", "Movies", "http://www.omdbapi.com/"),
|
|
321
|
+
("MovieGlu", "Cinema information", "Movies", "https://www.movieglu.com/"),
|
|
322
|
+
|
|
323
|
+
# Music
|
|
324
|
+
("Spotify", "Spotify Web API", "Music", "https://developer.spotify.com/documentation/web-api/"),
|
|
325
|
+
("Deezer", "Music streaming API", "Music", "https://developers.deezer.com/api"),
|
|
326
|
+
("SoundCloud", "SoundCloud API", "Music", "https://developers.soundcloud.com/docs/api/guide"),
|
|
327
|
+
("Last.fm", "Music recommendations and scrobbling", "Music", "https://www.last.fm/api"),
|
|
328
|
+
("Musixmatch", "Lyrics API", "Music", "https://developer.musixmatch.com/"),
|
|
329
|
+
("Genius", "Song lyrics and annotations", "Music", "https://docs.genius.com/"),
|
|
330
|
+
|
|
331
|
+
# Natural Language Processing
|
|
332
|
+
("Wit.ai", "Natural language processing", "NLP", "https://wit.ai/"),
|
|
333
|
+
("TextRazor", "Text analysis API", "NLP", "https://www.textrazor.com/docs"),
|
|
334
|
+
("Aylien Text Analysis", "NLP and text analysis", "NLP", "https://aylien.com/text-api/"),
|
|
335
|
+
("MonkeyLearn", "Machine learning text analysis", "NLP", "https://monkeylearn.com/api/"),
|
|
336
|
+
|
|
337
|
+
# News
|
|
338
|
+
("News API", "Headlines and articles from news sources", "News", "https://newsapi.org/"),
|
|
339
|
+
("GNews", "Search for articles from various sources", "News", "https://gnews.io/"),
|
|
340
|
+
("Currents API", "Latest news", "News", "https://currentsapi.services/en"),
|
|
341
|
+
("MediaStack", "Real-time worldwide news data", "News", "https://mediastack.com/"),
|
|
342
|
+
|
|
343
|
+
# Placeholder Images
|
|
344
|
+
("Lorem Picsum", "Random images for developers", "Images", "https://picsum.photos/"),
|
|
345
|
+
("Unsplash API", "Beautiful free images", "Images", "https://unsplash.com/developers"),
|
|
346
|
+
("Lorem Space", "Placeholder images from popular TV shows", "Images", "https://lorem.space/api"),
|
|
347
|
+
("DiceBear", "Avatar generator", "Images", "https://avatars.dicebear.com/"),
|
|
348
|
+
|
|
349
|
+
# Product
|
|
350
|
+
("UPC Database", "Product barcode database", "Product", "https://www.upcdatabase.com/api.asp"),
|
|
351
|
+
("Barcode Lookup", "Barcode and product data", "Product", "https://www.barcodelookup.com/api"),
|
|
352
|
+
|
|
353
|
+
# Quotes
|
|
354
|
+
("Quotable", "Random quotes API", "Quotes", "https://github.com/lukePeavey/quotable"),
|
|
355
|
+
("ZenQuotes", "Random inspirational quotes", "Quotes", "https://zenquotes.io/"),
|
|
356
|
+
("FavQs", "Quotes API", "Quotes", "https://favqs.com/api"),
|
|
357
|
+
("TheySaidSo", "Famous quotes API", "Quotes", "https://theysaidso.com/api/"),
|
|
358
|
+
|
|
359
|
+
# Science
|
|
360
|
+
("NASA", "NASA open data", "Science", "https://api.nasa.gov/"),
|
|
361
|
+
("SpaceX", "SpaceX API", "Science", "https://github.com/r-spacex/SpaceX-API"),
|
|
362
|
+
("Open Notify", "ISS location and astronauts in space", "Science", "http://open-notify.org/"),
|
|
363
|
+
("Launch Library 2", "Space launches", "Science", "https://thespacedevs.com/llapi"),
|
|
364
|
+
("USGS Earthquake Hazards", "Real-time earthquake data", "Science", "https://earthquake.usgs.gov/fdsnws/event/1/"),
|
|
365
|
+
("arXiv", "Open access research papers", "Science", "https://arxiv.org/help/api/"),
|
|
366
|
+
("PubChem", "Open chemistry database", "Science", "https://pubchemdocs.ncbi.nlm.nih.gov/pug-rest"),
|
|
367
|
+
|
|
368
|
+
# Screenshots
|
|
369
|
+
("APIFlash", "Chrome based screenshot API", "Screenshots", "https://apiflash.com/"),
|
|
370
|
+
("Browshot", "Easy screenshots of web pages", "Screenshots", "https://browshot.com/api/documentation"),
|
|
371
|
+
("ScreenshotAPI", "Create screenshots of web pages", "Screenshots", "https://screenshotapi.net/"),
|
|
372
|
+
|
|
373
|
+
# Security
|
|
374
|
+
("Have I Been Pwned", "Data breaches", "Security", "https://haveibeenpwned.com/API/v3"),
|
|
375
|
+
("SecurityTrails", "Domain and DNS data", "Security", "https://securitytrails.com/corp/api"),
|
|
376
|
+
("Shodan", "Search engine for internet-connected devices", "Security", "https://developer.shodan.io/"),
|
|
377
|
+
("VirusTotal", "File and URL analysis", "Security", "https://developers.virustotal.com/reference"),
|
|
378
|
+
("URLScan", "Scan and analyze URLs", "Security", "https://urlscan.io/about-api/"),
|
|
379
|
+
|
|
380
|
+
# Shopping
|
|
381
|
+
("eBay", "eBay API", "Shopping", "https://developer.ebay.com/"),
|
|
382
|
+
("Amazon Product Advertising", "Product data from Amazon", "Shopping", "https://webservices.amazon.com/paapi5/documentation/"),
|
|
383
|
+
("Etsy", "Etsy API", "Shopping", "https://www.etsy.com/developers/documentation"),
|
|
384
|
+
("WooCommerce", "WooCommerce REST API", "Shopping", "https://woocommerce.github.io/woocommerce-rest-api-docs/"),
|
|
385
|
+
("Shopify", "Shopify API", "Shopping", "https://shopify.dev/api"),
|
|
386
|
+
|
|
387
|
+
# Social
|
|
388
|
+
("Twitter API", "Twitter API v2", "Social", "https://developer.twitter.com/en/docs/twitter-api"),
|
|
389
|
+
("Facebook Graph", "Facebook Graph API", "Social", "https://developers.facebook.com/docs/graph-api/"),
|
|
390
|
+
("Instagram Graph", "Instagram Graph API", "Social", "https://developers.facebook.com/docs/instagram-api/"),
|
|
391
|
+
("LinkedIn API", "LinkedIn API", "Social", "https://docs.microsoft.com/en-us/linkedin/"),
|
|
392
|
+
("Reddit API", "Reddit API", "Social", "https://www.reddit.com/dev/api/"),
|
|
393
|
+
("Tumblr API", "Tumblr API", "Social", "https://www.tumblr.com/docs/en/api/v2"),
|
|
394
|
+
("Pinterest API", "Pinterest API", "Social", "https://developers.pinterest.com/docs/getting-started/introduction/"),
|
|
395
|
+
("TikTok API", "TikTok for Developers", "Social", "https://developers.tiktok.com/"),
|
|
396
|
+
("Discord API", "Discord API", "Social", "https://discord.com/developers/docs/intro"),
|
|
397
|
+
("Slack API", "Slack API", "Social", "https://api.slack.com/"),
|
|
398
|
+
("Telegram Bot API", "Telegram Bot API", "Social", "https://core.telegram.org/bots/api"),
|
|
399
|
+
("WhatsApp Business", "WhatsApp Business API", "Social", "https://developers.facebook.com/docs/whatsapp/"),
|
|
400
|
+
|
|
401
|
+
# Sports
|
|
402
|
+
("ESPN", "ESPN API", "Sports", "https://www.espn.com/apis/devcenter/docs/"),
|
|
403
|
+
("SportRadar", "Sports data", "Sports", "https://developer.sportradar.com/"),
|
|
404
|
+
("Football-Data", "Football data API", "Sports", "https://www.football-data.org/"),
|
|
405
|
+
("API-Football", "Football API", "Sports", "https://www.api-football.com/"),
|
|
406
|
+
("NBA API", "NBA statistics", "Sports", "https://github.com/swar/nba_api"),
|
|
407
|
+
("MLB Data", "MLB statistics", "Sports", "https://statsapi.mlb.com/docs"),
|
|
408
|
+
("TheSportsDB", "Sports database", "Sports", "https://www.thesportsdb.com/api.php"),
|
|
409
|
+
|
|
410
|
+
# Test Data
|
|
411
|
+
("Faker", "Generate fake data", "Test Data", "https://fakerapi.it/en"),
|
|
412
|
+
("Random User", "Random user generator", "Test Data", "https://randomuser.me/"),
|
|
413
|
+
("JSONPlaceholder", "Fake online REST API", "Test Data", "https://jsonplaceholder.typicode.com/"),
|
|
414
|
+
("Mockaroo", "Realistic test data", "Test Data", "https://mockaroo.com/api/docs"),
|
|
415
|
+
("UUID Generator", "Generate UUIDs", "Test Data", "https://www.uuidtools.com/api"),
|
|
416
|
+
|
|
417
|
+
# Transportation
|
|
418
|
+
("OpenSky", "Aircraft tracking", "Transportation", "https://opensky-network.org/apidoc/"),
|
|
419
|
+
("FlightAware", "Flight tracking", "Transportation", "https://flightaware.com/commercial/flightxml/"),
|
|
420
|
+
("Rome2Rio", "Travel routes", "Transportation", "https://www.rome2rio.com/documentation/"),
|
|
421
|
+
("Google Maps Directions", "Directions API", "Transportation", "https://developers.google.com/maps/documentation/directions/overview"),
|
|
422
|
+
("HERE Routing", "Routing API", "Transportation", "https://developer.here.com/documentation/routing-api/dev_guide/index.html"),
|
|
423
|
+
("OpenRouteService", "Open source routing", "Transportation", "https://openrouteservice.org/dev/#/api-docs"),
|
|
424
|
+
|
|
425
|
+
# URL Shorteners
|
|
426
|
+
("Bitly", "URL shortener", "URL Shorteners", "https://dev.bitly.com/"),
|
|
427
|
+
("TinyURL", "URL shortener", "URL Shorteners", "https://tinyurl.com/app/dev"),
|
|
428
|
+
("Rebrandly", "Custom URL shortener", "URL Shorteners", "https://developers.rebrandly.com/"),
|
|
429
|
+
("Short.io", "URL shortener API", "URL Shorteners", "https://developers.short.io/"),
|
|
430
|
+
|
|
431
|
+
# Video
|
|
432
|
+
("YouTube Data", "YouTube Data API", "Video", "https://developers.google.com/youtube/v3"),
|
|
433
|
+
("Vimeo", "Vimeo API", "Video", "https://developer.vimeo.com/"),
|
|
434
|
+
("Dailymotion", "Dailymotion API", "Video", "https://developer.dailymotion.com/api"),
|
|
435
|
+
("Twitch", "Twitch API", "Video", "https://dev.twitch.tv/docs/api/"),
|
|
436
|
+
("JW Player", "Video hosting", "Video", "https://developer.jwplayer.com/"),
|
|
437
|
+
|
|
438
|
+
# Weather
|
|
439
|
+
("OpenWeatherMap", "Weather data", "Weather", "https://openweathermap.org/api"),
|
|
440
|
+
("Weather API", "Weather data", "Weather", "https://www.weatherapi.com/"),
|
|
441
|
+
("Visual Crossing", "Historical and forecast weather", "Weather", "https://www.visualcrossing.com/weather-api"),
|
|
442
|
+
("Tomorrow.io", "Weather API", "Weather", "https://www.tomorrow.io/weather-api/"),
|
|
443
|
+
("NOAA", "US weather data", "Weather", "https://www.weather.gov/documentation/services-web-api"),
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
for name, desc, category, link in new_apis:
|
|
447
|
+
if add_api(name, desc, category, link):
|
|
448
|
+
added += 1
|
|
449
|
+
|
|
450
|
+
# Update metadata
|
|
451
|
+
registry['count'] = len(registry['apis'])
|
|
452
|
+
registry['lastUpdated'] = '2026-02-22'
|
|
453
|
+
|
|
454
|
+
# Write back
|
|
455
|
+
with open(registry_path, 'w') as f:
|
|
456
|
+
json.dump(registry, f, indent=2)
|
|
457
|
+
|
|
458
|
+
print(f"✅ APIClaw GitHub Expansion Complete")
|
|
459
|
+
print(f" Added: {added} new APIs")
|
|
460
|
+
print(f" Total: {registry['count']} APIs")
|