@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,625 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw - Public APIs Mass Import
|
|
4
|
+
Parses n0shake/Public-APIs and TonnyL/Awesome_APIs lists
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import json
|
|
8
|
+
import re
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
REGISTRY_PATH = Path(__file__).parent.parent / "src" / "registry" / "apis.json"
|
|
12
|
+
|
|
13
|
+
def generate_id(name: str) -> str:
|
|
14
|
+
"""Generate clean ID from name"""
|
|
15
|
+
clean = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
16
|
+
return clean[:50]
|
|
17
|
+
|
|
18
|
+
def load_registry() -> dict:
|
|
19
|
+
"""Load existing registry"""
|
|
20
|
+
with open(REGISTRY_PATH, 'r') as f:
|
|
21
|
+
return json.load(f)
|
|
22
|
+
|
|
23
|
+
def save_registry(registry: dict):
|
|
24
|
+
"""Save registry"""
|
|
25
|
+
with open(REGISTRY_PATH, 'w') as f:
|
|
26
|
+
json.dump(registry, f, indent=2)
|
|
27
|
+
|
|
28
|
+
def get_existing_ids(registry: dict) -> set:
|
|
29
|
+
"""Get set of existing API IDs"""
|
|
30
|
+
return {api['id'] for api in registry['apis']}
|
|
31
|
+
|
|
32
|
+
# Parsed from n0shake/Public-APIs and TonnyL/Awesome_APIs
|
|
33
|
+
PUBLIC_APIS = [
|
|
34
|
+
# === ADVERTISING ===
|
|
35
|
+
{"name": "Amazon Mobile Ads", "description": "Monetize across platforms with multiple ad formats", "category": "Advertising", "link": "https://developer.amazon.com/mobile-ads", "auth": "apiKey"},
|
|
36
|
+
{"name": "Facebook Marketing API", "description": "Manage ads and campaigns using the Facebook API", "category": "Advertising", "link": "https://developers.facebook.com/docs/marketing-apis", "auth": "OAuth"},
|
|
37
|
+
{"name": "Google AdSense", "description": "Earn money from websites, mobile sites, and site search results", "category": "Advertising", "link": "https://developers.google.com/adsense/", "auth": "OAuth"},
|
|
38
|
+
{"name": "Google AdWords API", "description": "Manage Google AdWords campaigns programmatically", "category": "Advertising", "link": "https://developers.google.com/adwords/api/", "auth": "OAuth"},
|
|
39
|
+
{"name": "Kevel Ad APIs", "description": "Build your own ad server with Kevel's ad APIs", "category": "Advertising", "link": "https://dev.kevel.co", "auth": "apiKey"},
|
|
40
|
+
|
|
41
|
+
# === ANALYTICS ===
|
|
42
|
+
{"name": "Amazon Mobile Analytics", "description": "Service for collecting, visualizing app usage data", "category": "Analytics", "link": "https://aws.amazon.com/documentation/mobileanalytics/", "auth": "apiKey"},
|
|
43
|
+
{"name": "Clicky", "description": "Extract website traffic data into various formats", "category": "Analytics", "link": "https://clicky.com/help/api", "auth": "apiKey"},
|
|
44
|
+
{"name": "DitchCarbon API", "description": "Company and product carbon emissions disclosures", "category": "Analytics", "link": "https://docs.ditchcarbon.com/", "auth": "apiKey"},
|
|
45
|
+
{"name": "Google Analytics", "description": "Collect, configure, and report on user interactions", "category": "Analytics", "link": "https://developers.google.com/analytics/", "auth": "OAuth"},
|
|
46
|
+
{"name": "Localytics", "description": "Interface to Localytics analytics platform", "category": "Analytics", "link": "http://docs.localytics.com/dev/query-api.html", "auth": "apiKey"},
|
|
47
|
+
{"name": "Matomo", "description": "All-in-one web analytics platform", "category": "Analytics", "link": "https://matomo.org/docs/analytics-api/", "auth": "apiKey"},
|
|
48
|
+
{"name": "MixPanel", "description": "Analytics for mobile and web", "category": "Analytics", "link": "https://developer.mixpanel.com/docs/implement-mixpanel", "auth": "apiKey"},
|
|
49
|
+
{"name": "Open Web Analytics", "description": "Request and work with your data outside OWA", "category": "Analytics", "link": "https://github.com/padams/Open-Web-Analytics", "auth": "apiKey"},
|
|
50
|
+
{"name": "Ticksel", "description": "Friendly website analytics for humans", "category": "Analytics", "link": "https://ticksel.com", "auth": "apiKey"},
|
|
51
|
+
{"name": "Woopra", "description": "Real-time website analysis tool for customer engagement", "category": "Analytics", "link": "https://www.woopra.com/docs/developer/analytics-api/", "auth": "apiKey"},
|
|
52
|
+
|
|
53
|
+
# === BARCODE ===
|
|
54
|
+
{"name": "Google Barcode", "description": "Detect barcodes in real-time on device", "category": "Utilities", "link": "https://developers.google.com/vision/barcodes-overview", "auth": "apiKey"},
|
|
55
|
+
{"name": "EAN-Search", "description": "Lookup products by EAN, UPC or GTIN barcode", "category": "E-Commerce", "link": "https://www.ean-search.org/ean-database-api.html", "auth": "apiKey"},
|
|
56
|
+
{"name": "QR Code API", "description": "QR Code REST API for creation and reading", "category": "Utilities", "link": "https://fungenerators.com/api/qrcode/", "auth": "apiKey"},
|
|
57
|
+
{"name": "QR Code Generator API", "description": "Static and Dynamic QR code generator", "category": "Utilities", "link": "https://docs.openqr.io/", "auth": "apiKey"},
|
|
58
|
+
|
|
59
|
+
# === BIG DATA ===
|
|
60
|
+
{"name": "Google Charts", "description": "Visualize data from a website", "category": "Analytics", "link": "https://developers.google.com/chart/", "auth": "none"},
|
|
61
|
+
{"name": "Keen IO", "description": "Powerful, flexible Big Data solution", "category": "Analytics", "link": "https://keen.io/docs/api/", "auth": "apiKey"},
|
|
62
|
+
{"name": "LinkedData.Center", "description": "RDF graph database with SPARQL query API", "category": "Databases", "link": "http://linkeddata.center/home/gdaas", "auth": "apiKey"},
|
|
63
|
+
|
|
64
|
+
# === CRYPTOCURRENCY ===
|
|
65
|
+
{"name": "Bitcoin", "description": "Bitcoin developer resources and reference material", "category": "Finance", "link": "https://developer.bitcoin.org/", "auth": "none"},
|
|
66
|
+
{"name": "Bitcoincharts", "description": "Markets data for websites, mobile apps", "category": "Finance", "link": "https://bitcoincharts.com/about/markets-api/", "auth": "none"},
|
|
67
|
+
{"name": "BitPay", "description": "Simple RESTful API for bitcoin infrastructure", "category": "Payments", "link": "https://bitpay.com/developers", "auth": "apiKey"},
|
|
68
|
+
{"name": "Block.io", "description": "Most versatile and secure wallet for all coins", "category": "Finance", "link": "https://block.io/", "auth": "apiKey"},
|
|
69
|
+
{"name": "BlockCypher", "description": "Infrastructure fabric for blockchain applications", "category": "Finance", "link": "https://www.blockcypher.com/", "auth": "apiKey"},
|
|
70
|
+
{"name": "BlockFacts.io", "description": "Compliance-first digital asset data", "category": "Finance", "link": "https://blockfacts.io/", "auth": "apiKey"},
|
|
71
|
+
{"name": "Coinbase", "description": "APIs and developer tools for bitcoin and blockchain", "category": "Finance", "link": "https://developers.coinbase.com/", "auth": "OAuth"},
|
|
72
|
+
{"name": "CoinDesk", "description": "Bitcoin Price Index", "category": "Finance", "link": "http://www.coindesk.com/api/", "auth": "none"},
|
|
73
|
+
{"name": "CoinGecko", "description": "Free comprehensive cryptocurrency API", "category": "Finance", "link": "https://coingecko.com/en/api", "auth": "none"},
|
|
74
|
+
{"name": "Coinlore", "description": "Cryptocurrency tick data API", "category": "Finance", "link": "https://www.coinlore.com/cryptocurrency-data-api", "auth": "none"},
|
|
75
|
+
{"name": "CoinMarketCap", "description": "Cryptocurrencies prices", "category": "Finance", "link": "https://coinmarketcap.com/api/", "auth": "apiKey"},
|
|
76
|
+
{"name": "Coinpaprika", "description": "Cryptocurrencies prices, market capitalization, volume", "category": "Finance", "link": "https://api.coinpaprika.com", "auth": "none"},
|
|
77
|
+
{"name": "CryptoCompare", "description": "Cryptocurrencies comparison", "category": "Finance", "link": "https://www.cryptocompare.com/api", "auth": "apiKey"},
|
|
78
|
+
{"name": "Cryptonator", "description": "Cryptocurrencies exchange rates", "category": "Finance", "link": "https://www.cryptonator.com/api/", "auth": "none"},
|
|
79
|
+
{"name": "Coinigy", "description": "Interact with Coinigy and Exchange accounts", "category": "Finance", "link": "https://coinigy.docs.apiary.io", "auth": "apiKey"},
|
|
80
|
+
{"name": "Covalent", "description": "Multi-blockchain data aggregator", "category": "Finance", "link": "https://www.covalenthq.com/docs/api/", "auth": "apiKey"},
|
|
81
|
+
{"name": "PENDAX", "description": "Javascript SDK for Trading, Data, Websockets", "category": "Finance", "link": "https://github.com/CompendiumFi/PENDAX-SDK", "auth": "apiKey"},
|
|
82
|
+
{"name": "Poloniex", "description": "US based digital asset exchange", "category": "Finance", "link": "https://poloniex.com/support/api/", "auth": "apiKey"},
|
|
83
|
+
{"name": "ShapeShift", "description": "Exchange between cryptocurrencies without account", "category": "Finance", "link": "https://shapeshift.io/", "auth": "apiKey"},
|
|
84
|
+
|
|
85
|
+
# === CALENDAR ===
|
|
86
|
+
{"name": "CalendarIndex", "description": "Worldwide Holidays and Working Days API", "category": "Utilities", "link": "https://www.calendarindex.com", "auth": "apiKey"},
|
|
87
|
+
{"name": "DigiDates API", "description": "REST API for date and time calculations", "category": "Utilities", "link": "https://digidates.de/en/", "auth": "none"},
|
|
88
|
+
{"name": "Holiday API", "description": "Public holiday API for several countries", "category": "Utilities", "link": "https://holidayapi.pl/", "auth": "apiKey"},
|
|
89
|
+
{"name": "OpenHolidays API", "description": "Public and school holidays for European countries", "category": "Utilities", "link": "https://www.openholidaysapi.org/", "auth": "none"},
|
|
90
|
+
|
|
91
|
+
# === CAPTCHA ===
|
|
92
|
+
{"name": "Anti-Captcha", "description": "Access to Anti-Captcha's API", "category": "Security", "link": "https://anti-captcha.com/apidoc", "auth": "apiKey"},
|
|
93
|
+
{"name": "ProxyCrawl", "description": "Crawl and scrape websites without proxies", "category": "Development", "link": "https://proxycrawl.com", "auth": "apiKey"},
|
|
94
|
+
{"name": "Google reCAPTCHA", "description": "Protect web pages against spam and abuse", "category": "Security", "link": "https://developers.google.com/recaptcha/", "auth": "apiKey"},
|
|
95
|
+
|
|
96
|
+
# === COMMERCE ===
|
|
97
|
+
{"name": "Commerce Layer", "description": "Headless commerce platform API", "category": "E-Commerce", "link": "https://docs.commercelayer.io/api/", "auth": "OAuth"},
|
|
98
|
+
{"name": "Envoice", "description": "Invoicing for online businesses", "category": "Business", "link": "https://www.envoice.in/reference/api/docs", "auth": "apiKey"},
|
|
99
|
+
{"name": "Moltin", "description": "Unified APIs for inventory, carts, checkout", "category": "E-Commerce", "link": "https://www.moltin.com/developers", "auth": "apiKey"},
|
|
100
|
+
{"name": "Stripe", "description": "Accept payments over the Internet", "category": "Payments", "link": "https://stripe.com/docs/api", "auth": "apiKey"},
|
|
101
|
+
{"name": "Braintree", "description": "Mobile and web payment systems for ecommerce", "category": "Payments", "link": "https://developers.braintreepayments.com", "auth": "apiKey"},
|
|
102
|
+
|
|
103
|
+
# === COMMUNICATION ===
|
|
104
|
+
{"name": "Africa's Talking", "description": "Access African telco services through HTTP API", "category": "Communication", "link": "https://africastalking.com/", "auth": "apiKey"},
|
|
105
|
+
{"name": "iP1sms", "description": "Send and receive SMS messages worldwide", "category": "Communication", "link": "https://www.ip1sms.com/en/developer/", "auth": "apiKey"},
|
|
106
|
+
{"name": "Eqivo", "description": "Telephony/Programmable-Voice API platform", "category": "Communication", "link": "https://eqivo.org", "auth": "apiKey"},
|
|
107
|
+
{"name": "MailGun", "description": "Transactional Email API for Developers", "category": "Email", "link": "https://mailgun.com", "auth": "apiKey"},
|
|
108
|
+
{"name": "Nexmo", "description": "Phone calls, SMS worldwide with libraries", "category": "Communication", "link": "https://developer.nexmo.com", "auth": "apiKey"},
|
|
109
|
+
{"name": "Sakari", "description": "Send SMS to 200+ countries", "category": "Communication", "link": "https://developer.sakari.io", "auth": "apiKey"},
|
|
110
|
+
{"name": "Telnyx", "description": "Build Voice, SMS, Fax, IoT applications", "category": "Communication", "link": "https://developers.telnyx.com/", "auth": "apiKey"},
|
|
111
|
+
{"name": "The SMS Works", "description": "Low-cost reliable SMS API for developers", "category": "Communication", "link": "https://thesmsworks.co.uk/sms-api", "auth": "apiKey"},
|
|
112
|
+
{"name": "Twilio", "description": "APIs for SMS, Voice, Video and more", "category": "Communication", "link": "https://www.twilio.com/solutions", "auth": "apiKey"},
|
|
113
|
+
|
|
114
|
+
# === CONTENT ===
|
|
115
|
+
{"name": "Bible API", "description": "Support for 200+ Bible translations", "category": "Content", "link": "https://github.com/wldeh/bible-api", "auth": "none"},
|
|
116
|
+
{"name": "Bible API 2", "description": "JSON API for public domain Bible translations", "category": "Content", "link": "https://bible-api.com/", "auth": "none"},
|
|
117
|
+
{"name": "Fruits API", "description": "GraphQL API with fruit tree information", "category": "Content", "link": "https://github.com/Franqsanz/fruits-api", "auth": "none"},
|
|
118
|
+
{"name": "Jokes API", "description": "Full featured Jokes API", "category": "Entertainment", "link": "https://jokes.one/api/joke/", "auth": "apiKey"},
|
|
119
|
+
{"name": "Perfect Tense API", "description": "AI-powered spelling and grammar checking", "category": "Text Analysis", "link": "https://www.perfecttense.com/developers", "auth": "apiKey"},
|
|
120
|
+
{"name": "Random Data Generator", "description": "Generate telephones, text, numbers, passwords", "category": "Utilities", "link": "https://randommer.io/randommer-api", "auth": "apiKey"},
|
|
121
|
+
{"name": "Random Facts", "description": "Random Facts API", "category": "Content", "link": "https://fungenerators.com/api/facts/", "auth": "apiKey"},
|
|
122
|
+
{"name": "Today in History", "description": "Daily historical events, births and deaths", "category": "Content", "link": "https://history.muffinlabs.com/", "auth": "none"},
|
|
123
|
+
{"name": "Wikipedia API", "description": "Free multilingual Encyclopedia", "category": "Content", "link": "https://en.wikipedia.org/w/api.php", "auth": "none"},
|
|
124
|
+
|
|
125
|
+
# === CURRENCY ===
|
|
126
|
+
{"name": "1Forge", "description": "Real-time forex and crypto quotes via JSON", "category": "Finance", "link": "https://1forge.com/", "auth": "apiKey"},
|
|
127
|
+
{"name": "Currency-API", "description": "Free Currency Exchange Rates with 150+ currencies", "category": "Finance", "link": "https://github.com/fawazahmed0/currency-api", "auth": "none"},
|
|
128
|
+
{"name": "CurrencyLayer", "description": "Exchange rates and currency conversion API", "category": "Finance", "link": "https://currencylayer.com/documentation", "auth": "apiKey"},
|
|
129
|
+
{"name": "CurrencyScoop", "description": "Real-time and historical currency rates JSON API", "category": "Finance", "link": "https://currencyscoop.com/", "auth": "apiKey"},
|
|
130
|
+
{"name": "ECB Exchange Rates", "description": "Free currency exchange rates from ECB", "category": "Finance", "link": "https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml", "auth": "none"},
|
|
131
|
+
{"name": "ExchangeRate-API", "description": "Currency conversion API", "category": "Finance", "link": "https://www.exchangerate-api.com/docs/overview", "auth": "apiKey"},
|
|
132
|
+
{"name": "ExchangeRatesAPI.io", "description": "Foreign exchange rates API with conversion", "category": "Finance", "link": "https://exchangeratesapi.io/", "auth": "apiKey"},
|
|
133
|
+
{"name": "Fixer.io", "description": "JSON API for foreign exchange rates", "category": "Finance", "link": "http://fixer.io/", "auth": "apiKey"},
|
|
134
|
+
{"name": "Frankfurter", "description": "Exchange rates and currency data API", "category": "Finance", "link": "https://www.frankfurter.app/docs/", "auth": "none"},
|
|
135
|
+
{"name": "OpenRates", "description": "Live exchange rates and currency conversion", "category": "Finance", "link": "http://www.openrates.io/", "auth": "none"},
|
|
136
|
+
|
|
137
|
+
# === DESIGN ===
|
|
138
|
+
{"name": "Dribbble", "description": "Community of designers", "category": "Design", "link": "http://developer.dribbble.com/", "auth": "OAuth"},
|
|
139
|
+
{"name": "Icon Horse", "description": "Get favicon logo for any web address", "category": "Design", "link": "https://icon.horse/usage", "auth": "none"},
|
|
140
|
+
{"name": "Pexels", "description": "High quality free stock photos", "category": "Photography", "link": "https://www.pexels.com/api/", "auth": "apiKey"},
|
|
141
|
+
{"name": "PHP-Noise", "description": "Noise background image generator", "category": "Design", "link": "https://php-noise.com/", "auth": "none"},
|
|
142
|
+
|
|
143
|
+
# === DICTIONARY ===
|
|
144
|
+
{"name": "Cambridge Dictionaries", "description": "Access Cambridge's custom-developed API", "category": "Language", "link": "http://dictionary.cambridge.org/license.html", "auth": "apiKey"},
|
|
145
|
+
{"name": "Datamuse API", "description": "Word-finding query engine", "category": "Language", "link": "https://www.datamuse.com/api/", "auth": "none"},
|
|
146
|
+
{"name": "Free Dictionary API", "description": "Get word definitions for free", "category": "Language", "link": "https://dictionaryapi.dev/", "auth": "none"},
|
|
147
|
+
{"name": "Lingua Robot API", "description": "Definition, pronunciation, synonyms, antonyms", "category": "Language", "link": "https://www.linguarobot.io/", "auth": "apiKey"},
|
|
148
|
+
{"name": "Merriam-Webster API", "description": "Dictionary and thesaurus content", "category": "Language", "link": "http://www.dictionaryapi.com/", "auth": "apiKey"},
|
|
149
|
+
{"name": "Oxford Dictionary API", "description": "Access to Oxford Dictionary services", "category": "Language", "link": "https://developer.oxforddictionaries.com/", "auth": "apiKey"},
|
|
150
|
+
{"name": "Wordnik", "description": "Dictionary functions", "category": "Language", "link": "http://developer.wordnik.com/docs.html", "auth": "apiKey"},
|
|
151
|
+
{"name": "Words API", "description": "Find definitions for 150,000+ words", "category": "Language", "link": "https://www.wordsapi.com/", "auth": "apiKey"},
|
|
152
|
+
{"name": "Wiktionary API", "description": "Free multilingual dictionary", "category": "Language", "link": "https://en.wiktionary.org/w/api.php", "auth": "none"},
|
|
153
|
+
|
|
154
|
+
# === ENTERTAINMENT ===
|
|
155
|
+
{"name": "AniList", "description": "Access to 500k+ anime and manga entries", "category": "Entertainment", "link": "https://anilist.gitbook.io/anilist-apiv2-docs/", "auth": "OAuth"},
|
|
156
|
+
{"name": "Bob's Burgers API", "description": "Data for characters, episodes, running gags", "category": "Entertainment", "link": "https://www.bobsburgersapi.com/documentation", "auth": "none"},
|
|
157
|
+
{"name": "Breaking Bad API", "description": "Data about characters, episodes, quotes, deaths", "category": "Entertainment", "link": "https://breakingbadapi.com/documentation", "auth": "none"},
|
|
158
|
+
{"name": "CATAAS", "description": "Cat as a Service - cat pictures", "category": "Entertainment", "link": "https://cataas.com/", "auth": "none"},
|
|
159
|
+
{"name": "Comic Vine", "description": "Comic information database", "category": "Entertainment", "link": "http://comicvine.gamespot.com/api/", "auth": "apiKey"},
|
|
160
|
+
{"name": "Danbooru", "description": "Get images categorized by tags", "category": "Entertainment", "link": "https://danbooru.donmai.us/posts", "auth": "apiKey"},
|
|
161
|
+
{"name": "Dune API", "description": "Book, character, movie and quotes JSON data", "category": "Entertainment", "link": "https://github.com/ywalia01/dune-api", "auth": "none"},
|
|
162
|
+
{"name": "Final Space API", "description": "Information and images about Final Space", "category": "Entertainment", "link": "https://finalspaceapi.com/docs/", "auth": "none"},
|
|
163
|
+
{"name": "Fun Translations API", "description": "Translate to 50+ languages from TV/Movies", "category": "Entertainment", "link": "https://funtranslations.com/api/", "auth": "apiKey"},
|
|
164
|
+
{"name": "Lord of the Rings API", "description": "Data about books, movies, characters, quotes", "category": "Entertainment", "link": "https://the-one-api.dev/documentation", "auth": "apiKey"},
|
|
165
|
+
{"name": "Marvel", "description": "Access over 70 years of comic data", "category": "Entertainment", "link": "https://developer.marvel.com/", "auth": "apiKey"},
|
|
166
|
+
{"name": "My Anime List API", "description": "Data about any anime or genre", "category": "Entertainment", "link": "https://jikan.moe/", "auth": "none"},
|
|
167
|
+
{"name": "Owen Wilson Wow API", "description": "Owen Wilson's wow exclamations in movies", "category": "Entertainment", "link": "https://owen-wilson-wow-api.onrender.com/", "auth": "none"},
|
|
168
|
+
{"name": "Pokemon API", "description": "All Pokémon data you'll ever need", "category": "Entertainment", "link": "https://pokeapi.co/", "auth": "none"},
|
|
169
|
+
{"name": "Rick and Morty", "description": "All Rick and Morty information including images", "category": "Entertainment", "link": "https://rickandmortyapi.com/", "auth": "none"},
|
|
170
|
+
{"name": "Riddles API", "description": "API to get random riddles", "category": "Entertainment", "link": "https://riddles-api.vercel.app/", "auth": "none"},
|
|
171
|
+
{"name": "Star Trek API", "description": "STAPI - Star Trek data", "category": "Entertainment", "link": "https://stapi.co/api-documentation", "auth": "none"},
|
|
172
|
+
{"name": "Star Wars API", "description": "All things Star Wars", "category": "Entertainment", "link": "https://www.swapi.tech/", "auth": "none"},
|
|
173
|
+
{"name": "Studio Ghibli", "description": "Resources from Studio Ghibli films", "category": "Entertainment", "link": "https://ghibliapi.vercel.app/", "auth": "none"},
|
|
174
|
+
{"name": "StockX API", "description": "150k+ sneakers and fashion products", "category": "E-Commerce", "link": "https://stockx.vlour.me/", "auth": "apiKey"},
|
|
175
|
+
{"name": "TCGdex", "description": "Multilanguage Pokémon TCG Database", "category": "Entertainment", "link": "https://www.tcgdex.dev/", "auth": "none"},
|
|
176
|
+
|
|
177
|
+
# === FACE RECOGNITION ===
|
|
178
|
+
{"name": "Kairos", "description": "Face recognition, emotion analysis", "category": "AI/ML", "link": "https://www.kairos.com/", "auth": "apiKey"},
|
|
179
|
+
{"name": "Skybiometry", "description": "Face detection, emotional analysis", "category": "AI/ML", "link": "https://www.skybiometry.com", "auth": "apiKey"},
|
|
180
|
+
|
|
181
|
+
# === FILE STORAGE ===
|
|
182
|
+
{"name": "Amazon S3", "description": "Access to stored files", "category": "Cloud Storage", "link": "https://aws.amazon.com/de/documentation/s3/", "auth": "apiKey"},
|
|
183
|
+
{"name": "Cloudinary", "description": "Image and video storage and manipulation", "category": "Cloud Storage", "link": "http://cloudinary.com/documentation", "auth": "apiKey"},
|
|
184
|
+
{"name": "DigitalOcean Spaces", "description": "Simple object storage", "category": "Cloud Storage", "link": "https://www.digitalocean.com/products/spaces", "auth": "apiKey"},
|
|
185
|
+
{"name": "Dropbox", "description": "Powerful API for apps that work with files", "category": "Cloud Storage", "link": "https://www.dropbox.com/developers", "auth": "OAuth"},
|
|
186
|
+
{"name": "Filestack", "description": "API for image and file manipulation", "category": "Cloud Storage", "link": "https://filestack.com/docs/", "auth": "apiKey"},
|
|
187
|
+
{"name": "Microsoft Graph", "description": "OneDrive files and photos", "category": "Cloud Storage", "link": "https://graph.microsoft.io/en-us/docs", "auth": "OAuth"},
|
|
188
|
+
{"name": "PDF Blocks", "description": "API for working with PDF documents", "category": "Document", "link": "https://www.pdfblocks.com/docs/api/getting-started", "auth": "apiKey"},
|
|
189
|
+
{"name": "SignNow", "description": "Embed branded eSignature workflows", "category": "Document", "link": "https://docs.signnow.com/docs/signnow/welcome", "auth": "apiKey"},
|
|
190
|
+
{"name": "Smash", "description": "Upload large files on websites, mobile apps", "category": "Cloud Storage", "link": "https://api.fromsmash.com/", "auth": "apiKey"},
|
|
191
|
+
{"name": "Vertopal", "description": "Convert files to a variety of formats", "category": "Document", "link": "https://www.vertopal.com/en/developer/api/introduction", "auth": "apiKey"},
|
|
192
|
+
|
|
193
|
+
# === FINANCE ===
|
|
194
|
+
{"name": "Alpha Vantage", "description": "Stock, ETF, mutual fund, forex, crypto data", "category": "Finance", "link": "https://www.alphavantage.co/", "auth": "apiKey"},
|
|
195
|
+
{"name": "Atom Finance", "description": "Market, earnings and news data", "category": "Finance", "link": "https://docs.atom.finance/", "auth": "apiKey"},
|
|
196
|
+
{"name": "IEX", "description": "Free Stocks and Market Data", "category": "Finance", "link": "https://iextrading.com/developer/", "auth": "apiKey"},
|
|
197
|
+
{"name": "Twelve Data", "description": "Stock market data real-time and historical", "category": "Finance", "link": "https://twelvedata.com/docs/", "auth": "apiKey"},
|
|
198
|
+
{"name": "IBANAPI", "description": "Validate IBAN number and get bank account", "category": "Finance", "link": "https://ibanapi.com/get-api", "auth": "apiKey"},
|
|
199
|
+
{"name": "Parqet Logo API", "description": "Free Company Logo API for 400k+ stocks", "category": "Finance", "link": "https://developers.parqet.com/docs/assets/logos", "auth": "none"},
|
|
200
|
+
{"name": "Portfolio Optimizer", "description": "API for investment portfolio optimization", "category": "Finance", "link": "https://portfoliooptimizer.io/", "auth": "apiKey"},
|
|
201
|
+
|
|
202
|
+
# === FITNESS ===
|
|
203
|
+
{"name": "FitBit", "description": "Data from Fitbit activity trackers", "category": "Fitness", "link": "https://dev.fitbit.com/build/reference/", "auth": "OAuth"},
|
|
204
|
+
{"name": "HealthGraph", "description": "RunKeeper's Health Graph data", "category": "Fitness", "link": "https://runkeeper.com/developer/healthgraph", "auth": "OAuth"},
|
|
205
|
+
{"name": "Open Food Facts", "description": "Food products with ingredients, allergens, nutrition", "category": "Food", "link": "https://en.wiki.openfoodfacts.org/API", "auth": "none"},
|
|
206
|
+
{"name": "Strava", "description": "Access and manage athlete data", "category": "Fitness", "link": "https://strava.github.io/api/", "auth": "OAuth"},
|
|
207
|
+
{"name": "VeganCheck", "description": "Information about food products by EAN/UPC", "category": "Food", "link": "https://jokenetwork.de/vegancheck-api", "auth": "none"},
|
|
208
|
+
{"name": "Withings", "description": "Data from Withings activity trackers", "category": "Fitness", "link": "http://oauth.withings.com/api", "auth": "OAuth"},
|
|
209
|
+
|
|
210
|
+
# === GOOGLE ===
|
|
211
|
+
{"name": "Gmail API", "description": "The Gmail REST API", "category": "Email", "link": "https://developers.google.com/gmail/api/", "auth": "OAuth"},
|
|
212
|
+
{"name": "Google BigQuery API", "description": "Data platform for creating, managing data", "category": "Databases", "link": "https://cloud.google.com/bigquery/docs/reference/rest/v2/", "auth": "OAuth"},
|
|
213
|
+
{"name": "Google Books API", "description": "Search for books and manage library", "category": "Content", "link": "https://developers.google.com/books/", "auth": "apiKey"},
|
|
214
|
+
{"name": "Google Calendar API", "description": "Manipulate events and calendar data", "category": "Utilities", "link": "https://developers.google.com/google-apps/calendar/", "auth": "OAuth"},
|
|
215
|
+
{"name": "Google Classroom API", "description": "The Google Classroom API", "category": "Education", "link": "https://developers.google.com/classroom/", "auth": "OAuth"},
|
|
216
|
+
{"name": "Google Custom Search API", "description": "Search over a website or collection", "category": "Search", "link": "https://developers.google.com/custom-search/json-api/v1/overview", "auth": "apiKey"},
|
|
217
|
+
{"name": "Google Drive API", "description": "Interact with Google Drive", "category": "Cloud Storage", "link": "https://developers.google.com/drive/v2/reference/", "auth": "OAuth"},
|
|
218
|
+
{"name": "Google Fitness API", "description": "The Fit API", "category": "Fitness", "link": "https://developers.google.com/fit/", "auth": "OAuth"},
|
|
219
|
+
{"name": "Google Fonts API", "description": "Add fonts to any web page", "category": "Design", "link": "https://developers.google.com/fonts/", "auth": "apiKey"},
|
|
220
|
+
{"name": "Google Genomics API", "description": "Access to Genomics data", "category": "Health", "link": "https://cloud.google.com/genomics/reference/rest/", "auth": "OAuth"},
|
|
221
|
+
|
|
222
|
+
# === IDENTITY ===
|
|
223
|
+
{"name": "BlockScore", "description": "Real-time identity verification API", "category": "Security", "link": "https://docs.blockscore.com/", "auth": "apiKey"},
|
|
224
|
+
{"name": "Cognito", "description": "Identity verification and retrieval", "category": "Security", "link": "https://cognitohq.com/docs", "auth": "apiKey"},
|
|
225
|
+
{"name": "Whitepages Pro", "description": "Global Identity Verification API", "category": "Security", "link": "https://pro.whitepages.com/", "auth": "apiKey"},
|
|
226
|
+
|
|
227
|
+
# === IOT ===
|
|
228
|
+
{"name": "Ably", "description": "Cross-protocol real time communication", "category": "IoT", "link": "https://www.ably.com/documentation", "auth": "apiKey"},
|
|
229
|
+
{"name": "Particle", "description": "Manage Particle devices including Arduino", "category": "IoT", "link": "https://docs.particle.io/reference/api/", "auth": "apiKey"},
|
|
230
|
+
{"name": "PubNub", "description": "Real time applications with hardware devices", "category": "IoT", "link": "https://www.pubnub.com/docs", "auth": "apiKey"},
|
|
231
|
+
{"name": "Philips Hue", "description": "Control Hue brand lights", "category": "IoT", "link": "https://developers.meethue.com/documentation/getting-started", "auth": "apiKey"},
|
|
232
|
+
{"name": "SmartThings", "description": "Samsung SmartThings Smart Home Hub API", "category": "IoT", "link": "http://developer.smartthings.com/", "auth": "OAuth"},
|
|
233
|
+
{"name": "ThingSpeak", "description": "Internet of Things application and API", "category": "IoT", "link": "https://github.com/iobridge/ThingSpeak", "auth": "apiKey"},
|
|
234
|
+
{"name": "Zetta", "description": "Open source platform for creating IoT servers", "category": "IoT", "link": "https://github.com/zettajs/zetta/wiki", "auth": "none"},
|
|
235
|
+
|
|
236
|
+
# === MACHINE LEARNING ===
|
|
237
|
+
{"name": "Amazon ML API", "description": "Predictions with machine learning models", "category": "AI/ML", "link": "http://docs.aws.amazon.com/machine-learning/latest/APIReference/", "auth": "apiKey"},
|
|
238
|
+
{"name": "AYLIEN", "description": "NLP, Information Retrieval and ML tools", "category": "AI/ML", "link": "http://aylien.com/", "auth": "apiKey"},
|
|
239
|
+
{"name": "BigML", "description": "Machine Learning API for decision trees", "category": "AI/ML", "link": "http://bigml.com/api/", "auth": "apiKey"},
|
|
240
|
+
{"name": "Google Cloud ML", "description": "Cloud-based machine learning", "category": "AI/ML", "link": "https://cloud.google.com/ml-engine/docs/", "auth": "apiKey"},
|
|
241
|
+
{"name": "Microsoft Azure ML", "description": "Cognitive services and machine learning", "category": "AI/ML", "link": "https://azure.microsoft.com/en-us/services/cognitive-services/", "auth": "apiKey"},
|
|
242
|
+
{"name": "ObjectCut", "description": "Automatic background removal powered by AI", "category": "AI/ML", "link": "https://objectcut.com", "auth": "apiKey"},
|
|
243
|
+
{"name": "OVHcloud AI Endpoints", "description": "GenAI & ML integration with secure APIs", "category": "AI/ML", "link": "https://endpoints.ai.cloud.ovh.net/", "auth": "apiKey"},
|
|
244
|
+
|
|
245
|
+
# === MAPS ===
|
|
246
|
+
{"name": "Amazon Maps API", "description": "Interactive 3D maps for Fire Tablet and phone", "category": "Geocoding", "link": "https://developer.amazon.com/maps", "auth": "apiKey"},
|
|
247
|
+
{"name": "Bing Maps", "description": "Bing Maps APIs", "category": "Geocoding", "link": "https://www.microsoft.com/maps/choose-your-bing-maps-API.aspx", "auth": "apiKey"},
|
|
248
|
+
{"name": "Cartes.io", "description": "Create maps and markers without authentication", "category": "Geocoding", "link": "https://github.com/M-Media-Group/Cartes.io/wiki/API", "auth": "none"},
|
|
249
|
+
{"name": "CartoDB", "description": "Generate maps based on CartoDB data", "category": "Geocoding", "link": "https://carto.com/developers/", "auth": "apiKey"},
|
|
250
|
+
{"name": "Google Maps API", "description": "Google Maps APIs for Android, iOS, web", "category": "Geocoding", "link": "https://developers.google.com/maps/", "auth": "apiKey"},
|
|
251
|
+
{"name": "HERE Maps API", "description": "JavaScript, iOS, Android, or REST services", "category": "Geocoding", "link": "https://developer.here.com/", "auth": "apiKey"},
|
|
252
|
+
{"name": "Leaflet.js", "description": "Open-source JavaScript library for maps", "category": "Geocoding", "link": "http://leafletjs.com/", "auth": "none"},
|
|
253
|
+
{"name": "Mapbox", "description": "Access to MapBox's API", "category": "Geocoding", "link": "https://www.mapbox.com/developers/api/maps/", "auth": "apiKey"},
|
|
254
|
+
{"name": "OpenStreetMap", "description": "API access to OSM", "category": "Geocoding", "link": "http://wiki.openstreetmap.org/wiki/API", "auth": "OAuth"},
|
|
255
|
+
{"name": "Scribble Maps", "description": "Cross browser HTML5/JavaScript map builder", "category": "Geocoding", "link": "https://www.scribblemaps.com/api/", "auth": "apiKey"},
|
|
256
|
+
{"name": "Yandex Maps", "description": "Yandex.Maps tools for web apps", "category": "Geocoding", "link": "https://tech.yandex.com/maps/", "auth": "apiKey"},
|
|
257
|
+
|
|
258
|
+
# === MATH ===
|
|
259
|
+
{"name": "Newton", "description": "API for Arithmetic and Symbolic Math", "category": "Utilities", "link": "https://newton.now.sh/", "auth": "none"},
|
|
260
|
+
|
|
261
|
+
# === MEDICAL ===
|
|
262
|
+
{"name": "COVID-19 Data", "description": "Live and historical Coronavirus data", "category": "Health", "link": "https://github.com/M-Media-Group/Covid-19-API", "auth": "none"},
|
|
263
|
+
{"name": "Infermedica", "description": "AI-based patient triage and diagnosis", "category": "Health", "link": "https://developer.infermedica.com/docs/introduction", "auth": "apiKey"},
|
|
264
|
+
|
|
265
|
+
# === MISCELLANEOUS ===
|
|
266
|
+
{"name": "Mozilla Addons", "description": "Catalogue of addons for Firefox", "category": "Development", "link": "https://addons-server.readthedocs.io/en/latest/topics/api/index.html", "auth": "apiKey"},
|
|
267
|
+
{"name": "Art Institute of Chicago API", "description": "Explore Art Institute public data", "category": "Content", "link": "https://api.artic.edu/docs/", "auth": "none"},
|
|
268
|
+
{"name": "Bored API", "description": "Generates tasks to do when bored", "category": "Entertainment", "link": "https://www.boredapi.com/documentation", "auth": "none"},
|
|
269
|
+
{"name": "BrowserCat", "description": "Headless browser API for automation", "category": "Development", "link": "https://www.browsercat.com/docs", "auth": "apiKey"},
|
|
270
|
+
{"name": "Bruzu", "description": "Dynamically generate Images with URL string", "category": "Design", "link": "https://docs.bruzu.com", "auth": "apiKey"},
|
|
271
|
+
{"name": "ChuckNorris.io", "description": "Hand curated Chuck Norris facts", "category": "Entertainment", "link": "https://api.chucknorris.io", "auth": "none"},
|
|
272
|
+
{"name": "Cloudflare Trace", "description": "Get IP Address, User Agent, Country Code", "category": "Utilities", "link": "https://www.cloudflare.com/cdn-cgi/trace", "auth": "none"},
|
|
273
|
+
{"name": "Cloudlayer.io", "description": "Generate PDFs and Images from websites", "category": "Document", "link": "https://cloudlayer.io", "auth": "apiKey"},
|
|
274
|
+
{"name": "Codewars API", "description": "Coding challenge data and statistics", "category": "Development", "link": "https://dev.codewars.com/", "auth": "none"},
|
|
275
|
+
{"name": "Congress.gov API", "description": "Machine-readable data from Congress.gov", "category": "Government", "link": "https://api.congress.gov", "auth": "apiKey"},
|
|
276
|
+
{"name": "Dataflow Kit", "description": "Web Scraper API to extract information", "category": "Development", "link": "https://dataflowkit.com/doc-api", "auth": "apiKey"},
|
|
277
|
+
{"name": "Domainsdb.info", "description": "Search for registered domain names", "category": "Development", "link": "https://domainsdb.info", "auth": "none"},
|
|
278
|
+
{"name": "Evil Insult Generator", "description": "Generate evil insults", "category": "Entertainment", "link": "https://evilinsult.com/api/", "auth": "none"},
|
|
279
|
+
{"name": "Flowdash", "description": "Create, edit, delete workflow data", "category": "Business", "link": "https://docs.flowdash.com/docs/api-introduction", "auth": "apiKey"},
|
|
280
|
+
{"name": "Game of Thrones Quotes", "description": "Game of Thrones quotes API", "category": "Entertainment", "link": "https://gameofthronesquotes.xyz", "auth": "none"},
|
|
281
|
+
{"name": "Geocodify", "description": "Worldwide geocoding and autocomplete", "category": "Geocoding", "link": "https://geocodify.com", "auth": "apiKey"},
|
|
282
|
+
{"name": "Giphy", "description": "Worlds largest library of GIFs", "category": "Entertainment", "link": "https://developers.giphy.com/docs/", "auth": "apiKey"},
|
|
283
|
+
{"name": "Httpbin", "description": "Simple HTTP Request & Response Service", "category": "Development", "link": "https://httpbin.org/", "auth": "none"},
|
|
284
|
+
{"name": "Image-Charts", "description": "Chart image from URL GET or POST", "category": "Design", "link": "https://www.image-charts.com", "auth": "none"},
|
|
285
|
+
{"name": "Jobicy", "description": "Latest remote job listings", "category": "Business", "link": "https://jobicy.com/jobs-rss-feed", "auth": "none"},
|
|
286
|
+
{"name": "JSONbin.io", "description": "Free JSON data storage service", "category": "Development", "link": "https://jsonbin.io/api-reference", "auth": "apiKey"},
|
|
287
|
+
{"name": "Judge0 API", "description": "Compile and run source code", "category": "Development", "link": "https://api.judge0.com/", "auth": "apiKey"},
|
|
288
|
+
{"name": "Labs64 NetLicensing", "description": "Innovative License Management Solution", "category": "Business", "link": "https://netlicensing.io/wiki/restful-api", "auth": "apiKey"},
|
|
289
|
+
{"name": "LinkPreview", "description": "Returns title, description and preview image", "category": "Development", "link": "https://www.linkpreview.net", "auth": "apiKey"},
|
|
290
|
+
{"name": "LiveChat", "description": "Customer Service software with APIs", "category": "Customer Support", "link": "https://developers.livechatinc.com/", "auth": "apiKey"},
|
|
291
|
+
{"name": "NetworkCalc", "description": "Network calculator tools like subnet calculations", "category": "Development", "link": "https://networkcalc.com/api/docs", "auth": "none"},
|
|
292
|
+
{"name": "PDFmyURL", "description": "Converts web pages to PDF", "category": "Document", "link": "https://pdfmyurl.com/html-to-pdf-api", "auth": "apiKey"},
|
|
293
|
+
{"name": "Pastebin", "description": "Share text or code quickly", "category": "Development", "link": "https://pastebin.com/doc_scraping_api", "auth": "apiKey"},
|
|
294
|
+
{"name": "PhantAuth", "description": "Random User Generator + OpenID Connect", "category": "Security", "link": "https://www.phantauth.net/", "auth": "none"},
|
|
295
|
+
{"name": "QuickChart", "description": "Generate Chart.js images for email", "category": "Design", "link": "https://quickchart.io", "auth": "none"},
|
|
296
|
+
{"name": "Quran API", "description": "RESTful Quran API for Ayah, Surah, Juz", "category": "Content", "link": "https://alquran.cloud/api", "auth": "none"},
|
|
297
|
+
{"name": "Scraper API", "description": "Handles proxies and CAPTCHAs for scraping", "category": "Development", "link": "https://www.scraperapi.com", "auth": "apiKey"},
|
|
298
|
+
{"name": "SearchApi", "description": "Real-time API for scraping search engines", "category": "Search", "link": "https://www.searchapi.io/", "auth": "apiKey"},
|
|
299
|
+
{"name": "Shadify", "description": "Generate data for games and puzzles", "category": "Entertainment", "link": "https://github.com/cheatsnake/shadify", "auth": "none"},
|
|
300
|
+
{"name": "Shotstack Video Editing", "description": "Scalable video automation workflows", "category": "Video", "link": "https://shotstack.io/docs/", "auth": "apiKey"},
|
|
301
|
+
{"name": "StackExchange", "description": "RESTful API for StackExchange sites", "category": "Development", "link": "https://api.stackexchange.com/docs", "auth": "OAuth"},
|
|
302
|
+
{"name": "REST Countries", "description": "Get country information via RESTful API", "category": "Content", "link": "https://restcountries.eu", "auth": "none"},
|
|
303
|
+
{"name": "Typeform", "description": "Create and edit Typeform surveys", "category": "Business", "link": "https://developer.typeform.com/", "auth": "OAuth"},
|
|
304
|
+
{"name": "Wallhaven", "description": "Huge wallpaper library", "category": "Entertainment", "link": "https://wallhaven.cc/help/api", "auth": "apiKey"},
|
|
305
|
+
{"name": "Who Hosts This", "description": "Detect hosting provider of any website", "category": "Development", "link": "https://www.who-hosts-this.com/API", "auth": "apiKey"},
|
|
306
|
+
{"name": "WolframAlpha", "description": "Computational knowledge integration", "category": "AI/ML", "link": "http://products.wolframalpha.com/api/", "auth": "apiKey"},
|
|
307
|
+
|
|
308
|
+
# === MOVIES ===
|
|
309
|
+
{"name": "OMDB", "description": "Movie metadata from OMDb", "category": "Entertainment", "link": "https://www.omdbapi.com/", "auth": "apiKey"},
|
|
310
|
+
{"name": "TMDb", "description": "Powerful movie searches and discovery", "category": "Entertainment", "link": "https://www.themoviedb.org/documentation/api", "auth": "apiKey"},
|
|
311
|
+
{"name": "Trakt", "description": "TV shows and movies everyone is watching", "category": "Entertainment", "link": "https://trakt.docs.apiary.io/", "auth": "apiKey"},
|
|
312
|
+
{"name": "TVmaze", "description": "TV Show and web series database", "category": "Entertainment", "link": "https://www.tvmaze.com/api", "auth": "none"},
|
|
313
|
+
|
|
314
|
+
# === MUSIC ===
|
|
315
|
+
{"name": "AI Mastering", "description": "Automated audio mastering service", "category": "Music", "link": "https://aimastering.com/api_docs/", "auth": "apiKey"},
|
|
316
|
+
{"name": "Deezer", "description": "Internet-based music streaming service", "category": "Music", "link": "http://developers.deezer.com/api", "auth": "OAuth"},
|
|
317
|
+
{"name": "Discogs", "description": "Database of artists, labels, releases", "category": "Music", "link": "https://www.discogs.com/developers/", "auth": "OAuth"},
|
|
318
|
+
{"name": "Last.fm", "description": "Build programs using Last.fm data", "category": "Music", "link": "http://www.last.fm/api", "auth": "apiKey"},
|
|
319
|
+
{"name": "NPR API", "description": "NPR stories in structured way", "category": "Content", "link": "https://dev.npr.org/", "auth": "apiKey"},
|
|
320
|
+
{"name": "Rhapsody", "description": "Access metadata and user library", "category": "Music", "link": "https://developer.rhapsody.com/", "auth": "apiKey"},
|
|
321
|
+
{"name": "SearchLy", "description": "Song similarity search based on lyrics", "category": "Music", "link": "https://github.com/AlbertSuarez/searchly", "auth": "none"},
|
|
322
|
+
{"name": "SoundCloud", "description": "Upload and share sounds", "category": "Music", "link": "https://developers.soundcloud.com", "auth": "OAuth"},
|
|
323
|
+
{"name": "Spotify", "description": "Fetch data from Spotify music catalog", "category": "Music", "link": "https://beta.developer.spotify.com/documentation/web-api", "auth": "OAuth"},
|
|
324
|
+
{"name": "TheAudioDB", "description": "Free JSON API for music data", "category": "Music", "link": "http://www.theaudiodb.com", "auth": "none"},
|
|
325
|
+
{"name": "Setlist.fm", "description": "Easy access to setlist data", "category": "Music", "link": "https://api.setlist.fm/docs/1.0/index.html", "auth": "apiKey"},
|
|
326
|
+
{"name": "TuneFind", "description": "Song, show, and movie data", "category": "Music", "link": "http://www.tunefind.com/api", "auth": "apiKey"},
|
|
327
|
+
{"name": "Genius", "description": "Details about Genius artists and songs", "category": "Music", "link": "https://docs.genius.com/", "auth": "OAuth"},
|
|
328
|
+
{"name": "Acoustid", "description": "Fingerprint database search", "category": "Music", "link": "https://acoustid.org/webservice", "auth": "apiKey"},
|
|
329
|
+
{"name": "AudD", "description": "Recognize music in recordings", "category": "Music", "link": "https://docs.audd.io/", "auth": "apiKey"},
|
|
330
|
+
{"name": "Gracenote", "description": "Largest music and video metadata source", "category": "Music", "link": "https://developer.gracenote.com/", "auth": "apiKey"},
|
|
331
|
+
{"name": "ChartLyrics", "description": "Search for lyrics by artist name", "category": "Music", "link": "http://www.chartlyrics.com/api.aspx", "auth": "none"},
|
|
332
|
+
{"name": "Musixmatch", "description": "World's most authoritative lyrics DB", "category": "Music", "link": "https://developer.musixmatch.com/", "auth": "apiKey"},
|
|
333
|
+
{"name": "iTunes Search", "description": "Search iTunes Store content", "category": "Music", "link": "https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/iTuneSearchAPI/", "auth": "none"},
|
|
334
|
+
{"name": "Reverb", "description": "Sell and buy music merchandise", "category": "E-Commerce", "link": "https://dev.reverb.com/", "auth": "OAuth"},
|
|
335
|
+
|
|
336
|
+
# === NEWS ===
|
|
337
|
+
{"name": "Faroo", "description": "Alternative to Google News Search API", "category": "News", "link": "http://www.faroo.com/hp/api/api.html", "auth": "apiKey"},
|
|
338
|
+
{"name": "Mediastack", "description": "Scalable JSON API for worldwide news", "category": "News", "link": "https://mediastack.com/documentation", "auth": "apiKey"},
|
|
339
|
+
{"name": "New York Times", "description": "Article search, best sellers, more", "category": "News", "link": "http://developer.nytimes.com/", "auth": "apiKey"},
|
|
340
|
+
{"name": "NewsAPI", "description": "70+ news sources and headlines", "category": "News", "link": "https://newsapi.org/", "auth": "apiKey"},
|
|
341
|
+
{"name": "NewsCatcherAPI", "description": "Find news by topic, country, language", "category": "News", "link": "https://newscatcherapi.com/news-api", "auth": "apiKey"},
|
|
342
|
+
{"name": "RSS API", "description": "Parse and subscribe to RSS Feeds", "category": "News", "link": "https://docs.rssapi.net", "auth": "apiKey"},
|
|
343
|
+
{"name": "The Guardian", "description": "Access content from The Guardian", "category": "News", "link": "http://open-platform.theguardian.com/", "auth": "apiKey"},
|
|
344
|
+
|
|
345
|
+
# === NLP ===
|
|
346
|
+
{"name": "Cloudmersive NLP", "description": "Unified NLP APIs for translation, sentiment", "category": "AI/ML", "link": "https://cloudmersive.com/nlp-api", "auth": "apiKey"},
|
|
347
|
+
{"name": "Cohere", "description": "Text summarization, extraction, generation", "category": "AI/ML", "link": "https://docs.cohere.com/reference/about", "auth": "apiKey"},
|
|
348
|
+
{"name": "DialogFlow", "description": "Natural Language Interactions for Bots", "category": "AI/ML", "link": "https://dialogflow.com/", "auth": "apiKey"},
|
|
349
|
+
{"name": "Datum Box", "description": "Open-source Machine Learning Framework", "category": "AI/ML", "link": "http://www.datumbox.com/machine-learning-api/", "auth": "apiKey"},
|
|
350
|
+
{"name": "Lemonfox.ai", "description": "Speech-to-text API using Whisper model", "category": "AI/ML", "link": "https://www.lemonfox.ai/apis/speech-to-text", "auth": "apiKey"},
|
|
351
|
+
{"name": "LUIS AI", "description": "Language Understanding for applications", "category": "AI/ML", "link": "https://www.luis.ai/", "auth": "apiKey"},
|
|
352
|
+
{"name": "MeaningCloud", "description": "Text analysis APIs for multiple languages", "category": "AI/ML", "link": "https://www.meaningcloud.com", "auth": "apiKey"},
|
|
353
|
+
{"name": "OpenAI API", "description": "GPT-3 and Codex for NL tasks", "category": "AI/ML", "link": "https://platform.openai.com/docs/introduction", "auth": "apiKey"},
|
|
354
|
+
{"name": "ParallelDots", "description": "Sentiment analysis and emotion detection", "category": "AI/ML", "link": "https://www.paralleldots.com/text-analysis-apis", "auth": "apiKey"},
|
|
355
|
+
{"name": "SpeechText.AI", "description": "Cloud Speech Recognition API", "category": "AI/ML", "link": "https://speechtext.ai/speech-recognition-api", "auth": "apiKey"},
|
|
356
|
+
{"name": "SummarizeBot", "description": "AI web data extraction and analysis", "category": "AI/ML", "link": "https://www.summarizebot.com/summarization_business.html", "auth": "apiKey"},
|
|
357
|
+
{"name": "TextRazor", "description": "Extract Who, What, Why, How from text", "category": "AI/ML", "link": "https://www.textrazor.com/plans", "auth": "apiKey"},
|
|
358
|
+
{"name": "VoiceRSS", "description": "Convert Text to Speech, 15+ languages", "category": "AI/ML", "link": "http://www.voicerss.org/", "auth": "apiKey"},
|
|
359
|
+
{"name": "Wit AI", "description": "Intent-based NLP API for chatbots", "category": "AI/ML", "link": "https://wit.ai/", "auth": "apiKey"},
|
|
360
|
+
{"name": "Word Associations", "description": "Get associations for a word or phrase", "category": "Language", "link": "https://wordassociations.net/en/api", "auth": "apiKey"},
|
|
361
|
+
|
|
362
|
+
# === PLACEHOLDER IMAGES ===
|
|
363
|
+
{"name": "DummyImage", "description": "Placeholder images with flexibility", "category": "Design", "link": "https://dummyimage.com/", "auth": "none"},
|
|
364
|
+
{"name": "Pixabay", "description": "Restful API for free images and videos", "category": "Photography", "link": "https://pixabay.com/api/docs/", "auth": "apiKey"},
|
|
365
|
+
{"name": "SingleColorImage", "description": "Generate single color images to 5000x5000", "category": "Design", "link": "https://singlecolorimage.com/api.html", "auth": "none"},
|
|
366
|
+
{"name": "Lorem Picsum", "description": "Beautiful placeholders from Unsplash", "category": "Design", "link": "https://picsum.photos/", "auth": "none"},
|
|
367
|
+
|
|
368
|
+
# === PLACES ===
|
|
369
|
+
{"name": "bng2latlong", "description": "Convert OSGB36 to WGS84 coordinates", "category": "Geocoding", "link": "https://www.getthedata.com/bng2latlong", "auth": "none"},
|
|
370
|
+
{"name": "CountryAPI", "description": "Get all countries with important info", "category": "Content", "link": "https://fabian7593.github.io/CountryAPI/", "auth": "none"},
|
|
371
|
+
{"name": "Factual", "description": "Places search by lat/long and full text", "category": "Geocoding", "link": "https://developer.factual.com/docs/getting-started", "auth": "apiKey"},
|
|
372
|
+
{"name": "Foursquare Venue", "description": "Places search with categories", "category": "Geocoding", "link": "https://developer.foursquare.com/overview/venues", "auth": "apiKey"},
|
|
373
|
+
{"name": "Google Places API", "description": "Places search with various filters", "category": "Geocoding", "link": "https://developers.google.com/maps/documentation/places/", "auth": "apiKey"},
|
|
374
|
+
{"name": "World Wonders API", "description": "Famous wonders from around the world", "category": "Content", "link": "https://github.com/Rolv-Apneseth/world-wonders-api", "auth": "none"},
|
|
375
|
+
{"name": "Yelp", "description": "Search by longitude, latitude, address", "category": "Business", "link": "https://docs.developer.yelp.com/docs/getting-started", "auth": "apiKey"},
|
|
376
|
+
|
|
377
|
+
# === QUOTES ===
|
|
378
|
+
{"name": "Breaking Bad Quotes", "description": "Quotes from Breaking Bad", "category": "Entertainment", "link": "https://breakingbadquotes.xyz", "auth": "none"},
|
|
379
|
+
{"name": "FavQs", "description": "Collect, discover, share favorite quotes", "category": "Content", "link": "https://favqs.com/api", "auth": "apiKey"},
|
|
380
|
+
{"name": "Forismatic", "description": "Random quote per click", "category": "Content", "link": "http://api.forismatic.com/api/1.0/", "auth": "none"},
|
|
381
|
+
{"name": "Quotable", "description": "Fetch quotes by author, ID, tags", "category": "Content", "link": "https://github.com/lukePeavey/quotable", "auth": "none"},
|
|
382
|
+
{"name": "South Park Quotes", "description": "Quotes from South Park", "category": "Entertainment", "link": "https://github.com/Thatskat/southpark-quotes-api", "auth": "none"},
|
|
383
|
+
|
|
384
|
+
# === SCIENCE ===
|
|
385
|
+
{"name": "MPDS", "description": "Experimental materials science data", "category": "Science", "link": "https://developer.mpds.io", "auth": "apiKey"},
|
|
386
|
+
{"name": "NASA", "description": "NASA data, imagery, asteroids and more", "category": "Science", "link": "https://api.nasa.gov/index.html", "auth": "apiKey"},
|
|
387
|
+
{"name": "Open Science Framework", "description": "Workflow/project management for research", "category": "Science", "link": "https://osf.io/y9jdt/wiki/home/", "auth": "OAuth"},
|
|
388
|
+
{"name": "Open Access Button", "description": "Free legal research articles", "category": "Science", "link": "https://openaccessbutton.org/api", "auth": "none"},
|
|
389
|
+
{"name": "SHARE", "description": "Free open dataset of scholarly research", "category": "Science", "link": "http://share-research.readthedocs.io/", "auth": "none"},
|
|
390
|
+
|
|
391
|
+
# === SCREENSHOTS ===
|
|
392
|
+
{"name": "ApiFlash", "description": "Chrome based screenshot API", "category": "Development", "link": "https://apiflash.com/", "auth": "apiKey"},
|
|
393
|
+
{"name": "SavePage.io", "description": "Screenshot any website with Chrome", "category": "Development", "link": "https://docs.savepage.io", "auth": "apiKey"},
|
|
394
|
+
{"name": "ScreenshotAPI.net", "description": "Generate screenshots of any website", "category": "Development", "link": "https://screenshotapi.net", "auth": "apiKey"},
|
|
395
|
+
|
|
396
|
+
# === SOCIAL MEDIA ===
|
|
397
|
+
{"name": "Ayrshare", "description": "Social media APIs for scheduling, analytics", "category": "Social Media", "link": "https://docs.ayrshare.com", "auth": "apiKey"},
|
|
398
|
+
{"name": "Daily Motion", "description": "Build applications around DailyMotion", "category": "Video", "link": "https://developer.dailymotion.com/", "auth": "OAuth"},
|
|
399
|
+
{"name": "DeviantArt", "description": "Largest social networking for artists", "category": "Social Media", "link": "https://www.deviantart.com/developers/", "auth": "OAuth"},
|
|
400
|
+
{"name": "EventBrite", "description": "Interact with EventBrite API", "category": "Events", "link": "https://github.com/eventbrite/eventbrite-sdk-python", "auth": "OAuth"},
|
|
401
|
+
{"name": "Facebook", "description": "For ads, games, payments, login, sharing", "category": "Social Media", "link": "https://developers.facebook.com/", "auth": "OAuth"},
|
|
402
|
+
{"name": "Flickr", "description": "Search user content, upload photos", "category": "Photography", "link": "https://www.flickr.com/services/api/", "auth": "apiKey"},
|
|
403
|
+
{"name": "Foursquare", "description": "Access Foursquare database and users", "category": "Social Media", "link": "https://developer.foursquare.com/", "auth": "OAuth"},
|
|
404
|
+
{"name": "GoodReads", "description": "Access to Goodreads data for books", "category": "Content", "link": "https://www.goodreads.com/api", "auth": "apiKey"},
|
|
405
|
+
{"name": "Gravatar", "description": "Create profiles and avatars", "category": "Social Media", "link": "https://en.gravatar.com/site/implement/", "auth": "none"},
|
|
406
|
+
{"name": "Hacker News", "description": "Documentation for Official HN API", "category": "News", "link": "https://github.com/HackerNews/API", "auth": "none"},
|
|
407
|
+
{"name": "Imgur", "description": "Imgur's API for entire functionality", "category": "Photography", "link": "https://api.imgur.com/", "auth": "OAuth"},
|
|
408
|
+
{"name": "Instagram", "description": "Search photos by location, user, tags", "category": "Social Media", "link": "https://www.instagram.com/developer/", "auth": "OAuth"},
|
|
409
|
+
{"name": "LinkedIn", "description": "Access user accounts, data, connections", "category": "Social Media", "link": "https://developer.linkedin.com/", "auth": "OAuth"},
|
|
410
|
+
{"name": "Mastodon", "description": "APIs for open-source Twitter competitor", "category": "Social Media", "link": "https://docs.joinmastodon.org/", "auth": "OAuth"},
|
|
411
|
+
{"name": "Microlink", "description": "Take screenshots, extract colors", "category": "Development", "link": "https://microlink.io", "auth": "apiKey"},
|
|
412
|
+
{"name": "Pinterest", "description": "View repinned Pins, user profiles", "category": "Social Media", "link": "https://www.pinterest.com/login/", "auth": "OAuth"},
|
|
413
|
+
{"name": "Reddit", "description": "Build clients, crawlers, extensions", "category": "Social Media", "link": "https://github.com/reddit/reddit/wiki/API", "auth": "OAuth"},
|
|
414
|
+
{"name": "Telegram", "description": "Build customized Telegram clients", "category": "Communication", "link": "https://core.telegram.org/api", "auth": "apiKey"},
|
|
415
|
+
{"name": "TikTok", "description": "Display TikTok creator's videos and profile", "category": "Social Media", "link": "https://developers.tiktok.com/", "auth": "OAuth"},
|
|
416
|
+
{"name": "Trash Nothing", "description": "Build on freecycling and reuse communities", "category": "Social Media", "link": "https://trashnothing.com/developer", "auth": "OAuth"},
|
|
417
|
+
{"name": "Twitch", "description": "Develop with Twitch's rich feature set", "category": "Video", "link": "https://dev.twitch.tv/docs", "auth": "OAuth"},
|
|
418
|
+
{"name": "Twitter", "description": "Interact with Twitter functions", "category": "Social Media", "link": "https://developer.twitter.com/", "auth": "OAuth"},
|
|
419
|
+
{"name": "Tumblr", "description": "Access content, likes, followers, drafts", "category": "Social Media", "link": "https://www.tumblr.com/docs/en/api/v2", "auth": "OAuth"},
|
|
420
|
+
{"name": "Vimeo", "description": "Access to Vimeo's API", "category": "Video", "link": "https://developer.vimeo.com/", "auth": "OAuth"},
|
|
421
|
+
{"name": "Viber", "description": "Create unique experiences for users", "category": "Communication", "link": "https://developers.viber.com/docs/api/", "auth": "apiKey"},
|
|
422
|
+
{"name": "VK", "description": "Access to VKontakte's API", "category": "Social Media", "link": "https://vk.com/dev", "auth": "OAuth"},
|
|
423
|
+
{"name": "WordPress", "description": "Access to Wordpress APIs", "category": "Content", "link": "https://codex.wordpress.org/WordPress_APIs", "auth": "OAuth"},
|
|
424
|
+
{"name": "Untappd", "description": "Socially share beers you're enjoying", "category": "Social Media", "link": "https://untappd.com/api/docs", "auth": "OAuth"},
|
|
425
|
+
{"name": "YouTube", "description": "Add YouTube functionality to sites", "category": "Video", "link": "https://developers.google.com/youtube/", "auth": "OAuth"},
|
|
426
|
+
{"name": "Zomato", "description": "Restaurant information for 1.5M+ restaurants", "category": "Food", "link": "https://developers.zomato.com/api", "auth": "apiKey"},
|
|
427
|
+
|
|
428
|
+
# === SOURCE CONTROL ===
|
|
429
|
+
{"name": "Bitbucket", "description": "Access to Bitbucket's API", "category": "Development", "link": "https://developer.atlassian.com/bitbucket/api/2/reference/", "auth": "OAuth"},
|
|
430
|
+
{"name": "GitHub", "description": "Build real-world GitHub applications", "category": "Development", "link": "https://developer.github.com/v3/", "auth": "OAuth"},
|
|
431
|
+
{"name": "GitHub Gists", "description": "Access to GitHub's Gists API", "category": "Development", "link": "https://developer.github.com/v3/gists/", "auth": "OAuth"},
|
|
432
|
+
{"name": "GitLab", "description": "Access to GitLab's API", "category": "Development", "link": "https://docs.gitlab.com/ce/api/README.html", "auth": "OAuth"},
|
|
433
|
+
{"name": "Mercurial", "description": "Access to Mercurial's API", "category": "Development", "link": "https://www.mercurial-scm.org/wiki/MercurialApi", "auth": "none"},
|
|
434
|
+
{"name": "SVN", "description": "Collection of modular C libraries", "category": "Development", "link": "https://subversion.apache.org/docs/api/1.8/", "auth": "none"},
|
|
435
|
+
{"name": "Team Foundation Server", "description": "REST, OAuth, Json and service hooks", "category": "Development", "link": "https://docs.microsoft.com/en-us/azure/devops/integrate/", "auth": "OAuth"},
|
|
436
|
+
|
|
437
|
+
# === SPORT ===
|
|
438
|
+
{"name": "Ergast Formula 1", "description": "F1 race data from 1950 to today", "category": "Sports", "link": "http://ergast.com/mrd/", "auth": "none"},
|
|
439
|
+
{"name": "FIFA Women's World Cup", "description": "FIFA women's world cup matches and results", "category": "Sports", "link": "https://worldcup.sfg.io/", "auth": "none"},
|
|
440
|
+
{"name": "Football Prediction", "description": "Predictions for upcoming matches, odds", "category": "Sports", "link": "https://boggio-analytics.com/fp-api/", "auth": "apiKey"},
|
|
441
|
+
{"name": "LIVE-SCORE API", "description": "Football API for fixtures, standings", "category": "Sports", "link": "https://live-score-api.com/documentation/reference/", "auth": "apiKey"},
|
|
442
|
+
{"name": "NBA GraphQL", "description": "Current and historical NBA Stats", "category": "Sports", "link": "https://nbaapi.com/graphql/", "auth": "none"},
|
|
443
|
+
{"name": "NBA REST API", "description": "Up-to-date NBA Stats and Shot Chart", "category": "Sports", "link": "http://rest.nbaapi.com/index.html", "auth": "none"},
|
|
444
|
+
{"name": "OpenF1", "description": "Real-time Formula 1 data", "category": "Sports", "link": "https://openf1.org/", "auth": "none"},
|
|
445
|
+
{"name": "OpenLigaDB", "description": "Sports data especially football", "category": "Sports", "link": "https://www.openligadb.de/", "auth": "none"},
|
|
446
|
+
{"name": "Roanuz Cricket API", "description": "Cricket scores and player information", "category": "Sports", "link": "https://www.cricketapi.com/v5/docs/", "auth": "apiKey"},
|
|
447
|
+
{"name": "TheSportsDB", "description": "Sports events, results, players, teams", "category": "Sports", "link": "http://www.thesportsdb.com/", "auth": "apiKey"},
|
|
448
|
+
|
|
449
|
+
# === TEST DATA ===
|
|
450
|
+
{"name": "Faker API", "description": "Generate fake data for web developers", "category": "Development", "link": "https://fakerapi.it", "auth": "none"},
|
|
451
|
+
|
|
452
|
+
# === TRANSPORTATION ===
|
|
453
|
+
{"name": "ADS-B Exchange", "description": "Real-time and historical aircraft data", "category": "Transportation", "link": "https://www.adsbexchange.com/data/", "auth": "apiKey"},
|
|
454
|
+
{"name": "AfterShip", "description": "Multi-carrier shipment tracking APIs", "category": "Logistics", "link": "https://www.aftership.com/docs/api/4/overview", "auth": "apiKey"},
|
|
455
|
+
{"name": "CarsXE API", "description": "Vehicle records, specs, market values", "category": "Transportation", "link": "https://api.carsxe.com/", "auth": "apiKey"},
|
|
456
|
+
{"name": "Edmunds", "description": "Dataset containing all car makes", "category": "Transportation", "link": "http://developer.edmunds.com/", "auth": "apiKey"},
|
|
457
|
+
{"name": "HyperTrack", "description": "Build applications that track movement", "category": "Logistics", "link": "https://docs.hypertrack.com", "auth": "apiKey"},
|
|
458
|
+
{"name": "Lyft", "description": "Real-time ETAs, availability, price estimates", "category": "Transportation", "link": "https://www.lyft.com/developers", "auth": "OAuth"},
|
|
459
|
+
{"name": "Postmen", "description": "Shipping capability with 40+ carriers", "category": "Logistics", "link": "https://docs.postmen.com/", "auth": "apiKey"},
|
|
460
|
+
{"name": "Ola", "description": "Find, book and track Ola rides", "category": "Transportation", "link": "https://developers.olacabs.com/", "auth": "apiKey"},
|
|
461
|
+
{"name": "Uber", "description": "Trip experiences, ride requests, logistics", "category": "Transportation", "link": "https://developer.uber.com/", "auth": "OAuth"},
|
|
462
|
+
|
|
463
|
+
# === URL SHORTENERS ===
|
|
464
|
+
{"name": "Bitly", "description": "Access to Bitly's API", "category": "Utilities", "link": "http://dev.bitly.com/links.html", "auth": "OAuth"},
|
|
465
|
+
{"name": "GoTiny", "description": "Lightweight URL shortener with JavaScript SDK", "category": "Utilities", "link": "https://github.com/robvanbakel/gotiny-api", "auth": "none"},
|
|
466
|
+
{"name": "Is.gd", "description": "Simple URL shortener with custom endings", "category": "Utilities", "link": "https://is.gd/developers.php", "auth": "none"},
|
|
467
|
+
{"name": "ShrtURI", "description": "URL shortening API for short URLs", "category": "Utilities", "link": "https://shrturi.com/docs", "auth": "apiKey"},
|
|
468
|
+
{"name": "Tiny.cc", "description": "Easy URL shortener with custom endings", "category": "Utilities", "link": "https://tiny.cc/api-docs", "auth": "apiKey"},
|
|
469
|
+
{"name": "Tiny.UID", "description": "API for shortening long URLs", "category": "Utilities", "link": "https://tinyuid.com/docs", "auth": "apiKey"},
|
|
470
|
+
{"name": "Yourls", "description": "Generate short URLs with custom keywords", "category": "Utilities", "link": "https://yourls.org/", "auth": "apiKey"},
|
|
471
|
+
|
|
472
|
+
# === VIDEOGAMES ===
|
|
473
|
+
{"name": "CSGO API", "description": "Counter-Strike: Global Offensive data", "category": "Gaming", "link": "https://bymykel.github.io/CSGO-API/", "auth": "none"},
|
|
474
|
+
{"name": "Clash Of Clans", "description": "Information about players, clans, wars", "category": "Gaming", "link": "https://developer.clashofclans.com/", "auth": "apiKey"},
|
|
475
|
+
{"name": "Clash Royale", "description": "Information about Clash Royale", "category": "Gaming", "link": "https://github.com/martincarrera/clash-royale-api", "auth": "apiKey"},
|
|
476
|
+
{"name": "FreeToGame", "description": "Free-to-play games database API", "category": "Gaming", "link": "https://www.freetogame.com/api-doc", "auth": "none"},
|
|
477
|
+
{"name": "GamerPower", "description": "Best giveaways in gaming", "category": "Gaming", "link": "https://www.gamerpower.com/api-read", "auth": "none"},
|
|
478
|
+
{"name": "GiantBomb", "description": "Query videogames, characters, companies", "category": "Gaming", "link": "http://www.giantbomb.com/api/", "auth": "apiKey"},
|
|
479
|
+
{"name": "Hyrule Compendium", "description": "Interactive items in Breath of the Wild", "category": "Gaming", "link": "http://github.com/gadhagod/Hyrule-Compendium-API", "auth": "none"},
|
|
480
|
+
{"name": "IGDB", "description": "Video games, characters, companies info", "category": "Gaming", "link": "https://www.igdb.com/api", "auth": "apiKey"},
|
|
481
|
+
{"name": "MMO Games", "description": "MMO Games database, news, giveaways", "category": "Gaming", "link": "https://www.mmobomb.com/api", "auth": "none"},
|
|
482
|
+
{"name": "RAWG", "description": "Open video game database", "category": "Gaming", "link": "https://rawg.io/apidocs", "auth": "apiKey"},
|
|
483
|
+
{"name": "Riot Games", "description": "League of Legends developer access", "category": "Gaming", "link": "https://developer.riotgames.com/", "auth": "apiKey"},
|
|
484
|
+
|
|
485
|
+
# === WEATHER ===
|
|
486
|
+
{"name": "AccuWeather", "description": "Hourly and minute by minute forecasts", "category": "Weather", "link": "https://developer.accuweather.com/", "auth": "apiKey"},
|
|
487
|
+
{"name": "AerisWeather", "description": "Global weather data and imagery APIs", "category": "Weather", "link": "http://www.aerisweather.com/develop/", "auth": "apiKey"},
|
|
488
|
+
{"name": "BlueSky API", "description": "Global weather data with free tier", "category": "Weather", "link": "https://blueskyapi.io/docs/api", "auth": "apiKey"},
|
|
489
|
+
{"name": "Open-Meteo", "description": "Global weather forecast API, no API key", "category": "Weather", "link": "https://open-meteo.com/en/docs", "auth": "none"},
|
|
490
|
+
{"name": "OpenWeatherMap", "description": "Weather data for 200,000+ cities", "category": "Weather", "link": "http://openweathermap.org/api", "auth": "apiKey"},
|
|
491
|
+
{"name": "Storm Glass", "description": "Global marine weather data", "category": "Weather", "link": "https://stormglass.io", "auth": "apiKey"},
|
|
492
|
+
{"name": "Weather-API", "description": "Free RESTful API to check weather", "category": "Weather", "link": "https://github.com/robertoduessmann/weather-api", "auth": "none"},
|
|
493
|
+
{"name": "Weatherbit", "description": "Access forecasts for any point on Earth", "category": "Weather", "link": "https://www.weatherbit.io/api", "auth": "apiKey"},
|
|
494
|
+
{"name": "Weather Source", "description": "Powerful Weather API for heavy load", "category": "Weather", "link": "http://weathersource.com/weather-api", "auth": "apiKey"},
|
|
495
|
+
{"name": "Weatherstack", "description": "Real-Time & Historical World Weather", "category": "Weather", "link": "https://weatherstack.com/documentation", "auth": "apiKey"},
|
|
496
|
+
|
|
497
|
+
# === ADDITIONAL FROM TONNYEL AWESOME APIS ===
|
|
498
|
+
{"name": "Airtable", "description": "Create, read, update, destroy records", "category": "Business", "link": "https://airtable.com/api", "auth": "apiKey"},
|
|
499
|
+
{"name": "Buffer", "description": "Access pending and sent updates", "category": "Social Media", "link": "https://buffer.com/developers/api", "auth": "OAuth"},
|
|
500
|
+
{"name": "Concur Labs", "description": "Access to Concur's RESTful API", "category": "Business", "link": "https://developer.concur.com/api-reference/", "auth": "OAuth"},
|
|
501
|
+
{"name": "Envoy", "description": "Access to Envoy's APIs", "category": "Business", "link": "https://developers.envoy.com/", "auth": "apiKey"},
|
|
502
|
+
{"name": "JotForm", "description": "Connect to form data without website", "category": "Business", "link": "http://api.jotform.com/docs/", "auth": "apiKey"},
|
|
503
|
+
{"name": "MailChimp", "description": "Access to MailChimp's API", "category": "Email", "link": "https://developer.mailchimp.com/", "auth": "apiKey"},
|
|
504
|
+
{"name": "Quip", "description": "Automate processes and integrate Quip", "category": "Business", "link": "https://quip.com/api/", "auth": "OAuth"},
|
|
505
|
+
{"name": "Salesforce", "description": "Access to Salesforce's API", "category": "Business", "link": "https://developer.salesforce.com/page/Salesforce_APIs", "auth": "OAuth"},
|
|
506
|
+
{"name": "Square", "description": "Easy credit card processing", "category": "Payments", "link": "https://connect.squareup.com/", "auth": "OAuth"},
|
|
507
|
+
{"name": "Wolfram Data Drop", "description": "Access to Wolfram Data Drop's RESTful API", "category": "Utilities", "link": "https://www.wolfram.com/datadrop/quick-reference/web-api/", "auth": "apiKey"},
|
|
508
|
+
|
|
509
|
+
# === BLOGGING ===
|
|
510
|
+
{"name": "Blogger", "description": "Create, edit, delete blog posts", "category": "Content", "link": "https://developers.google.com/blogger/", "auth": "OAuth"},
|
|
511
|
+
{"name": "Medium", "description": "Access to data of medium.com", "category": "Content", "link": "https://github.com/Medium/medium-api-docs", "auth": "OAuth"},
|
|
512
|
+
{"name": "Weebly", "description": "Best-in-class website builder", "category": "Development", "link": "https://cloud-developer.weebly.com/", "auth": "apiKey"},
|
|
513
|
+
{"name": "Telegraph", "description": "Telegram's publishing service", "category": "Content", "link": "http://telegra.ph/api", "auth": "apiKey"},
|
|
514
|
+
|
|
515
|
+
# === BOOKS ===
|
|
516
|
+
{"name": "An API Of Ice And Fire", "description": "A Song of Ice and Fire data", "category": "Entertainment", "link": "https://anapioficeandfire.com/", "auth": "none"},
|
|
517
|
+
{"name": "Open Library Books API", "description": "Open editable library catalog", "category": "Content", "link": "https://openlibrary.org/developers/api", "auth": "none"},
|
|
518
|
+
{"name": "NYPL Digital Collections", "description": "Trove of rare and unique material", "category": "Content", "link": "http://api.repo.nypl.org/", "auth": "apiKey"},
|
|
519
|
+
{"name": "Bookshare", "description": "Books for print disabilities", "category": "Content", "link": "http://developer.bookshare.org/", "auth": "apiKey"},
|
|
520
|
+
|
|
521
|
+
# === MESSAGING ===
|
|
522
|
+
{"name": "Cisco Spark", "description": "Create rooms, invite people, post", "category": "Communication", "link": "https://developer.ciscospark.com/", "auth": "OAuth"},
|
|
523
|
+
{"name": "Fleep", "description": "Messenger for teams and projects", "category": "Communication", "link": "https://fleep.io/fleepapi/", "auth": "apiKey"},
|
|
524
|
+
{"name": "GroupMe", "description": "Build with group messaging abilities", "category": "Communication", "link": "https://dev.groupme.com/docs/v3", "auth": "apiKey"},
|
|
525
|
+
{"name": "LINE", "description": "Freeware app for instant communications", "category": "Communication", "link": "https://developers.line.me/", "auth": "OAuth"},
|
|
526
|
+
{"name": "MessageBird", "description": "Integrate SMS, Chat & Voice", "category": "Communication", "link": "https://developers.messagebird.com/", "auth": "apiKey"},
|
|
527
|
+
{"name": "Slack", "description": "Cloud-based team collaboration tools", "category": "Communication", "link": "https://api.slack.com/", "auth": "OAuth"},
|
|
528
|
+
{"name": "Yo", "description": "Simplest notification platform", "category": "Communication", "link": "http://docs.justyo.co/", "auth": "apiKey"},
|
|
529
|
+
|
|
530
|
+
# === NOTES ===
|
|
531
|
+
{"name": "Evernote", "description": "API references and guides", "category": "Utilities", "link": "https://dev.evernote.com/doc/", "auth": "OAuth"},
|
|
532
|
+
{"name": "OneNote", "description": "RESTful APIs for OneNote", "category": "Utilities", "link": "https://msdn.microsoft.com/en-us/office/office365/howto/onenote-supported-ops", "auth": "OAuth"},
|
|
533
|
+
|
|
534
|
+
# === PAYMENT ===
|
|
535
|
+
{"name": "PayPal", "description": "Access to PayPal's REST APIs", "category": "Payments", "link": "https://developer.paypal.com/docs/api/", "auth": "OAuth"},
|
|
536
|
+
{"name": "Paymill", "description": "Full API reference for PAYMILL", "category": "Payments", "link": "https://developers.paymill.com/index", "auth": "apiKey"},
|
|
537
|
+
{"name": "Paytm", "description": "Take payments on app/website", "category": "Payments", "link": "https://paytm.com/business/payments/developers", "auth": "apiKey"},
|
|
538
|
+
{"name": "WePay", "description": "Seamless payment for platforms", "category": "Payments", "link": "https://www.wepay.com/", "auth": "OAuth"},
|
|
539
|
+
{"name": "PhonePe", "description": "Cashless payment experience", "category": "Payments", "link": "https://developer.phonepe.com/docs", "auth": "apiKey"},
|
|
540
|
+
|
|
541
|
+
# === PHOTOGRAPHY ===
|
|
542
|
+
{"name": "500px", "description": "Programmatic access to 500px content", "category": "Photography", "link": "https://github.com/500px/api-documentation", "auth": "OAuth"},
|
|
543
|
+
{"name": "Unsplash", "description": "Most powerful photo engine in the world", "category": "Photography", "link": "https://unsplash.com/documentation", "auth": "OAuth"},
|
|
544
|
+
|
|
545
|
+
# === TEAMWORK ===
|
|
546
|
+
{"name": "Asana", "description": "Programmatically update and access data", "category": "Business", "link": "https://asana.com/guide/help/api/api", "auth": "OAuth"},
|
|
547
|
+
{"name": "join.me", "description": "Online meeting tool", "category": "Communication", "link": "https://developer.join.me/", "auth": "OAuth"},
|
|
548
|
+
{"name": "Teambition", "description": "Open Platform for project data", "category": "Business", "link": "https://www.teambition.com/developer/open-platform", "auth": "OAuth"},
|
|
549
|
+
{"name": "TeamSnap", "description": "World's best team management solution", "category": "Business", "link": "http://developer.teamsnap.com/", "auth": "OAuth"},
|
|
550
|
+
{"name": "Trello", "description": "Web-based project management", "category": "Business", "link": "https://developers.trello.com/", "auth": "OAuth"},
|
|
551
|
+
|
|
552
|
+
# === TEXT ANALYSIS ===
|
|
553
|
+
{"name": "Text Analytics API", "description": "Suite of text analytics web services", "category": "AI/ML", "link": "https://azure.microsoft.com/en-us/services/cognitive-services/text-analytics/", "auth": "apiKey"},
|
|
554
|
+
{"name": "Watson NLU", "description": "Natural language processing to analyze text", "category": "AI/ML", "link": "https://www.ibm.com/watson/developercloud/natural-language-understanding/", "auth": "apiKey"},
|
|
555
|
+
|
|
556
|
+
# === TODO ===
|
|
557
|
+
{"name": "Beeminder", "description": "Access to Beeminder's APIs", "category": "Utilities", "link": "https://www.beeminder.com/api", "auth": "apiKey"},
|
|
558
|
+
{"name": "FollowUp.cc", "description": "Access to FollowUp.cc's APIs", "category": "Utilities", "link": "http://docs.followup.cc/", "auth": "apiKey"},
|
|
559
|
+
{"name": "Todoist", "description": "Sync API for efficient data sync", "category": "Utilities", "link": "https://developer.todoist.com/", "auth": "OAuth"},
|
|
560
|
+
{"name": "Toodledo", "description": "Access to tasks, notes, outlines, lists", "category": "Utilities", "link": "https://api.toodledo.com/3/", "auth": "apiKey"},
|
|
561
|
+
|
|
562
|
+
# === TRANSLATION ===
|
|
563
|
+
{"name": "Google Translate", "description": "Dynamically translate between languages", "category": "Language", "link": "https://cloud.google.com/translate/docs/", "auth": "apiKey"},
|
|
564
|
+
{"name": "Microsoft Translator", "description": "Machine translation in multiple languages", "category": "Language", "link": "https://www.microsoft.com/en-us/translator/translatorapi.aspx", "auth": "apiKey"},
|
|
565
|
+
{"name": "Yandex Translate", "description": "Supports 70+ languages", "category": "Language", "link": "https://tech.yandex.com/translate/", "auth": "apiKey"},
|
|
566
|
+
|
|
567
|
+
# === VIDEO ===
|
|
568
|
+
{"name": "Dailymotion", "description": "Second largest video hosting platform", "category": "Video", "link": "https://developer.dailymotion.com/api", "auth": "OAuth"},
|
|
569
|
+
{"name": "Narrative", "description": "Customize your clip, get players", "category": "Video", "link": "http://open.getnarrative.com/", "auth": "OAuth"},
|
|
570
|
+
{"name": "Rotten Tomatoes", "description": "Ratings and reviews from Rotten Tomatoes", "category": "Entertainment", "link": "https://developer.fandango.com/Rotten_Tomatoes", "auth": "apiKey"},
|
|
571
|
+
{"name": "The Movie Database", "description": "Access Top rated, Upcoming, Popular movies", "category": "Entertainment", "link": "https://developers.themoviedb.org", "auth": "apiKey"},
|
|
572
|
+
|
|
573
|
+
# === VOICE ANALYSIS ===
|
|
574
|
+
{"name": "Cloud Speech API", "description": "Convert audio to text using ML", "category": "AI/ML", "link": "https://cloud.google.com/speech/", "auth": "apiKey"},
|
|
575
|
+
|
|
576
|
+
# === VISION ANALYSIS ===
|
|
577
|
+
{"name": "CamScanner", "description": "Digitalize paper documents", "category": "AI/ML", "link": "https://dev.camscanner.com/", "auth": "apiKey"},
|
|
578
|
+
{"name": "Clarifai", "description": "Image and video recognition as a service", "category": "AI/ML", "link": "https://clarifai.com/developer/guide/", "auth": "apiKey"},
|
|
579
|
+
{"name": "Google Cloud Vision", "description": "Understand image content with ML", "category": "AI/ML", "link": "https://cloud.google.com/vision/", "auth": "apiKey"},
|
|
580
|
+
{"name": "Microsoft Computer Vision", "description": "State-of-the-art image algorithms", "category": "AI/ML", "link": "https://azure.microsoft.com/en-us/services/cognitive-services/computer-vision/", "auth": "apiKey"},
|
|
581
|
+
{"name": "Face++", "description": "Computer vision for understanding world", "category": "AI/ML", "link": "https://console.faceplusplus.com/documents/5678948", "auth": "apiKey"},
|
|
582
|
+
{"name": "Watson Visual Recognition", "description": "Identifies scenes, objects, celebrity faces", "category": "AI/ML", "link": "https://www.ibm.com/watson/developercloud/visual-recognition/", "auth": "apiKey"},
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
def main():
|
|
586
|
+
print("🦞 APIClaw Public APIs Mass Import")
|
|
587
|
+
print("=" * 50)
|
|
588
|
+
|
|
589
|
+
registry = load_registry()
|
|
590
|
+
existing_ids = get_existing_ids(registry)
|
|
591
|
+
|
|
592
|
+
added = 0
|
|
593
|
+
skipped = 0
|
|
594
|
+
|
|
595
|
+
for api in PUBLIC_APIS:
|
|
596
|
+
api_id = generate_id(api['name'])
|
|
597
|
+
|
|
598
|
+
if api_id in existing_ids:
|
|
599
|
+
skipped += 1
|
|
600
|
+
continue
|
|
601
|
+
|
|
602
|
+
registry['apis'].append({
|
|
603
|
+
"id": api_id,
|
|
604
|
+
"name": api['name'],
|
|
605
|
+
"description": api['description'],
|
|
606
|
+
"category": api['category'],
|
|
607
|
+
"auth": api.get('auth', 'apiKey'),
|
|
608
|
+
"https": True,
|
|
609
|
+
"cors": "unknown",
|
|
610
|
+
"link": api['link'],
|
|
611
|
+
"pricing": "unknown",
|
|
612
|
+
"keywords": [],
|
|
613
|
+
"source": "public-apis"
|
|
614
|
+
})
|
|
615
|
+
existing_ids.add(api_id)
|
|
616
|
+
added += 1
|
|
617
|
+
|
|
618
|
+
save_registry(registry)
|
|
619
|
+
|
|
620
|
+
print(f"✅ Added: {added} APIs")
|
|
621
|
+
print(f"⏭️ Skipped (duplicates): {skipped}")
|
|
622
|
+
print(f"📊 Total APIs in registry: {len(registry['apis'])}")
|
|
623
|
+
|
|
624
|
+
if __name__ == "__main__":
|
|
625
|
+
main()
|