@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.
Files changed (43) hide show
  1. package/STATUS.md +1 -1
  2. package/dist/credentials.d.ts.map +1 -1
  3. package/dist/credentials.js +26 -0
  4. package/dist/credentials.js.map +1 -1
  5. package/dist/execute.d.ts.map +1 -1
  6. package/dist/execute.js +162 -0
  7. package/dist/execute.js.map +1 -1
  8. package/dist/index.js +2 -1
  9. package/dist/index.js.map +1 -1
  10. package/dist/proxy.d.ts.map +1 -1
  11. package/dist/proxy.js +1 -1
  12. package/dist/proxy.js.map +1 -1
  13. package/dist/registry/apis.json +1 -116054
  14. package/landing/src/app/docs/page.tsx +300 -0
  15. package/landing/src/app/page.tsx +1 -1
  16. package/landing/src/lib/apis.json +1 -116054
  17. package/landing/src/lib/stats.json +4 -4
  18. package/package.json +1 -1
  19. package/scripts/add-public-apis.py +625 -0
  20. package/scripts/apisguru-data.json +158837 -0
  21. package/scripts/bonus-batch.py +250 -0
  22. package/scripts/bulk-add-apisguru.js +122 -0
  23. package/scripts/expand-2026-batch.py +335 -0
  24. package/scripts/expand-from-github.py +460 -0
  25. package/scripts/expand-n4ze3m.py +198 -0
  26. package/scripts/expand-niche-batch.py +269 -0
  27. package/scripts/expand-nordic-niche.py +189 -0
  28. package/scripts/expand-tonnyL.py +343 -0
  29. package/scripts/final-batch.py +315 -0
  30. package/scripts/final-push-06.py +242 -0
  31. package/scripts/mega-expansion.py +495 -0
  32. package/scripts/mega-final-06.py +512 -0
  33. package/scripts/more-apis.py +353 -0
  34. package/scripts/night-batch-05.py +546 -0
  35. package/scripts/night-batch-05b.py +427 -0
  36. package/scripts/night-expansion-06.py +325 -0
  37. package/scripts/night-expansion.py +441 -0
  38. package/scripts/super-final-06.py +341 -0
  39. package/src/credentials.ts +28 -0
  40. package/src/execute.ts +193 -0
  41. package/src/index.ts +2 -1
  42. package/src/proxy.ts +1 -1
  43. package/src/registry/apis.json +1 -116054
