A curated collection of awesome free APIs for developers. Open source and community-driven. This repository aims to provide a comprehensive collection of free and freemium APIs to help you build your next project.
✨ New! Check out practical code examples showing how to use popular APIs from this collection.
Includes Python & JavaScript examples for Pokemon, Cryptocurrency, AI Chat, and more!
👋 New to APIs? Don't worry! This guide will help you understand the basics and get started quickly.
API stands for Application Programming Interface. It's a way for different applications to communicate with each other.
┌─────────┐ ┌─────────┐ ┌─────────┐
│ YOU │ ───▶│ API │ ───▶│ SERVER │
│ (App) │ ◀───│ (Waiter)│ ◀───│(Kitchen)│
└─────────┘ └─────────┘ └─────────┘
Request Process Response
Think of it like a restaurant:
- 🙋 You (the app) place an order
- 🍽️ Waiter (the API) takes your request to the kitchen
- 👨🍳 Kitchen (the server) prepares your food (data)
- ✨ The waiter brings it back to you!
Different APIs have different ways to verify who you are:
| Method | Icon | Description | Example |
|---|---|---|---|
| No Auth | 🌐 | Open for everyone - just call it! | Weather APIs, public data |
| API Key | 🔑 | Secret code you get when registering | ?api_key=abc123 or Authorization: abc123 |
| OAuth | 🔐 | Secure login (like "Login with Google") | Social media integrations |
💡 Pro Tip: Always keep your API keys secret! Never commit them to GitHub.
Learn the common ways to interact with APIs:
| Method | Icon | Purpose | Real-World Example |
|---|---|---|---|
GET |
📥 | Retrieve data | Get a list of cat pictures |
POST |
📤 | Create new data | Upload a new photo |
PUT |
✏️ | Replace existing data | Update entire user profile |
PATCH |
🔧 | Modify specific fields | Change just your username |
DELETE |
🗑️ | Remove data | Delete a comment |
Example GET Request:
curl https://api.example.com/catsExample POST Request:
curl -X POST https://api.example.com/cats \
-H "Content-Type: application/json" \
-d '{"name":"Fluffy","age":3}'The API responds with a status code to tell you what happened:
| Code | Icon | Meaning |
|---|---|---|
200 |
✅ | OK - Request succeeded! |
201 |
🎉 | Created - New resource created! |
204 |
📭 | No Content - Success but no data to return |
| Code | Icon | Meaning | What to Do |
|---|---|---|---|
400 |
❌ | Bad Request - Invalid syntax | Check your request format |
401 |
🔒 | Unauthorized - Authentication required | Add your API key |
403 |
🚫 | Forbidden - You don't have permission | Check your access rights |
404 |
🔍 | Not Found - Resource doesn't exist | Verify the URL |
429 |
🐌 | Too Many Requests - Rate limit hit | Wait and try again |
| Code | Icon | Meaning |
|---|---|---|
500 |
💥 | Internal Server Error - API is broken |
503 |
🔧 | Service Unavailable - API is down |
| Tool | Best For | Platform | Free? |
|---|---|---|---|
| Postman | 🎯 Complete API testing & documentation | Desktop/Web | ✅ Yes (free tier) |
| Thunder Client | ⚡ Lightweight testing in VS Code | VS Code Extension | ✅ Yes |
| cURL | 💻 Command-line requests | Terminal | ✅ Yes (built-in) |
| Insomnia | 🎨 Beautiful UI for API testing | Desktop | ✅ Yes |
Let's try a real API call! Here's how to get a random cat fact:
1️⃣ Using cURL (Terminal):
curl https://catfact.ninja/fact2️⃣ Using JavaScript (Browser):
fetch('https://catfact.ninja/fact')
.then(response => response.json())
.then(data => console.log(data.fact));3️⃣ Using Python:
import requests
response = requests.get('https://catfact.ninja/fact')
print(response.json()['fact'])📦 Expected Response:
{
"fact": "Cats have 32 muscles in each ear.",
"length": 38
}- 📖 What is REST API? - RedHat Guide
- 🎓 HTTP Status Codes Cheat Sheet - Quick reference
- 🧪 JSONPlaceholder - Free fake API for practice
- 💬 API Best Practices - Stack Overflow Blog
- 📘 General Usage Guide
- 🐶 Animals
- 🌸 Anime
- 🛡️ Anti-Malware
- 📚 Books & Literature
- 🪙 Cryptocurrency
- 💻 Development
- 📖 Dictionaries
- 🎓 Education
- 📊 Public Data & Datasets
- 📧 Email & SMS
- 🎮 Entertainment
- 💰 Finance
- 🍔 Food & Drink
- 🎮 Games & Comics
- 🌍 Geocoding
- ❤️ Health
- 🧠 Machine Learning
- 🧪 Mock Data & Testing
- 🎵 Music
- 📰 News
- 📸 Photography
- 🔬 Science
- 🔒 Security & Validation
- 🛍️ Shopping
- 🔧 Utilities & Tools
- 💬 Social
- ⚽ Sports
- 🎨 Design & Colors
- 🌎 Geography & Countries
- 🚆 Transportation
⚠️ Unofficial & Community APIs- 😂 Memes & Fun
- 💼 Jobs & Career
- 🌤️ Weather
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| AdoptAPet | Resource to help get pets adopted. | 🔑 ApiKey | ✅ | Link |
| Axolotl | Collection of axolotl pictures and facts. | No | ✅ | Link |
| Cat Facts | Daily cat facts. | No | ✅ | Link |
| Cataas | Cat as a service (cats pictures and gifs). | No | ✅ | Link |
| Cats | Pictures of cats from Tumblr. | 🔑 ApiKey | ✅ | Link |
| Dog Facts | Random dog facts. | No | ✅ | Link |
| Dogs | Based on the Stanford Dogs Dataset. | No | ✅ | Link |
| eBird | Retrieve recent or notable birding observations within a region. | 🔑 ApiKey | ✅ | Link |
| FishWatch | Information and pictures about individual fish species. | No | ✅ | Link |
| HTTP Cat | Cat for every HTTP Status. | No | ✅ | Link |
| HTTP Dog | Dogs for every HTTP response status code. | No | ✅ | Link |
| IUCN | IUCN Red List of Threatened Species. | 🔑 ApiKey | No | Link |
| MeowFacts | Get random cat facts. | No | ✅ | Link |
| Movebank | Movement and Bio-logging Data. | No | ✅ | Link |
| PlaceBear | Placeholder bear pictures. | No | ✅ | Link |
| RandomDog | Random pictures of dogs. | No | ✅ | Link |
| RandomDuck | Random pictures of ducks. | No | ✅ | Link |
| RandomFox | Random pictures of foxes. | No | ✅ | Link |
| RescueGroups | Adoption. | No | ✅ | Link |
| Shibe.Online | Random pictures of Shiba Inu, cats or birds. | No | ✅ | Link |
| The Cat API | Images of cats (great for testing image grids). | 🔑 ApiKey | ✅ | Link |
| The Dog | A public service all about Dogs, free to use. | 🔑 ApiKey | ✅ | Link |
| The Dog API | Images and data about dogs. | 🔑 ApiKey | ✅ | Link |
| TheCatDB | Cat breeds and facts database. | 🔑 ApiKey | ✅ | Link |
| Dog CEO | Dog breeds and random dog images. | No | ✅ | Link |
| xeno-canto | Bird sounds from around the world. | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| AniAPI | Anime discovery, streaming & syncing with trackers. | 🔐 OAuth | ✅ | Link |
| AniDB | Anime Database. | 🔑 ApiKey | No | Link |
| AniList | Anime and Manga Database. | 🔐 OAuth | ✅ | Link |
| AnimeChan | Anime quotes (over 10k+). | No | ✅ | Link |
| AnimeFacts | Anime facts (over 100+). | No | ✅ | Link |
| AnimeNewsNetwork | Anime industry news. | No | ✅ | Link |
| Danbooru Anime | Thousands of anime artist database. | 🔑 ApiKey | ✅ | Link | | Jikan | Unofficial MyAnimeList API. | No | ✅ | Link | | Kitsu | Anime and Manga Database. | 🔐 OAuth | ✅ | Link | | Mangapi | Translate manga pages. | 🔑 ApiKey | ✅ | Link | | MyAnimeList | Anime and Manga Database. | 🔐 OAuth | ✅ | Link | | NekosBest | Neko Images & Anime GIFs. | No | ✅ | Link | | Shikimori | Anime and Manga Database. | 🔐 OAuth | ✅ | Link | | Studio Ghibli | Resources from Studio Ghibli films. | No | ✅ | Link | | Trace Moe | Anime Scene Search Engine. | No | ✅ | Link | | Waifu.im | API for serving anime images (versatile query options). | No | ✅ | Link | | Waifu.pics | Image sharing platform for anime images. | No | ✅ | Link |
| Kitsu Anime | Discover anime and manga (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| AbuseIPDB | IP/Domain/URL reputation. | 🔑 ApiKey | ✅ | Link |
| AlienVault OTX | IP/Domain/URL reputation. | 🔑 ApiKey | ✅ | Link |
| CAPEsandbox | Malware analysis. | 🔑 ApiKey | ✅ | Link |
| Google Safe Browsing | Google Link/Domain reputation. | 🔑 ApiKey | ✅ | Link |
| MalDatabase | Malware analysis. | 🔑 ApiKey | ✅ | Link |
| MalShare | Malware analysis. | 🔑 ApiKey | ✅ | Link |
| MalwareBazaar | Malware analysis. | 🔑 ApiKey | ✅ | Link |
| Metacert | Link/Domain reputation. | 🔑 ApiKey | ✅ | Link |
| NoPhishy | Link/Domain reputation. | 🔑 ApiKey | ✅ | Link |
| Scanii | File/Link/Domain reputation. | 🔑 ApiKey | ✅ | Link |
| URLhaus | Link/Domain reputation. | No | ✅ | Link |
| URLScan.io | Link/Domain reputation. | 🔑 ApiKey | ✅ | Link |
| VirusTotal | File/URL analysis. | 🔑 ApiKey | ✅ | Link |
| Web of Trust | IP/Domain/URL reputation. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Google Books | Search and preview books. | 🔐 OAuth | ✅ | Link |
| Gutendex | JSON API for Project Gutenberg (public domain books). | No | ✅ | Link |
| Open Library | Fetch data about millions of books and covers. | No | ✅ | Link |
| Penguin Publishing | Book data. | No | ✅ | Link |
| Bookcover | Book cover images by ISBN (No Auth). | No | ✅ | Link |
| Goodreads | Book reviews and ratings metadata. | 🔑 ApiKey | ✅ | Link |
| ISBNdb | ISBN book database. | 🔑 ApiKey | ✅ | Link |
| Poetry DB | Database with over 40,000 poems (No Auth). | No | ✅ | Link |
| Bible API | Free Bible text in multiple versions (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| 1inch | API for querying the 1inch protocol. | No | ✅ | Link |
| Alchemy | Ethereum API. | 🔑 ApiKey | ✅ | Link |
| Binance | Exchange for Trading Cryptocurrencies. | 🔑 ApiKey | ✅ | Link |
| Bitfinex | Exchange for Trading Cryptocurrencies. | 🔑 ApiKey | ✅ | Link |
| Bitmex | Exchange for Trading Cryptocurrencies. | 🔑 ApiKey | ✅ | Link |
| Block | Bitcoin Payment, Wallet & Transaction Data. | 🔑 ApiKey | ✅ | Link |
| Blockchain | Bitcoin Payment, Wallet & Transaction Data. | 🔑 ApiKey | ✅ | Link |
| CoinAPI | Market Data API. | 🔑 ApiKey | ✅ | Link |
| Coinbase | Bitcoin, Bitcoin Cash, Litecoin and Ethereum. | 🔑 ApiKey | ✅ | Link |
| CoinGecko | Cryptocurrency prices, market cap, exchange rates. | No | ✅ | Link |
| CoinMarketCap | Cryptocurrency prices, market cap, exchange rates. | 🔑 ApiKey | ✅ | Link |
| Coinlayer | Real-time Crypto Exchange Rates. | 🔑 ApiKey | ✅ | Link |
| CryptoCompare | Cryptocurrencies Comparison. | No | ✅ | Link |
| Gateio | Exchange for Trading Cryptocurrencies. | 🔑 ApiKey | ✅ | Link |
| Gemini | Exchange for Trading Cryptocurrencies. | No | ✅ | Link |
| Kraken | Exchange for Trading Cryptocurrencies. | 🔑 ApiKey | ✅ | Link |
| KuCoin | Exchange for Trading Cryptocurrencies. | 🔑 ApiKey | ✅ | Link |
| Mempool | Bitcoin API. | No | ✅ | Link |
| Poloniex | Exchange for Trading Cryptocurrencies. | 🔑 ApiKey | ✅ | Link |
| CoinCap | Real-time cryptocurrency market data (No Auth). | No | ✅ | Link |
| Messari | Crypto research and data. | 🔑 ApiKey | ✅ | Link |
| CoinPaprika | Cryptocurrency market data (No Auth, generous limits). | No | ✅ | Link |
| Coinlore | Cryptocurrency prices and market data (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| 24 Pull Requests | Project to promote open source collaboration during December. | No | ✅ | Link |
| Abstract Screenshot | Take a screenshot of any website. | 🔑 ApiKey | ✅ | Link |
| Agify.io | Predict the age of a person based on their name. | No | ✅ | Link |
| Airtable | API for cloud collaboration database (free tier available). | 🔑 ApiKey | ✅ | Link |
| ApiFlash | Chrome based screenshot API. | 🔑 ApiKey | ✅ | Link |
| APIs.guru | Wikipedia for Web APIs. | No | ✅ | Link |
| APILayer | Marketplace for various APIs. | 🔑 ApiKey | ✅ | Link |
| Appwrite | Open source backend server (database, auth, storage, functions). | 🔑 ApiKey | ✅ | Link |
| Auth0 | Authentication and authorization platform (free tier). | 🔐 OAuth | ✅ | Link |
| Aviationstack | Real-time flight status and global aviation data. | 🔑 ApiKey | ✅ | Link |
| Azure DevOps | DevOps tools. | 🔑 ApiKey | ✅ | Link |
| Bitbucket | Git solution. | 🔐 OAuth | ✅ | Link |
| Carbon | Create and share beautiful code snippets. | No | ✅ | Link |
| CDNJS | Library info. | No | ✅ | Link |
| Clerk | User management and authentication (free tier). | 🔑 ApiKey | ✅ | Link |
| Cloudflare Trace | Get IP Address and other info. | No | ✅ | Link |
| Codacy | Code quality and security analysis. | 🔑 ApiKey | ✅ | Link |
| CodeSandbox | Online code editor API. | 🔑 ApiKey | ✅ | Link |
| Docker Hub | Interact with Docker Hub. | 🔑 ApiKey | ✅ | Link |
| Firebase | Google's mobile/web app development platform. | 🔑 ApiKey | ✅ | Link |
| Genderize.io | Predict the gender of a person based on their name. | No | ✅ | Link |
| Google Calendar | Create, view, or update calendar events. | 🔐 OAuth | ✅ | Link |
| GitHub | Make use of GitHub data. | 🔐 OAuth | ✅ | Link |
| Gitlab | Automate GitLab. | 🔐 OAuth | ✅ | Link |
| Google Docs | Create and edit documents. | 🔐 OAuth | ✅ | Link |
| Google Sheets | Read and write to Google Sheets. | 🔐 OAuth | ✅ | Link |
| Heroku | PaaS. | 🔐 OAuth | ✅ | Link |
| Host.io | Domains Data. | 🔑 ApiKey | ✅ | Link |
| Hunter | Email Verifier. | 🔑 ApiKey | ✅ | Link |
| IP2Location | IP geolocation database (Free tier). | 🔑 ApiKey | ✅ | Link |
| IPGeolocation | IP geolocation and timezone API (Free tier: 30k/month). | 🔑 ApiKey | ✅ | Link |
| IPify | A simple IP Address API. | No | ✅ | Link |
| IPinfo | IP Address Information. | No | ✅ | Link |
| Ipstack | Locate and identify website visitors by IP address. | 🔑 ApiKey | ✅ | Link |
| JSONbin.io | Free JSON storage. | 🔑 ApiKey | ✅ | Link |
| LibreTranslate | Free and open-source translation API (Self-hosted, No Auth). | No | ✅ | Link |
| Mailboxlayer | Email verification and validation. | 🔑 ApiKey | ✅ | Link |
| Nationalize.io | Predict the nationality of a person based on their name. | No | ✅ | Link |
| Netlify | Netlify API. | 🔐 OAuth | ✅ | Link |
| Notion | Access to Notion workspace data via API. | 🔐 OAuth | ✅ | Link |
| Numverify | Phone number validation. | 🔑 ApiKey | ✅ | Link |
| Pdflayer | HTML to PDF conversion. | 🔑 ApiKey | ✅ | Link |
| PocketBase | Open source backend (database, auth, files). | 🔑 ApiKey | ✅ | Link |
| Positionstack | Forward & Reverse Geocoding. | 🔑 ApiKey | ✅ | Link |
| Railway | Modern deployment platform API. | 🔑 ApiKey | ✅ | Link |
| Render | Cloud platform API for apps and databases. | 🔑 ApiKey | ✅ | Link |
| Screenshotlayer | Website screenshots. | 🔑 ApiKey | ✅ | Link |
| Serpstack | Real-Time Google Search Results. | 🔑 ApiKey | ✅ | Link |
| Supabase | Open source Firebase alternative (database, auth, storage). | 🔑 ApiKey | ✅ | Link |
| Userstack | User-Agent String Analysis. | 🔑 ApiKey | ✅ | Link |
| UUID Generator | Generate UUIDs (v1, v3, v4, v5). | No | ✅ | Link |
| Vercel | Deployment platform API. | 🔑 ApiKey | ✅ | Link |
| Cloudinary | Image and video management API. | 🔑 ApiKey | ✅ | Link |
| QRServer | Generate QR codes dynamically (No Auth). | No | ✅ | Link |
| Web Scraper | Web scraping service (ScrapingBee). | 🔑 ApiKey | ✅ | Link |
| EmailJS | Send emails directly from JavaScript (Free tier). | 🔑 ApiKey | ✅ | Link |
| Abstract API | Suite of useful APIs (IP geolocation, holidays, exchange rates). | 🔑 ApiKey | ✅ | Link |
| Rebrandly | URL shortener API. | 🔑 ApiKey | ✅ | Link |
| QuickChart | Generate charts and QR codes. | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Free Dictionary API | Free English dictionary API. | No | ✅ | Link |
| Merriam-Webster | Dictionary and thesaurus. | 🔑 ApiKey | ✅ | Link |
| Oxford Dictionaries | English dictionary and language data. | 🔑 ApiKey | ✅ | Link |
| Urban Dictionary | Slang dictionary. | No | ✅ | Link |
| WordsAPI | Word definitions, synonyms, antonyms. | 🔑 ApiKey | ✅ | Link |
| Lingua Robot | Word definitions and language detection (No Auth). | No | ✅ | Link |
| Datamuse | Word-finding query engine (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Universities List | List of universities worldwide. | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Data.gov | US Government open data. | No | ✅ | Link |
| Socrata Open Data | Access government and public sector data. | No | ✅ | Link | | USDA FoodData | Nutritional data for food products. | 🔑 ApiKey | ✅ | Link | | World Bank | Global development data. | No | ✅ | Link | | Nager.Date | Public holidays for 100+ countries (No Auth, no rate limit). | No | ✅ | Link | | OpenHolidays API | Public and school holidays worldwide (No Auth). | No | ✅ | Link | | TimeZoneDB | Time zone data and conversion (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Mailgun | Email service for developers (free tier). | 🔑 ApiKey | ✅ | Link |
| Resend | Modern email API for developers (free tier). | 🔑 ApiKey | ✅ | Link |
| SendGrid | Email delivery service (free tier: 100/day). | 🔑 ApiKey | ✅ | Link |
| Twilio | SMS, voice, and messaging (trial credits). | 🔑 ApiKey | ✅ | Link |
| Vonage (Nexmo) | SMS and voice APIs (trial credits). | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Alpaca | Commission-free stock trading. | 🔑 ApiKey | ✅ | Link |
| Alpha Vantage | Realtime and historical stock data. | 🔑 ApiKey | ✅ | Link |
| Binlist | BIN/IIN Lookup. | No | ✅ | Link |
| CoinDesk | Bitcoin Price Index (BPI) data (No Auth). | No | ✅ | Link |
| Currencylayer | Exchange rates and currency conversion. | 🔑 ApiKey | ✅ | Link |
| Exchangeratesapi | Exchange rates and currency conversion. | 🔑 ApiKey | ✅ | Link |
| Financial Modeling Prep | Stock market data. | 🔑 ApiKey | ✅ | Link |
| Finnhub | Stock market data. | 🔑 ApiKey | ✅ | Link |
| Fixer | Exchange rates and currency conversion. | 🔑 ApiKey | ✅ | Link |
| FRED | Economic data. | 🔑 ApiKey | ✅ | Link |
| Klarna | Payments. | 🔑 ApiKey | ✅ | Link | | MercadoPago | Payments. | 🔑 ApiKey | ✅ | Link | | Marketstack | Real-time, intraday and historical market data. | 🔑 ApiKey | ✅ | Link | | Plaid | Connect bank accounts. | 🔑 ApiKey | ✅ | Link | | Polygon | Stock market data. | 🔑 ApiKey | ✅ | Link | | Stripe | Payments. | 🔑 ApiKey | ✅ | Link | | Tax Data API | Tax rates and validation. | 🔑 ApiKey | ✅ | Link | | Exchangerate.host | Foreign exchange & crypto rates. | 🔑 ApiKey | ✅ | Link | | Frankfurter | Open source exchange rates API. | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Open Food Facts | Food product data. | No | ✅ | Link |
| TheCocktailDB | Open database for drinks and cocktails. | 🔑 ApiKey | ✅ | Link |
| TheMealDB | Open source database of recipes from around the world. | 🔑 ApiKey | ✅ | Link |
| Spoonacular | Food, recipes, and nutrition data. | 🔑 ApiKey | ✅ | Link |
| Edamam Recipe | Recipe search and nutrition analysis. | 🔑 ApiKey | ✅ | Link |
| Coffee | Random coffee images (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|
| OMDb | Open Movie Database. | 🔑 ApiKey | ✅ | Link | | Quiz API | Random trivia questions (No Auth). | No | ✅ | Link | | Quotable | Random quotes (No Auth). | No | ✅ | Link | | Activities when get bored | Random suggestions for activities. | No | ✅ | Link | | Simkl | Movies, TV, Anime metadata. | 🔑 ApiKey | ✅ | Link | | TMDb | The Movie Database. | 🔑 ApiKey | ✅ | Link | | TVmaze | TV shows and episode data (No Auth). | No | ✅ | Link | | Trakt | TV and Movie tracking. | 🔐 OAuth | ✅ | Link | | Watchmode | Streaming availability. | 🔑 ApiKey | ✅ | Link |
| Cocktail | Random cocktail recipes and ingredients. | No | ✅ | Link | | Trivia API | Trivia questions in various categories (No Auth). | No | ✅ | Link | | StreamElements | Twitch/YouTube live streaming data & overlays. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| IP-API | IP to location. | No | No | Link |
| Mapbox | Maps and geocoding. | 🔑 ApiKey | ✅ | Link |
| Nominatim | OpenStreetMap Geocoding. | No | ✅ | Link |
| OpenStreetMap | Map data. | 🔐 OAuth | ✅ | Link |
| Geocodio | Geocoding and reverse geocoding for US/Canada. | 🔑 ApiKey | ✅ | Link |
| LocationIQ | Geocoding and maps (free tier: 5000 req/day). | 🔑 ApiKey | ✅ | Link |
| Zippopotam.us | Postal/zip code lookup for 60+ countries (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| AmiiboAPI | Nintendo Amiibo data. | No | ✅ | Link |
| Battle.net | Blizzard games data. | 🔐 OAuth | ✅ | Link |
| BoardGameGeek | Board games database. | No | ✅ | Link |
| Brawl Stars | Game data. | 🔑 ApiKey | ✅ | Link |
| Chess.com | Chess player stats and games. | No | ✅ | Link |
| Chuck Norris Database | Jokes. | No | No | Link |
| Clash of Clans | Game data. | 🔑 ApiKey | ✅ | Link |
| Clash Royale | Game data. | 🔑 ApiKey | ✅ | Link |
| Deck of Cards | Deck of cards. | No | No | Link |
| Digimon | Digimon information. | No | ✅ | Link |
| Dota 2 | Game data. | 🔑 ApiKey | ✅ | Link |
| Dungeons and Dragons | 5th Edition SRD. | No | ✅ | Link |
| Eve Online | Game data. | 🔐 OAuth | ✅ | Link |
| Final Fantasy XIV | Game data. | No | ✅ | Link |
| Fortnite | Game data. | 🔑 ApiKey | ✅ | Link |
| Genshin Impact | Game data. | No | ✅ | Link |
| Guild Wars 2 | Game data. | 🔑 ApiKey | ✅ | Link |
| Hyrule Compendium | Legend of Zelda: BOTW data. | No | ✅ | Link |
| Hypixel | Minecraft server data. | 🔑 ApiKey | ✅ | Link |
| IGDB.com | Game database. | 🔑 ApiKey | ✅ | Link |
| JokeAPI | Programming and general jokes. | No | ✅ | Link |
| Lichess | Chess data. | 🔐 OAuth | ✅ | Link |
| Magic: The Gathering | MTG card data. | No | ✅ | Link |
| Marvel | Comics data. | 🔑 ApiKey | ✅ | Link |
| Minecraft Server Status | Server status. | No | ✅ | Link |
| Open Trivia | Trivia questions. | No | ✅ | Link | | Pokéapi | Pokémon data. | No | ✅ | Link | | PUBG | Game data. | 🔑 ApiKey | ✅ | Link | | RAWG | Video games database (500k+ games). | 🔑 ApiKey | ✅ | Link | | Rick and Morty | Show data. | No | ✅ | Link | | Riot Games | League of Legends data. | 🔑 ApiKey | ✅ | Link | | Scryfall | Magic: The Gathering card search. | No | ✅ | Link | | Valorant | Valorant game data (unofficial). | No | ✅ | Link | | PokéAPI v2 | Comprehensive Pokémon data (No Auth, 300M+ requests/month). | No | ✅ | Link |
| MMO API | MMORPG and RPG game items, achievements, characters. | 🔑 ApiKey | ✅ | Link | | MLB | Major League Baseball scores and statistics. | No | ✅ | Link | | Yu-Gi-Oh! | Yu-Gi-Oh! card data. | No | ✅ | Link | | GamerPower | Free games, loot, and giveaways (No Auth). | No | ✅ | Link | | Monster Hunter World | MHW items, monsters, weapons, armor data (No Auth). | No | ✅ | Link | | Free to Play Games | Database of free-to-play games (No Auth). | No | ✅ | Link | | Elden Ring API | Elden Ring game data (No Auth). | No | ✅ | Link | | Balldontlie | NBA players, teams, games & stats (No Auth). | No | ✅ | Link | | Overwatch API | Overwatch 2 player stats and heroes (No Auth). | No | ✅ | Link | | Tarkov API | Escape from Tarkov items, quests, maps (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| BMI Calculator | Calculate BMI and other metrics. | 🔑 ApiKey | ✅ | Link |
| Edamam Nutrition | Nutrition analysis. | 🔑 ApiKey | ✅ | Link | | Nutritionix | Nutrition database. | 🔑 ApiKey | ✅ | Link | | OpenFDA | Public FDA data about drugs, devices, and foods. | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Anthropic Claude | Access Claude AI models (offers free trial credits). | 🔑 ApiKey | ✅ | Link |
| Clarifai | Computer Vision. | 🔐 OAuth | ✅ | Link |
| Cloudmersive | Image Recognition. | 🔑 ApiKey | ✅ | Link |
| Cohere | NLP and text generation models (free trial tier). | 🔑 ApiKey | ✅ | Link |
| DeepAI | Simple APIs for image generation and text processing. | 🔑 ApiKey | ✅ | Link |
| Deepgram | Speech-to-text and audio intelligence. | 🔑 ApiKey | ✅ | Link |
| Dialogflow | Conversational AI. | 🔑 ApiKey | ✅ | Link |
| Google Gemini | Google's latest multimodal AI models. | 🔑 ApiKey | ✅ | Link |
| Groq | Ultra-fast LLM inference API. | 🔑 ApiKey | ✅ | Link |
| Hugging Face | Access thousands of models for NLP, vision, and audio. | 🔑 ApiKey | ✅ | Link |
| Imagga | Image Recognition. | 🔑 ApiKey | ✅ | Link |
| Languagelayer | Language detection. | 🔑 ApiKey | ✅ | Link |
| Mistral AI | High-performance open-source LLMs (free tier available). | 🔑 ApiKey | ✅ | Link |
| NLP Cloud | NLP. | 🔑 ApiKey | ✅ | Link |
| Twinword Sentiment Analysis | Sentiment analysis, emotion analysis, and more. | 🔑 ApiKey | ✅ | Link |
| Ollama | Run open-source LLMs locally (self-hosted, no auth). | No | ✅ | Link |
| OpenAI | Access GPT models (offers free trial credits). | 🔑 ApiKey | ✅ | Link |
| Perplexity AI | AI-powered search and answers (limited free tier). | 🔑 ApiKey | ✅ | Link |
| Replicate | Run AI models via API (pay-as-you-go, free credits). | 🔑 ApiKey | ✅ | Link |
| Roboflow | Computer Vision. | 🔑 ApiKey | ✅ | Link |
| Stability AI | Image generation (Stable Diffusion). | 🔑 ApiKey | ✅ | Link |
| Together AI | Fast inference for open-source LLMs (free credits). | 🔑 ApiKey | ✅ | Link |
| WolframAlpha | Computational Knowledge. | 🔑 ApiKey | ✅ | Link |
| xAI Grok | xAI's Grok model API (free tier available). | 🔑 ApiKey | ✅ | Link |
| AI21 Labs | Powerful language models (free tier). | 🔑 ApiKey | ✅ | Link |
| Fireworks AI | Fast inference for open-source LLMs. | 🔑 ApiKey | ✅ | Link |
| DeepSeek | Powerful reasoning AI models with free API tier. | 🔑 ApiKey | ✅ | Link |
| Fal.ai | Run AI models in serverless GPU (image/video generation). | 🔑 ApiKey | ✅ | Link |
| Suno AI | AI music generation API. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Audiomack | Music streaming. | 🔐 OAuth | ✅ | Link |
| Deezer | Music streaming. | 🔐 OAuth | ✅ | Link |
| Discogs | Music database. | 🔐 OAuth | ✅ | Link |
| Genius | Lyrics and knowledge. | 🔐 OAuth | ✅ | Link |
| LastFm | Music database. | 🔑 ApiKey | ✅ | Link |
| Mixcloud | Music streaming. | 🔐 OAuth | ✅ | Link |
| MusicBrainz | Music database. | No | ✅ | Link |
| Musixmatch | Lyrics. | 🔑 ApiKey | ✅ | Link |
| SoundCloud | Music streaming. | 🔐 OAuth | ✅ | Link |
| Spotify | Music streaming. | 🔐 OAuth | ✅ | Link |
| TheAudioDB | Music metadata, charts, and more. | 🔑 ApiKey | ✅ | Link |
| Shazam (RapidAPI) | Music recognition and track details. | 🔑 ApiKey | ✅ | Link |
| iTunes Search | Search iTunes store for music, movies, apps (No Auth). | No | ✅ | Link |
| Radio Browser | Community database of internet radio stations (No Auth). | No | ✅ | Link |
| Lyrics.ovh | Simple lyrics search API (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| DummyJSON | Fake REST API with products, users, todos, and more (No Auth). | No | ✅ | Link |
| Fake Store API | Free fake e-commerce API for testing (products, carts, users). | No | ✅ | Link |
| JSONPlaceholder | Free fake API for testing and prototyping (posts, comments, users). | No | ✅ | Link |
| Mockaroo | Generate custom realistic test data in JSON, CSV, SQL. | 🔑 ApiKey | ✅ | Link |
| RandomUser.me | Generate random user data (like Lorem Ipsum, but for people). | No | ✅ | Link |
| ReqRes | A hosted REST-API ready to respond to your AJAX requests. | No | ✅ | Link |
| Httpbin | HTTP request and response testing (No Auth). | No | ✅ | Link |
| Beeceptor | Mock REST APIs in seconds (No Auth). | No | ✅ | Link |
| SampleAPIs | Playground for RESTful and GraphQL endpoints (No Auth). | No | ✅ | Link |
| MockAPI.io | Create custom mock REST APIs with fake data. | 🔑 ApiKey | ✅ | Link |
| Postman Echo | Test REST clients with echo endpoint (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Currents | Latest news. | 🔑 ApiKey | ✅ | Link |
| GNews | Global news search. | 🔑 ApiKey | ✅ | Link |
| NewsAPI | Headlines and articles. | 🔑 ApiKey | ✅ | Link |
| NewsData.io | News search and tracking. | 🔑 ApiKey | ✅ | Link |
| TheNewsAPI | Global news API. | 🔑 ApiKey | ✅ | Link |
| NewsAPI.ai | AI-powered news API. | 🔑 ApiKey | ✅ | Link |
| The Guardian | Guardian articles. | 🔑 ApiKey | ✅ | Link |
| Hacker News | Tech news from Y Combinator (No Auth). | No | ✅ | Link |
| Dev.to | Developer community articles (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Art Institute of Chicago | Museum artwork data (No Auth). | No | ✅ | Link |
| Giphy | GIFs. | 🔑 ApiKey | ✅ | Link |
| Lorem Picsum | Placeholder images. | No | ✅ | Link |
| Met Museum | Metropolitan Museum of Art collection (No Auth). | No | ✅ | Link |
| Pexels | Free stock photos. | 🔑 ApiKey | ✅ | Link |
| Picsum Photos | The Lorem Ipsum for photos. | No | ✅ | Link |
| Pixabay | Free stock photos and videos. | 🔑 ApiKey | ✅ | Link |
| Flickr | Photo sharing and management. | 🔑 ApiKey | ✅ | Link |
| NASA Image Library | NASA's image and video library (No Auth). | No | ✅ | Link |
| Unsplash | High-quality photos. | 🔐 OAuth | ✅ | Link |
| Imgix | Real-time image processing and optimization. | 🔑 ApiKey | ✅ | Link |
| Remove.bg | AI background removal from images. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| NASA API | Access NASA data, including Astronomy Picture of the Day (APOD). | 🔑 ApiKey | ✅ | Link |
| SpaceX | SpaceX launch data. | No | ✅ | Link |
| arXiv | Scientific paper search and metadata (No Auth). | No | ✅ | Link |
| ISS Location | Real-time International Space Station location (No Auth). | No | ✅ | Link |
| Launch Library | Rocket launch schedules and information. | No | ✅ | Link |
| USGS Earthquake | Real-time earthquake data (No Auth). | No | ✅ | Link |
| Newton | Symbolic and arithmetic math calculator API (No Auth). | No | ✅ | Link |
| Wolfram Short Answers | Computational knowledge answers. | 🔑 ApiKey | ✅ | Link |
| Open Science Framework | Open source research management platform. | 🔐 OAuth | ✅ | Link |
| People in Space | Current number of people in space (No Auth). | No | ✅ | Link |
| Solar System OpenData | Solar system planets and moons data (No Auth). | No | ✅ | Link |
| Where the ISS at | Real-time ISS position, velocity and visibility (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| HaveIBeenPwned | Check if email or password has been compromised in a data breach. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Best Buy | Retail data. | 🔑 ApiKey | ✅ | Link |
| eBay | Auction and retail. | 🔐 OAuth | ✅ | Link |
| Etsy | E-commerce. | 🔐 OAuth | ✅ | Link |
| Mercadolibre | E-commerce. | 🔑 ApiKey | ✅ | Link |
| Shopee | E-commerce. | 🔑 ApiKey | ✅ | Link |
| WooCommerce | E-commerce. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Bluesky | Decentralized social network API (AT Protocol). | 🔑 ApiKey | ✅ | Link |
| Discord | Chat platform. | 🔐 OAuth | ✅ | Link |
| Social network. | 🔐 OAuth | ✅ | Link | |
| Gravatar | WordPress avatar service. | No | ✅ | Link |
| Photo sharing. | 🔐 OAuth | ✅ | Link | |
| LINE | Messaging app. | 🔐 OAuth | ✅ | Link |
| Professional network. | 🔐 OAuth | ✅ | Link | |
| Mastodon | Decentralized microblogging platform. | 🔐 OAuth | ✅ | Link |
| Microsoft Teams | Team collaboration platform. | 🔐 OAuth | ✅ | Link |
| Visual discovery. | 🔐 OAuth | ✅ | Link | |
| Social news. | 🔐 OAuth | ✅ | Link | |
| Slack | Team communication. | 🔐 OAuth | ✅ | Link |
| Snapchat | Photo and video sharing. | 🔐 OAuth | ✅ | Link |
| Telegram | Messaging app. | 🔑 ApiKey | ✅ | Link |
| Threads | Meta's microblogging platform. | 🔐 OAuth | ✅ | Link |
| TikTok | Video sharing. | 🔐 OAuth | ✅ | Link |
| Tumblr | Microblogging platform. | 🔐 OAuth | ✅ | Link |
| Twitch | Live streaming. | 🔐 OAuth | ✅ | Link |
| Microblogging. | 🔐 OAuth | ✅ | Link | |
| Viber | Messaging app. | 🔑 ApiKey | ✅ | Link |
| Messaging app. | 🔐 OAuth | ✅ | Link | |
| YouTube | Video sharing platform. | 🔐 OAuth | ✅ | Link |
| Zalo | Messaging and social platform. | 🔐 OAuth | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| TheSportsDB | Open crowd-sourced sports data and artwork. | 🔑 ApiKey | ✅ | Link |
| API-Football | Football (soccer) live scores, fixtures, stats. | 🔑 ApiKey | ✅ | Link |
| Football-Data.org | Football data and statistics (Free tier). | 🔑 ApiKey | ✅ | Link |
| NBA API | NBA stats and scores (No Auth). | No | ✅ | Link |
| ESPN | Sports scores and news. | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| DiceBear Avatars | Generate random SVG avatars (No Auth). | No | ✅ | Link |
| FakerAPI | Generate fake data for testing (No Auth, 1000 req/day). | No | ✅ | Link |
| goqr.me | Create QR codes via URL parameters (No Auth). | No | ✅ | Link |
| Gravatar | Global avatar service (use email MD5 hash). | No | ✅ | Link |
| ipify | A simple public IP address API (No Auth). | No | ✅ | Link |
| Pravatar | Placeholder avatar images (No Auth). | No | ✅ | Link |
| QR Code Generator | Dynamic QR code generation API. | No | ✅ | Link |
| RoboHash | Generate unique robot/monster avatars (No Auth). | No | ✅ | Link |
| Shields.io | Quality metadata badges for open source projects (No Auth). | No | ✅ | Link |
| UI Avatars | Generate avatar placeholders from initials (No Auth, 28M+ daily requests). | No | ✅ | Link |
| URLBox | Website screenshot API. | 🔑 ApiKey | ✅ | Link |
| TinyURL | URL shortener API (No Auth). | No | ✅ | Link |
| DuckDuckGo Instant Answer | Quick, concise answers for definitions, calculations, and conversions. | No | ✅ | Link |
| Country.is | Get country from IP address (No Auth). | No | ✅ | Link |
| Text Art API | Generate text-based art (No Auth). | No | ✅ | Link |
| JSONLint | JSON validation API. | No | ✅ | Link |
| Carbon Screenshot | Create beautiful images of code snippets. | No | ✅ | Link |
| PDF.co | PDF generation, conversion and manipulation. | 🔑 ApiKey | ✅ | Link |
| Short.io | URL shortener with analytics. | 🔑 ApiKey | ✅ | Link |
| Cal.com | Open source scheduling API (Calendly alternative). | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Colormind | AI-powered color palette generator (No Auth). | No | ✅ | Link |
| Lorem Picsum | Beautiful placeholder images (No Auth). | No | ✅ | Link |
| Placeholder.com | Simple placeholder image service (No Auth). | No | ✅ | Link |
| The Color API | Color conversion, schemes, and naming (No Auth). | No | ✅ | Link |
| Dribbble | Design community and portfolio. | 🔐 OAuth | ✅ | Link |
| Behance | Creative work showcase. | 🔑 ApiKey | ✅ | Link |
| Icon Horse | Favicon grabber API. | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| REST Countries | Comprehensive country data (flags, capitals, currencies) (No Auth). | No | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| BART | Bay Area Rapid Transit. | 🔑 ApiKey | ✅ | Link |
| OpenSky Network | Flight tracking. | No | ✅ | Link |
| Transport for London | Public transport data. | 🔑 ApiKey | ✅ | Link |
⚠️ Important Disclaimer:
These APIs are not officially supported by the original services. They are community-maintained, reverse-engineered, or use unofficial methods. Use at your own risk:
- 🚨 May break at any time without notice
- ⚖️ May violate Terms of Service of the original platform
- 🔒 No official support or guarantees
- 📉 Rate limits and availability may change
When to use: Development, testing, or when official APIs are too restrictive/expensive. For production, consider official APIs when available.
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Invidious | Privacy-focused YouTube front-end and API (no tracking, no ads). | No | ✅ | Link |
| Piped | Alternative YouTube API (privacy-respecting, no Google tracking). | No | ✅ | Link |
| NewPipe Extractor | YouTube, SoundCloud, PeerTube data extraction library. | No | ✅ | Link |
| Bibliogram | Instagram front-end (read-only, no login required) |
No | ✅ | Link |
| Libreddit | Reddit alternative front-end (fast, private, lightweight). | No | ✅ | Link |
| ProxiTok | TikTok alternative front-end with API support. | No | ✅ | Link |
| Scribe | Medium alternative front-end (no tracking, no paywall). | No | ✅ | Link |
| Rimgo | Imgur alternative front-end (privacy-respecting). | No | ✅ | Link |
| Searx/SearxNG | Meta search engine with JSON API (aggregates results). | No | ✅ | Link |
| yt-dlp API | YouTube (and 1000+ sites) video/audio download API. | No | ✅ | Link |
| Scraptube | Simple YouTube scraper (no official API needed). | No | ✅ | Link |
| Instaloader | Instagram scraper (posts, stories, profiles). | No | ✅ | Link |
| TikTok API (Unofficial) | Various community TikTok scrapers on GitHub. | No | ✅ | Link |
| Twitter API Alternatives | Community alternatives like tweet-harvest, twint forks. | No | ✅ | Link |
🔍 How to find instances: Many of these services have multiple public instances. Check their GitHub repos for updated instance lists.
💡 Self-hosting recommended: For reliability and privacy, consider self-hosting these services rather than relying on public instances.
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Advice Slip | Generate random advice slips (No Auth, great for simple widgets). | No | ✅ | Link |
| Chuck Norris Jokes | Random Chuck Norris jokes (No Auth). | No | ✅ | Link |
| Dad Jokes | Random dad jokes (No Auth). | No | ✅ | Link |
| Imgflip | Get popular meme templates to create your own memes (No Auth). | No | ✅ | Link |
| JokeAPI | Jokes in various categories (No Auth). | No | ✅ | Link |
| Useless Facts | Random useless facts (No Auth). | No | ✅ | Link |
| Kanye.rest | Random Kanye West quotes (No Auth). | No | ✅ | Link |
| Breaking Bad Quotes | Random Breaking Bad quotes (No Auth). | No | ✅ | Link |
| Random Dog Facts | Random dog facts API (No Auth). | No | ✅ | Link |
| Corporate BS Generator | Generate corporate jargon (No Auth). | No | ✅ | Link |
| Zen Quotes | Random inspirational quotes (No Auth). | No | ✅ | Link |
| Affirmations | Get random positive affirmations (No Auth). | No | ✅ | Link |
| Evil Insult | Generate evil insults (No Auth). | No | ✅ | Link |
| Tronald Dump | Random Donald Trump quotes (No Auth). | No | ✅ | Link |
| Numbers API | Fun facts about numbers (No Auth). | No | ✅ | Link |
| Quote Garden | Collection of 5000+ quotes (No Auth). | No | ✅ | Link |
| Fun Translations | Translate text to Yoda, Pirate, etc. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| Adzuna | Job board aggregator with salary data. | 🔑 ApiKey | ✅ | Link |
| APIJobs | Real-time job market data. | 🔑 ApiKey | ✅ | Link |
| JSearch | Job search API (via RapidAPI). | 🔑 ApiKey | ✅ | Link |
| Remoteok | API for remote jobs (often used for job board projects). | No | ✅ | Link | | Reed | UK job board API. | 🔑 ApiKey | ✅ | Link | | The Muse | Job search and company data. | 🔑 ApiKey | ✅ | Link | | USAJOBS | US government job listings. | 🔑 ApiKey | ✅ | Link |
| API Name | Description | Auth | HTTPS | Link |
|---|---|---|---|---|
| 7Timer! | Weather forecast. | No | No | Link |
| AccuWeather | Weather forecast. | 🔑 ApiKey | ✅ | Link |
| Open-Meteo | Open-source weather API (No API key required). | No | ✅ | Link |
| Meteoblue | Weather forecasts and history. | 🔑 ApiKey | ✅ | Link |
| Visual Crossing | Global weather data and forecasts. | 🔑 ApiKey | ✅ | Link |
| OpenWeatherMap | Weather forecast. | 🔑 ApiKey | ✅ | Link |
| RainViewer | Weather radar. | No | ✅ | Link |
| WeatherAPI | Weather forecast. | 🔑 ApiKey | ✅ | Link |
| Weatherbit | Weather forecast. | 🔑 ApiKey | ✅ | Link |
| Weatherstack | Real-time & historical world weather data. | 🔑 ApiKey | ✅ | Link |
| wttr.in | Console-oriented weather (No Auth, Terminal/Browser). | No | ✅ | Link |
| 7Timer! Weather | Astronomical and meteorological forecasts (No Auth). | No | ✅ | Link |
| Air Quality (OpenAQ) | Global air quality data (No Auth). | No | ✅ | Link |
| Sunrise-Sunset | Sunrise and sunset times for any location (No Auth). | No | ✅ | Link |
Don't forget to ⭐ this repo if you found it useful!