@@ -0,0 +1,189 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ APIClaw Expansion: Nordic APIs + Niche/Hard-to-find APIs
4
+ """
5
+ import json
6
+ import re
7
+ from pathlib import Path
8
+
9
+ registry_path = Path(__file__).parent.parent / 'src/registry/apis.json'
10
+
11
+ with open(registry_path) as f:
12
+ registry = json.load(f)
13
+
14
+ existing_ids = {a['id'].lower() for a in registry['apis']}
15
+ existing_links = {a.get('link', '').lower().rstrip('/') for a in registry['apis']}
16
+ existing_names = {a['name'].lower() for a in registry['apis']}
17
+
18
+ def make_id(name):
19
+ slug = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
20
+ return slug[:50] if len(slug) > 50 else slug
21
+
22
+ def add_api(name, desc, category, link, auth='None', https=True, cors='unknown'):
23
+ api_id = make_id(name)
24
+ if api_id in existing_ids: return False
25
+ if link.lower().rstrip('/') in existing_links: return False
26
+ if name.lower() in existing_names: return False
27
+
28
+ keywords = [category.lower()]
29
+ if any(k in desc.lower() for k in ['sweden', 'swedish', 'nordic', 'denmark', 'norway', 'finland']):
30
+ keywords.append('nordic')
31
+
32
+ registry['apis'].append({
33
+ 'id': api_id,
34
+ 'name': name,
35
+ 'description': desc[:500],
36
+ 'category': category,
37
+ 'auth': auth,
38
+ 'https': https,
39
+ 'cors': cors,
40
+ 'link': link,
41
+ 'pricing': 'unknown',
42
+ 'keywords': list(set(keywords)),
43
+ 'source': 'nordic-niche'
44
+ })
45
+ existing_ids.add(api_id)
46
+ existing_links.add(link.lower().rstrip('/'))
47
+ existing_names.add(name.lower())
48
+ return True
49
+
50
+ added = 0
51
+
52
+ # Swedish APIs
53
+ swedish_apis = [
54
+ ("Bankgirot", "Swedish payment clearing system API", "Finance", "https://www.bankgirot.se/tjanster-produkter/api/"),
55
+ ("Plusgiro", "Swedish postal giro payment system", "Finance", "https://www.plusgirot.se/"),
56
+ ("Swish Merchant", "Swedish instant mobile payments for businesses", "Finance", "https://developer.swish.nu/"),
57
+ ("Zettle", "Point of sale and payments (PayPal owned)", "Finance", "https://developer.zettle.com/"),
58
+ ("Bokio", "Swedish accounting software API", "Finance", "https://www.bokio.se/integrations/"),
59
+ ("Fortnox", "Swedish business software API", "Business", "https://developer.fortnox.se/"),
60
+ ("Visma", "Nordic business software suite APIs", "Business", "https://developer.visma.com/"),
61
+ ("PE Accounting", "Swedish accounting API", "Finance", "https://docs.accounting.pe/"),
62
+ ("Trafikverket Open API", "Swedish transport administration data", "Transportation", "https://api.trafikinfo.trafikverket.se/"),
63
+ ("SL API", "Stockholm public transport realtime data", "Transportation", "https://www.trafiklab.se/api/sl-realtidsinformation-4"),
64
+ ("Resrobot", "Swedish public transport journey planner", "Transportation", "https://www.trafiklab.se/api/resrobot-reseplanerare"),
65
+ ("GTFS Regional", "Swedish regional GTFS transport data", "Transportation", "https://www.trafiklab.se/api/gtfs-regional"),
66
+ ("Samtrafiken", "Swedish public transport data hub", "Transportation", "https://www.samtrafiken.se/"),
67
+ ("SCB", "Statistics Sweden open data API", "Data", "https://www.scb.se/vara-tjanster/oppna-data/"),
68
+ ("SMHI Open Data", "Swedish meteorological and hydrological data", "Weather", "https://opendata.smhi.se/apidocs/"),
69
+ ("Lantmäteriet", "Swedish mapping and cadastral data", "Maps", "https://www.lantmateriet.se/sv/Om-Lantmateriet/Oppna-data/"),
70
+ ("Skatteverket", "Swedish tax authority APIs", "Government", "https://skatteverket.se/foretag/etjanster/"),
71
+ ("Bolagsverket", "Swedish companies registration office", "Business", "https://bolagsverket.se/apiary/"),
72
+ ("PRV", "Swedish Patent and Registration Office", "Business", "https://www.prv.se/sv/"),
73
+ ("Riksarkivet", "Swedish National Archives API", "Data", "https://riksarkivet.se/oppna-data"),
74
+ ("Swedish Parliament", "Riksdagen open data", "Government", "https://data.riksdagen.se/"),
75
+ ("1177 Vårdguiden", "Swedish healthcare guide data", "Health", "https://www.1177.se/"),
76
+ ("FASS", "Swedish pharmaceutical database", "Health", "https://www.fass.se/LIF/developer"),
77
+ ("Apoteket", "Swedish pharmacy chain APIs", "Health", "https://www.apoteket.se/"),
78
+ ("Postnord", "Nordic postal service tracking and shipping", "Logistics", "https://developer.postnord.com/"),
79
+ ("DHL Sweden", "DHL shipping for Sweden", "Logistics", "https://developer.dhl.com/"),
80
+ ("Budbee", "Swedish last-mile delivery API", "Logistics", "https://developer.budbee.com/"),
81
+ ("Instabox", "Nordic parcel locker network", "Logistics", "https://www.instabox.se/"),
82
+ ("Kivra", "Swedish digital mailbox API", "Communication", "https://www.kivra.se/"),
83
+ ("Billogram", "Swedish invoicing platform", "Finance", "https://billogram.com/api/"),
84
+ ("Payson", "Swedish payment provider", "Finance", "https://developers.payson.se/"),
85
+ ("DIBS", "Nordic payment solutions (Nets owned)", "Finance", "https://tech.dibspayment.com/"),
86
+ ("Bambora", "Nordic payment processing", "Finance", "https://developer.bambora.com/"),
87
+ ("Collector Bank", "Swedish consumer finance API", "Finance", "https://developer.collectorbank.se/"),
88
+ ("Walley", "Swedish buy now pay later", "Finance", "https://docs.walley.se/"),
89
+ ("Svea", "Swedish financial services API", "Finance", "https://www.svea.com/se/sv/foretag/integrationer/"),
90
+
91
+ # Norwegian APIs
92
+ ("Vipps", "Norwegian mobile payment API", "Finance", "https://developer.vipps.no/"),
93
+ ("Yr.no", "Norwegian weather service API", "Weather", "https://developer.yr.no/"),
94
+ ("Vy", "Norwegian railway and bus operator", "Transportation", "https://www.vy.no/"),
95
+ ("Entur", "Norwegian transport journey planner", "Transportation", "https://developer.entur.org/"),
96
+ ("Kartverket", "Norwegian mapping authority", "Maps", "https://kartkatalog.geonorge.no/"),
97
+ ("SSB", "Statistics Norway API", "Data", "https://www.ssb.no/api/"),
98
+ ("Altinn", "Norwegian government services platform", "Government", "https://altinn.no/api/"),
99
+ ("Brønnøysundregistrene", "Norwegian company registry", "Business", "https://data.brreg.no/"),
100
+
101
+ # Danish APIs
102
+ ("MobilePay", "Danish mobile payment API", "Finance", "https://developer.mobilepay.dk/"),
103
+ ("Rejseplanen", "Danish public transport journey planner", "Transportation", "https://help.rejseplanen.dk/hc/da/articles/214174465"),
104
+ ("DMI", "Danish Meteorological Institute", "Weather", "https://www.dmi.dk/"),
105
+ ("CVR", "Danish company register", "Business", "https://datacvr.virk.dk/"),
106
+ ("NemID", "Danish digital identity", "Government", "https://www.nets.eu/developer"),
107
+
108
+ # Finnish APIs
109
+ ("Digitraffic Finland", "Finnish transport and traffic data", "Transportation", "https://www.digitraffic.fi/"),
110
+ ("HSL", "Helsinki region transport API", "Transportation", "https://digitransit.fi/en/developers/"),
111
+ ("Finnish Meteorological Institute", "FMI open data", "Weather", "https://en.ilmatieteenlaitos.fi/open-data"),
112
+ ("Suomi.fi", "Finnish government digital services", "Government", "https://www.suomi.fi/palvelut/apis"),
113
+ ("PRH", "Finnish Patent and Registration Office", "Business", "https://www.prh.fi/en/"),
114
+
115
+ # Hard-to-find niche APIs
116
+ ("Mapillary", "Street-level imagery platform", "Maps", "https://www.mapillary.com/developer/api-documentation/"),
117
+ ("What3Words", "Global addressing system with 3 words", "Maps", "https://developer.what3words.com/"),
118
+ ("OpenCage", "Forward and reverse geocoding API", "Maps", "https://opencagedata.com/api"),
119
+ ("Geocodio", "US and Canada geocoding", "Maps", "https://www.geocod.io/docs/"),
120
+ ("SmartyStreets", "Address validation and geocoding", "Maps", "https://www.smarty.com/docs/"),
121
+ ("Melissa", "Global data quality and address verification", "Data", "https://www.melissa.com/developer"),
122
+ ("Lob", "Print and mail API", "Logistics", "https://docs.lob.com/"),
123
+ ("EasyPost", "Shipping API aggregator", "Logistics", "https://www.easypost.com/docs/api"),
124
+ ("ShipEngine", "Multi-carrier shipping API", "Logistics", "https://www.shipengine.com/docs/"),
125
+ ("Shippo", "Shipping rates and labels API", "Logistics", "https://goshippo.com/docs/"),
126
+ ("Pirate Ship", "USPS shipping discounts API", "Logistics", "https://ship.pirateship.com/"),
127
+ ("Stamps.com", "USPS postage and shipping", "Logistics", "https://developer.stamps.com/"),
128
+ ("ShipStation", "E-commerce shipping platform", "Logistics", "https://www.shipstation.com/docs/api/"),
129
+ ("Ordoro", "Inventory and shipping management", "Logistics", "https://www.ordoro.com/developers"),
130
+ ("Returnly", "Returns management platform", "E-commerce", "https://docs.returnly.com/"),
131
+ ("Loop Returns", "Returns and exchanges platform", "E-commerce", "https://developers.loopreturns.com/"),
132
+ ("Narvar", "Post-purchase experience platform", "E-commerce", "https://narvar.com/"),
133
+ ("Route", "Package tracking and protection", "E-commerce", "https://route.com/api-docs"),
134
+ ("Attentive", "SMS marketing platform", "Marketing", "https://docs.attentivemobile.com/"),
135
+ ("Postscript", "SMS marketing for Shopify", "Marketing", "https://developers.postscript.io/"),
136
+ ("Klaviyo", "Email and SMS marketing automation", "Marketing", "https://developers.klaviyo.com/"),
137
+ ("Omnisend", "E-commerce marketing automation", "Marketing", "https://api-docs.omnisend.com/"),
138
+ ("Drip", "E-commerce CRM and marketing", "Marketing", "https://developer.drip.com/"),
139
+ ("Dotdigital", "Marketing automation platform", "Marketing", "https://developer.dotdigital.com/"),
140
+ ("ActiveCampaign", "Customer experience automation", "Marketing", "https://developers.activecampaign.com/"),
141
+ ("Customer.io", "Automated messaging platform", "Marketing", "https://customer.io/docs/api/"),
142
+ ("Iterable", "Cross-channel marketing platform", "Marketing", "https://api.iterable.com/"),
143
+ ("OneSignal", "Push notification service", "Communication", "https://documentation.onesignal.com/"),
144
+ ("Pusher", "Real-time messaging infrastructure", "Communication", "https://pusher.com/docs/"),
145
+ ("Ably", "Real-time messaging platform", "Communication", "https://ably.com/docs"),
146
+ ("PubNub", "Real-time communication APIs", "Communication", "https://www.pubnub.com/docs/"),
147
+ ("Stream", "Chat and activity feeds API", "Communication", "https://getstream.io/docs/"),
148
+ ("Sendbird", "Chat and messaging API", "Communication", "https://sendbird.com/docs"),
149
+ ("TalkJS", "Chat API and SDK", "Communication", "https://talkjs.com/docs/"),
150
+ ("Cometchat", "In-app chat and calling", "Communication", "https://www.cometchat.com/docs/"),
151
+ ("Vonage Video API", "WebRTC video platform (formerly TokBox)", "Communication", "https://tokbox.com/developer/"),
152
+ ("Daily.co", "Video and audio calling API", "Communication", "https://docs.daily.co/"),
153
+ ("Whereby", "Video meetings API", "Communication", "https://whereby.dev/"),
154
+ ("100ms", "Live video and audio infrastructure", "Communication", "https://www.100ms.live/docs"),
155
+ ("Dyte", "Live video SDK", "Communication", "https://docs.dyte.io/"),
156
+ ("Mux", "Video streaming infrastructure", "Video", "https://docs.mux.com/"),
157
+ ("Cloudflare Stream", "Video streaming with Cloudflare", "Video", "https://developers.cloudflare.com/stream/"),
158
+ ("Bunny Stream", "Video hosting and streaming", "Video", "https://docs.bunny.net/docs/stream-overview"),
159
+ ("api.video", "Video hosting and streaming API", "Video", "https://docs.api.video/"),
160
+ ("Wistia", "Video hosting for business", "Video", "https://wistia.com/support/developers"),
161
+ ("Vidyard", "Video platform for business", "Video", "https://knowledge.vidyard.com/hc/en-us/articles/360010001073"),
162
+ ("Loom", "Video messaging platform", "Video", "https://dev.loom.com/docs"),
163
+ ("Riverside", "Remote recording platform", "Video", "https://riverside.fm/"),
164
+ ("Descript", "Audio and video editing platform", "Video", "https://www.descript.com/developers"),
165
+ ("Remotion", "Programmatic video creation in React", "Video", "https://www.remotion.dev/docs/"),
166
+ ("Creatomate", "Video and image generation API", "Video", "https://creatomate.com/docs/api/introduction"),
167
+ ("Placid", "Image and video generation", "Design", "https://placid.app/docs"),
168
+ ("Bannerbear", "Image and video generation API", "Design", "https://www.bannerbear.com/docs/"),
169
+ ("Cloudinary", "Image and video management", "Media", "https://cloudinary.com/documentation"),
170
+ ("imgix", "Real-time image processing", "Media", "https://docs.imgix.com/"),
171
+ ("ImageKit", "Image CDN and optimization", "Media", "https://docs.imagekit.io/"),
172
+ ("Filestack", "File upload and processing", "Media", "https://www.filestack.com/docs/"),
173
+ ("Uploadcare", "File uploading and processing", "Media", "https://uploadcare.com/docs/"),
174
+ ("Transloadit", "File uploading and encoding", "Media", "https://transloadit.com/docs/"),
175
+ ]
176
+
177
+ for name, desc, category, link in swedish_apis:
178
+ if add_api(name, desc, category, link):
179
+ added += 1
180
+
181
+ registry['count'] = len(registry['apis'])
182
+ registry['lastUpdated'] = '2026-02-22'
183
+
184
+ with open(registry_path, 'w') as f:
185
+ json.dump(registry, f, indent=2)
186
+
187
+ print(f"✅ APIClaw Nordic + Niche Expansion Complete")
188
+ print(f" Added: {added} new APIs")
189
+ print(f" Total: {registry['count']} APIs")
@@ -0,0 +1,343 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ APIClaw Expansion: Parse TonnyL/Awesome_APIs
4
+ """
5
+ import json
6
+ import re
7
+ from pathlib import Path
8
+
9
+ registry_path = Path(__file__).parent.parent / 'src/registry/apis.json'
10
+
11
+ # Load existing registry
12
+ with open(registry_path) as f:
13
+ registry = json.load(f)
14
+
15
+ existing_ids = {a['id'].lower() for a in registry['apis']}
16
+ existing_links = {a.get('link', '').lower().rstrip('/') for a in registry['apis']}
17
+ existing_names = {a['name'].lower() for a in registry['apis']}
18
+
19
+ def make_id(name):
20
+ slug = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
21
+ return slug[:50] if len(slug) > 50 else slug
22
+
23
+ def add_api(name, desc, category, link, auth='None', https=True, cors='unknown'):
24
+ api_id = make_id(name)
25
+
26
+ # Skip if exists
27
+ if api_id in existing_ids:
28
+ return False
29
+ if link.lower().rstrip('/') in existing_links:
30
+ return False
31
+ if name.lower() in existing_names:
32
+ return False
33
+
34
+ keywords = [category.lower()]
35
+ desc_lower = desc.lower()
36
+ if 'free' in desc_lower:
37
+ keywords.append('free')
38
+ if 'json' in desc_lower:
39
+ keywords.append('json')
40
+ if 'rest' in desc_lower:
41
+ keywords.append('rest')
42
+
43
+ registry['apis'].append({
44
+ 'id': api_id,
45
+ 'name': name,
46
+ 'description': desc[:500],
47
+ 'category': category,
48
+ 'auth': auth,
49
+ 'https': https,
50
+ 'cors': cors,
51
+ 'link': link,
52
+ 'pricing': 'unknown',
53
+ 'keywords': list(set(keywords)),
54
+ 'source': 'tonnyL-awesome'
55
+ })
56
+ existing_ids.add(api_id)
57
+ existing_links.add(link.lower().rstrip('/'))
58
+ existing_names.add(name.lower())
59
+ return True
60
+
61
+ added = 0
62
+
63
+ # From TonnyL/Awesome_APIs - extracted unique ones
64
+ apis = [
65
+ # Anime
66
+ ("AcgClub", "AcgClub API provides ACG-related aggregation services", "Anime", "https://github.com/Rabtman/AcgClub/wiki/"),
67
+ ("hitokoto", "hitokoto API provides a one-word service from anime", "Anime", "https://hitokoto.cn/api"),
68
+ ("Kitsu API", "Anime discovery platform with tracking features", "Anime", "https://kitsu.docs.apiary.io/#"),
69
+
70
+ # Blogging
71
+ ("Blogger", "Create new blog posts, edit or delete existing posts", "Blogging", "https://developers.google.com/blogger/"),
72
+ ("Medium", "Access to data of medium.com", "Blogging", "https://github.com/Medium/medium-api-docs"),
73
+ ("Weebly", "Website builder for customers", "Blogging", "https://cloud-developer.weebly.com/"),
74
+ ("Telegraph", "Telegram's publishing service API", "Blogging", "http://telegra.ph/api"),
75
+
76
+ # Books
77
+ ("An API Of Ice And Fire", "Data about Books, Characters, Houses from A Song of Ice and Fire", "Books", "https://anapioficeandfire.com/"),
78
+ ("Open Library Books API", "Open, editable library catalog", "Books", "https://openlibrary.org/developers/api"),
79
+ ("NYPL Digital Collections", "The NY Public Library rare and unique material", "Books", "http://api.repo.nypl.org/"),
80
+ ("Bookshare", "Books and periodicals for users with print disabilities", "Books", "http://developer.bookshare.org/"),
81
+
82
+ # Business
83
+ ("Concur Labs", "Access to Concur's RESTful API", "Business", "https://developer.concur.com/api-reference/"),
84
+ ("Envoy", "Access to Envoy's API", "Business", "https://developers.envoy.com/"),
85
+ ("JotForm", "Connect to your form data", "Business", "http://api.jotform.com/docs/"),
86
+ ("Pruvan", "Access to Pruvan's API", "Business", "https://pruvan.com/resources/pruvan-api/"),
87
+ ("Quip", "Automate processes and integrate Quip", "Business", "https://quip.com/api/"),
88
+ ("Wolfram Data Drop", "Access to Wolfram Data Drop's RESTful API", "Business", "https://www.wolfram.com/datadrop/quick-reference/web-api/"),
89
+
90
+ # Carsharing
91
+ ("Lyft API", "Real-time ETAs, availability, price estimates, ride status", "Transportation", "https://www.lyft.com/developers"),
92
+
93
+ # Cloud Storage
94
+ ("Amazon Cloud Drive", "Cloud Drive RESTful API and SDKs", "Cloud Storage", "https://developer.amazon.com/amazon-drive"),
95
+ ("Box API", "Search, metadata, granular permission models", "Cloud Storage", "https://developer.box.com/"),
96
+ ("Document Cloud", "Analyze documents with OpenCalais", "Cloud Storage", "http://www.documentcloud.org/help/api"),
97
+ ("QNAP Development Toolkit", "Manage and access files on NAS", "Cloud Storage", "https://www.qnap.com/event/dev/useng/p_about.php"),
98
+ ("Verizon Cloud", "Upload, retrieve, and manage large amounts of data", "Cloud Storage", "http://www.verizonenterprise.com/cloud/documentation/StorageAPIReference.htm"),
99
+
100
+ # Delivery Tracking
101
+ ("AfterShip", "Shipment tracking for over 200 couriers", "Delivery", "https://docs.aftership.com/api/"),
102
+ ("Aramex", "Parcel, package, and freight delivery via global network", "Delivery", "https://www.aramex.com/developers/aramex-apis"),
103
+ ("Canada Post", "Integrate Canada Post services like shipping, rating, tracking", "Delivery", "http://www.canadapost.ca/cpo/mc/business/productsservices/developers/services/fundamentals.jsf"),
104
+ ("DHL", "DHL XML Services for availability, rates, tracking", "Delivery", "http://www.dhl-usa.com/en/express/resource_center/integrated_shipping_solutions.html"),
105
+ ("FedEx", "FedEx web services for shipping functionality", "Delivery", "https://www.fedex.com/us/developer/web-services/index.html"),
106
+ ("UPS", "UPS shipping functionalities integration", "Delivery", "http://www.ups.com/content/us/en/resources/techsupport/developercenter.html"),
107
+
108
+ # Design
109
+ ("Behance", "Get information of projects, creatives, fields, users", "Design", "https://www.behance.net/dev/api/endpoints/"),
110
+ ("deviantART", "Allows to get data of deviantart.com", "Design", "https://www.deviantart.com/developers/"),
111
+
112
+ # Development
113
+ ("ARTIK Cloud", "The ARTIK Cloud API for IoT platform", "Development", "https://developer.artik.cloud/documentation/api-reference/"),
114
+ ("AT&T M2X", "M2X's RESTful API for time-series data analytics", "Development", "https://m2x.att.com/developer/documentation/v2/overview"),
115
+ ("bitly API", "Save, share and discover links", "Development", "https://dev.bitly.com/"),
116
+ ("Buddy CI", "Continuous Integration service for GitHub, Bitbucket, GitLab", "Development", "https://buddy.works/api/reference/getting-started/overview"),
117
+ ("Bugzilla", "Web-based general-purpose bugtracker", "Development", "https://wiki.mozilla.org/Bugzilla:REST_API"),
118
+ ("CircleCI API", "RESTful API for CircleCI", "Development", "https://circleci.com/docs/api/v1-reference/"),
119
+ ("Coding", "Access to coding.net", "Development", "https://open.coding.net/"),
120
+ ("Dataflow kit", "Web Scraping framework for Gophers", "Development", "https://github.com/slotix/dataflowkit"),
121
+ ("gank.io", "Access to gank.io API", "Development", "http://gank.io/api"),
122
+ ("Gitter", "Chat tools for GitHub", "Development", "https://developer.gitter.im/docs/welcome"),
123
+ ("Google Play Developer", "Perform publishing and app-management tasks", "Development", "https://developers.google.com/android-publisher/"),
124
+ ("IPInfo.io", "IP geolocation integration", "Development", "https://ipinfo.io/developers"),
125
+ ("Laravel China", "Access to laravel-china.org", "Development", "https://laravel-china.org/topics/3097"),
126
+ ("MAC Address Vendor Lookup", "Retrieve vendor details from MAC address", "Development", "https://macaddress.io/api-documentation"),
127
+ ("openHAB", "REST API for home automation", "Development", "https://github.com/openhab/openhab1-addons/wiki/REST-API"),
128
+ ("Particle", "The Particle Cloud REST API for IoT", "Development", "https://docs.particle.io/reference/api/"),
129
+ ("QR Code Generator", "Generate and decode QR codes", "Development", "http://goqr.me/api/"),
130
+ ("StackExchange", "Access to Stack Exchange API", "Development", "https://api.stackexchange.com/docs"),
131
+ ("SVN API", "Subversion APIs for 3rd-party applications", "Development", "https://subversion.apache.org/docs/api/1.8/"),
132
+ ("TravisCI", "API used by Travis CI web interface", "Development", "https://docs.travis-ci.com/api/"),
133
+ ("V2EX", "Access to v2ex.com", "Development", "https://www.v2ex.com/p/7v9TEc53"),
134
+ ("W3C", "W3C Web API for specifications, groups, organizations", "Development", "https://github.com/w3c/w3c-api"),
135
+ ("ZenHub", "ZenHub API for project management with GitHub", "Development", "https://github.com/ZenHubIO/API"),
136
+
137
+ # Email
138
+ ("Context.IO", "Modern, scalable email API", "Email", "http://context.io/"),
139
+ ("Inbox", "Modern RESTful APIs for working with mail providers", "Email", "https://www.inboxapp.com/docs"),
140
+ ("Mandrill", "Transactional, triggered, and personalized email", "Email", "https://mandrillapp.com/api/docs/"),
141
+ ("Outlook Mail", "Mail API for Office 365", "Email", "https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations"),
142
+
143
+ # Fitness
144
+ ("Adidas AG", "Access to Adidas AG's API", "Fitness", "https://developers.adidas.com/services"),
145
+ ("Jawbone UP", "Step, activity, food, and sleep tracking", "Fitness", "https://jawbone.com/up/developer"),
146
+ ("Lifelog", "Sony's lifestyle, fitness and health data", "Fitness", "https://developer.sony.com/develop/services/lifelog-api/"),
147
+ ("Misfit", "Activity tracking, sleep tracking and wearable control", "Fitness", "https://build.misfit.com/"),
148
+ ("Nike+", "Activity Services for user's run details", "Fitness", "https://developer.nike.com/content/nike-developer-cq/us/en_us/index/documentation/api-docs.html"),
149
+ ("Recon", "Access to Recon instruments data", "Fitness", "http://www.reconinstruments.com/developers/develop/for-recon-engage/api-documentation/"),
150
+
151
+ # Food
152
+ ("Order Pizza REST API", "A RESTful API as pizza restaurant ordering system", "Food", "https://order-pizza-api.herokuapp.com/api/ui"),
153
+
154
+ # Forex & Currencies
155
+ ("1Forge.com", "Real-time forex and crypto quotes via JSON and WebSocket", "Currency", "https://1forge.com/"),
156
+ ("CurrencyScoop.com", "Free Real-time and historical currency rates JSON API", "Currency", "https://currencyscoop.com/"),
157
+
158
+ # Games
159
+ ("Battle.net", "Battle.net APIs for D3, WoW, SC2, and more", "Games", "https://dev.battle.net/"),
160
+ ("Clash of Clans", "Near real-time access to game related data", "Games", "https://developer.clashofclans.com/#/"),
161
+ ("EVE Online", "Popular MMORPG CREST and XML APIs", "Games", "https://developers.eveonline.com/"),
162
+ ("Facebook Games Services", "Achievements API, Scores API, App Notifications", "Games", "https://developers.facebook.com/docs/games"),
163
+ ("Google Play Games Services", "Achievements, leaderboards, player stats", "Games", "https://developers.google.com/games/"),
164
+ ("Steam Web APIs", "Item data for Team Fortress 2 and more", "Games", "https://steamcommunity.com/dev"),
165
+ ("Giant Bomb", "Game titles, ratings, videos, companies, themes, genres", "Games", "http://www.giantbomb.com/api/"),
166
+ ("Guild Wars 2", "Access to Guild Wars 2 data", "Games", "https://wiki.guildwars2.com/wiki/API:Main"),
167
+
168
+ # IoT
169
+ ("Automatic", "REST API, Real-time Event API and Streaming API", "IoT", "https://developer.automatic.com/"),
170
+ ("Amazon Alexa", "Voice-enable connected products", "IoT", "https://developer.amazon.com/public/solutions/alexa/alexa-voice-service/content/avs-api-overview"),
171
+ ("Google Assistant", "Actions on Google for Google Assistant", "IoT", "https://developers.google.com/actions/"),
172
+ ("Home8", "100% wireless IoT System for Smart Alarm", "IoT", "https://developer.home8systems.com/"),
173
+ ("Homey", "Access to Homey's API", "IoT", "https://developers.athom.com/api/"),
174
+ ("HP Print", "Access to HP Print's API", "IoT", "https://developers.hp.com/printos/printos"),
175
+ ("LIFX", "Multi-color smart WiFi-enabled LED lightbulb", "IoT", "https://api.developer.lifx.com/"),
176
+ ("LightwaveRF", "Local command protocols for LightwaveRF system", "IoT", "https://api.lightwaverf.com/"),
177
+ ("microBees", "Execute REST APIs and subscribe for real-time messaging", "IoT", "http://developers.microbees.com/documentation/#reference"),
178
+ ("Mojio", "REST endpoints and PUSH API for car data", "IoT", "https://www.moj.io/developer/"),
179
+ ("myStrom", "REST API for myStrom WLAN Energy Control Switch", "IoT", "https://mystrom.ch/de/mystrom-api"),
180
+ ("Neurio", "Measure your electrical energy consumption", "IoT", "http://neur.io/developers/"),
181
+ ("Smappee", "Measure electrical energy consumption and solar production", "IoT", "https://smappee.atlassian.net/wiki/display/DEVAPI/SmappeeDevAPI+Home"),
182
+ ("Stack Lighting", "Control brightness, color temperature, motion settings", "IoT", "http://developers.stacklighting.com/"),
183
+ ("Vinli", "Platform for building connected car apps", "IoT", "https://dev.vin.li/#/home"),
184
+ ("Yeelight", "Smart LED products remote control through WiFi", "IoT", "http://www.yeelight.com/en_US/developer"),
185
+
186
+ # Machine Learning
187
+ ("Amazon Machine Learning", "Build smart applications for fraud detection, forecasting", "Machine Learning", "https://aws.amazon.com/cn/documentation/machine-learning/"),
188
+ ("BigML", "Anomaly detection, cluster analysis, SunBurst visualization", "Machine Learning", "https://bigml.com/api"),
189
+ ("Diffbot", "Combination of AI, computer vision, ML, NLP for web data", "Machine Learning", "https://www.diffbot.com/dev/docs/"),
190
+ ("Google Cloud Prediction", "Machine Learning with RESTful API", "Machine Learning", "https://cloud.google.com/prediction/docs/"),
191
+
192
+ # Maps
193
+ ("Amap", "Access to Amap's web APIs (China)", "Maps", "http://lbs.amap.com/"),
194
+ ("Baidu Map", "Access to Baidu Map's web APIs (China)", "Maps", "http://lbsyun.baidu.com/index.php?title=webapi"),
195
+ ("Bing maps", "Access to Bing maps' APIs", "Maps", "https://www.microsoft.com/maps/choose-your-bing-maps-API.aspx"),
196
+ ("Here Maps", "Simple HTTP GET methods for maps, routing, geocoding", "Maps", "https://developer.here.com/develop/rest-apis"),
197
+ ("Tencent Map", "Access to Tencent Map's WebService APIs", "Maps", "http://lbs.qq.com/webservice_v1/index.html"),
198
+
199
+ # Messaging
200
+ ("Cisco Spark", "Create rooms, invite people, post messages", "Messaging", "https://developer.ciscospark.com/"),
201
+ ("Dingtalk", "Access to Dingtalk's APIs", "Messaging", "https://open-doc.dingtalk.com/"),
202
+ ("dondeEsta Family", "Access to dondeEsta family API", "Messaging", "http://docs.dondeesta.apiary.io/#introduction/api"),
203
+ ("Fleep", "Messenger for teams and projects", "Messaging", "https://fleep.io/fleepapi/"),
204
+ ("GroupMe", "Group messaging abilities integration", "Messaging", "https://dev.groupme.com/docs/v3"),
205
+ ("indoona", "Send messages to indoona users and groups", "Messaging", "https://developer.indoona.com/"),
206
+ ("LINE", "Freeware app for instant communications", "Messaging", "https://developers.line.me/"),
207
+ ("MessageBird", "Integrate SMS, Chat & Voice", "Messaging", "https://developers.messagebird.com/"),
208
+ ("Yo", "Simplest notification platform", "Messaging", "http://docs.justyo.co/"),
209
+
210
+ # Music
211
+ ("KaolaFM", "Access to data of KaolaFM", "Music", "https://github.com/kaolafm/api"),
212
+ ("MusicGraph", "World's first knowledge engine for music", "Music", "https://developer.musicgraph.com/"),
213
+ ("One Music", "Metadata about an astonishing range of music", "Music", "http://www.onemusicapi.com/"),
214
+ ("QingtingFM", "Access to data of QingtingFM", "Music", "http://open.qingting.fm/"),
215
+ ("SearchLy", "Similarities search based on song lyrics", "Music", "https://github.com/AlbertSuarez/searchly"),
216
+
217
+ # News & Information
218
+ ("aztro", "aztro is a REST API for retrieving horoscope information", "News", "https://aztro.sameerkumar.website"),
219
+ ("BreweryDB", "Database of breweries, beers, beer events and guilds", "News", "http://www.brewerydb.com/developers"),
220
+ ("Diigo", "Build apps that interact with Diigo service", "News", "https://www.diigo.com/api_dev"),
221
+ ("Inoreader", "Subscribe to feeds, read articles or catalogue", "News", "https://www.inoreader.com/developers/"),
222
+ ("Instapaper", "Add URLs to Instapaper", "News", "https://www.instapaper.com/api"),
223
+ ("Narro", "Access articles and readings", "News", "https://docs.narro.co/#introduction"),
224
+ ("Newsblur", "Retrieve feeds, feed counts, icons, statistics", "News", "https://newsblur.com/api"),
225
+ ("NPR", "NPR content API", "News", "http://www.npr.org/api/index"),
226
+ ("Pinboard", "Interact with bookmarks, notes and lists", "News", "https://pinboard.in/api"),
227
+ ("Product Hunt", "Access to producthunt.com", "News", "https://api.producthunt.com/v1/docs"),
228
+ ("USA TODAY", "Latest news and stories from USA TODAY", "News", "https://developer.usatoday.com/docs/"),
229
+
230
+ # Notes
231
+ ("Youdao Note", "Access to Youdao Note's web APIs", "Notes", "http://note.youdao.com/open/"),
232
+
233
+ # Payment
234
+ ("Paymill", "Implement PAYMILL payment", "Payment", "https://developers.paymill.com/index"),
235
+ ("Paytm", "Take payments using Paytm Wallet", "Payment", "https://paytm.com/business/payments/developers"),
236
+ ("WePay", "Designed for platforms like marketplaces, crowdfunding", "Payment", "https://www.wepay.com/"),
237
+ ("PhonePe", "Cashless and seamless payment experience", "Payment", "https://developer.phonepe.com/docs"),
238
+
239
+ # Photography
240
+ ("Pixabay", "RESTful interface for searching Pixabay images and videos", "Photography", "https://pixabay.com/api/docs/"),
241
+ ("Unsplash It", "Beautiful placeholders using Unsplash images", "Photography", "https://unsplash.it/"),
242
+ ("Unsplash Resource", "Simple API for embedding Unsplash photos", "Photography", "https://source.unsplash.com/"),
243
+
244
+ # Places
245
+ ("Zomato", "Restaurant metadata for over 1.5 million restaurants", "Places", "https://developers.zomato.com/api"),
246
+
247
+ # Social
248
+ ("Disqus", "Social integration, networking, user profiles, spam tools", "Social", "https://disqus.com/api/docs/"),
249
+ ("Flickr", "Online photo management and sharing", "Social", "https://www.flickr.com/services/api/"),
250
+ ("Weibo", "Access to posts, users, comments, favorites", "Social", "http://open.weibo.com/wiki/API"),
251
+
252
+ # Shopping
253
+ ("Best Buy", "Access to Best Buy's APIs", "Shopping", "https://developer.bestbuy.com/"),
254
+ ("Dangdang", "Access to Dangdang's APIs", "Shopping", "http://open.dangdang.com/"),
255
+ ("Home Depot", "Access to Home Depot's APIs", "Shopping", "https://developer.homedepot.com/"),
256
+ ("JD", "Access to JD's APIs", "Shopping", "https://jos.jd.com/api/index.htm"),
257
+ ("Semantics3", "Access to Semantics3's RESTful APIs", "Shopping", "http://docs.semantics3.com/reference"),
258
+ ("Slice", "Access to Slice's REST APIs", "Shopping", "https://developer.slice.com/"),
259
+ ("Taobao", "Access to Taobao's APIs", "Shopping", "https://open.taobao.com/doc2/api_list.htm"),
260
+
261
+ # Teamwork
262
+ ("Asana", "Programmatically update and access data on Asana", "Teamwork", "https://asana.com/guide/help/api/api"),
263
+ ("join.me", "Online meeting tool API", "Teamwork", "https://developer.join.me/"),
264
+ ("Teambition", "Open Platform with complete set of Open API", "Teamwork", "https://www.teambition.com/developer/open-platform"),
265
+ ("TeamSnap", "World's best team management solution", "Teamwork", "http://developer.teamsnap.com/"),
266
+ ("Worktile", "Access to Worktile's APIs", "Teamwork", "https://dev.worktile.com/document/overview"),
267
+
268
+ # Text Analysis
269
+ ("BosonNLP", "Chinese text analysis", "NLP", "http://docs.bosonnlp.com/"),
270
+ ("Detect Language API", "Automatic language identification for any texts", "NLP", "https://rapidapi.com/BigLobster/api/language-identification-prediction"),
271
+ ("Tencent NLP", "Chinese text analysis", "NLP", "http://nlp.qq.com/help.cgi"),
272
+ ("Watson Natural Language Understanding", "Natural language processing to analyze semantic features", "NLP", "https://www.ibm.com/watson/developercloud/natural-language-understanding/api/v1/"),
273
+
274
+ # To-dos
275
+ ("Beeminder", "Access to Beeminder's APIs", "Productivity", "https://www.beeminder.com/api"),
276
+ ("FollowUp.cc", "Access to FollowUp.cc's APIs", "Productivity", "http://docs.followup.cc/"),
277
+ ("Toodledo", "Access to user's tasks, notes, outlines and lists", "Productivity", "https://api.toodledo.com/3/"),
278
+
279
+ # Tourism
280
+ ("ctrip", "Access to the data of ctrip", "Tourism", "http://u.ctrip.com/union/help/Termsofuse.aspx"),
281
+ ("elong", "Access to hotels and air tickets data", "Tourism", "http://open.elong.com/home/index"),
282
+ ("qunar", "Access to hotel, train, air tickets and insurance data", "Tourism", "http://open.qunar.com/"),
283
+ ("tuniu", "Access to the data of tuniu", "Tourism", "http://open.tuniu.cn/"),
284
+
285
+ # Translation
286
+ ("Baidu Translate", "Supports translation between multiple languages", "Translation", "http://api.fanyi.baidu.com/api/trans/product/index"),
287
+ ("iciba", "Support simple translation", "Translation", "http://open.iciba.com/?c=api"),
288
+ ("Shanbay", "Query, adding study records, writing notes", "Translation", "https://www.shanbay.com/help/developer/api_v1/"),
289
+ ("yeekit", "Support translation between several languages", "Translation", "http://api.yeekit.com/"),
290
+ ("Youdao", "Support simple translation", "Translation", "http://fanyi.youdao.com/openapi"),
291
+
292
+ # Video
293
+ ("Narrative", "Customize your clip, get players, badges", "Video", "http://open.getnarrative.com/"),
294
+ ("iqiyi", "Supports query data of iqiyi", "Video", "http://open.iqiyi.com/lib/scheme.html"),
295
+ ("LeTV", "Allows to query data, upload, download", "Video", "http://www.lecloud.com/zh-cn/help/2016/07/27/150.html?LeftMenu=api_db_guide"),
296
+ ("Rotten Tomatoes", "Access to ratings and reviews from Rotten Tomatoes", "Video", "https://developer.fandango.com/Rotten_Tomatoes"),
297
+ ("Sohu TV", "Allows to query data of Sohu TV", "Video", "http://lm.tv.sohu.com/union/open_platform.do"),
298
+ ("TVmaze", "TV Show and web series database", "Video", "https://www.tvmaze.com/api"),
299
+ ("Youku", "Allows to upload, download, log in", "Video", "https://doc.open.youku.com/"),
300
+
301
+ # Voice Analysis
302
+ ("Baidu Yuyin", "Access to Baidu Yuyin's voice analysis REST APIs", "Voice", "http://yuyin.baidu.com/docs"),
303
+
304
+ # Vision Analysis
305
+ ("CamScanner", "Digitalize paper documents with image processing", "Vision", "https://dev.camscanner.com/?language=en-us"),
306
+ ("clarifai", "Image and video recognition as a service", "Vision", "https://clarifai.com/developer/guide/"),
307
+ ("Face++", "Computer vision technologies for reading and understanding", "Vision", "https://console.faceplusplus.com/documents/5678948"),
308
+ ("wozhitu", "Access to wozhitu's vision analysis APIs", "Vision", "http://api1.wozhitu.com/"),
309
+
310
+ # Weather
311
+ ("Aeris Weather", "Advanced weather API for custom applications", "Weather", "http://www.aerisweather.com/develop/"),
312
+ ("Caiyun Weather", "Weather information of China", "Weather", "https://caiyunapp.com/index.html#api"),
313
+ ("heweather", "Weather information of China", "Weather", "https://www.heweather.com/documents/"),
314
+ ("Weather Unlocked", "Weather driven solutions for digital advertising", "Weather", "https://developer.weatherunlocked.com/documentation"),
315
+ ("Seniverse", "Weather information of China", "Weather", "https://www.seniverse.com/doc"),
316
+ ("Yandex.Weather", "Forecasting technology Meteum for Russia", "Weather", "https://tech.yandex.com/weather/"),
317
+
318
+ # More platforms
319
+ ("Alidayu", "APIs available in China", "Platform", "http://www.alidayu.com/"),
320
+ ("APiX", "Credit APIs available in China", "Platform", "https://www.apix.cn/"),
321
+ ("Avatar Data", "APIs available in China", "Platform", "http://www.avatardata.cn/Docs"),
322
+ ("Baidu API STORE", "APIs available in China", "Platform", "http://apistore.baidu.com/"),
323
+ ("Datayes", "Financial APIs available in China", "Platform", "https://m.datayes.com/"),
324
+ ("HaoService", "APIs available in China", "Platform", "http://www.haoservice.com/"),
325
+ ("iTunes Search API", "Search content within iTunes Store, App Store", "Platform", "https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/"),
326
+ ("Juhe Data", "APIs available in China", "Platform", "https://www.juhe.cn/"),
327
+ ]
328
+
329
+ for name, desc, category, link in apis:
330
+ if add_api(name, desc, category, link):
331
+ added += 1
332
+
333
+ # Update metadata
334
+ registry['count'] = len(registry['apis'])
335
+ registry['lastUpdated'] = '2026-02-22'
336
+
337
+ # Write back
338
+ with open(registry_path, 'w') as f:
339
+ json.dump(registry, f, indent=2)
340
+
341
+ print(f"✅ APIClaw TonnyL Expansion Complete")
342
+ print(f" Added: {added} new APIs")
343
+ print(f" Total: {registry['count']} APIs")