惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
Jina AI
Jina AI
罗磊的独立博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
月光博客
月光博客
博客园_首页
Vercel News
Vercel News
P
Proofpoint News Feed
GbyAI
GbyAI
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Most Complete Public APIs Directory in 2026 (1,555 AP...
Pedro Manell · 2026-04-28 · via DEV Community

If you've ever built a side project, you know the drill: you have an idea, you start building, and then you spend 2-3 hours just searching for the right API.

Is there a free weather API? Does it need an API key? What's the rate limit? Does it have a Python SDK?

I got tired of that workflow. So I built a dataset.

What I built

A curated CSV with 1,555 public APIs across 52 categories, enriched with the information you actually need before integrating an API:

Field Example
Name OpenWeatherMap
Category Weather
Description Real-time weather data by city or coordinates
Base URL api.openweathermap.org
Auth Type API Key
Free Tier Yes
Free Limit 1,000 req/day
Available SDKs Python, JavaScript, Ruby
Docs URL openweathermap.org/api
Popularity High

Why a CSV and not a website?

Websites go down. Datasets don't.

You can open this in Excel, Google Sheets, Notion, or Airtable. Filter by category, sort by auth type, search by SDK. No login, no account, no dependencies.

What categories are covered?

The 15 largest categories:

  • Development (154 APIs)
  • Geocoding (94 APIs)
  • Games & Comics (89 APIs)
  • Government (83 APIs)
  • Transportation (66 APIs)
  • Cryptocurrency (55 APIs)
  • Finance (55 APIs)
  • Video (50 APIs)
  • Documents & Productivity (48 APIs)
  • Social (39 APIs)
  • Security (37 APIs)
  • Sports & Fitness (37 APIs)
  • Weather (36 APIs)
  • Machine Learning (30 APIs)
  • Music (32 APIs)

Plus 37 more categories including Animals, Anime, Books, Calendar, Email, Environment, Health, Jobs, Photography, Shopping, and more.

Some APIs you'll find inside

A few examples across different categories:

Weather: Open-Meteo (unlimited, no auth), WeatherAPI, OpenWeatherMap
Finance: Alpha Vantage, Fixer, ExchangeRate API
Machine Learning: Hugging Face, Stability AI, OpenAI
Geocoding: Mapbox, OpenStreetMap, HERE
Government: NASA, data.gov, EU Open Data Portal
Games: RAWG, IGDB, Open Trivia Database

How I built it

I scraped the public-apis community repository (one of the most maintained API directories on GitHub with 300k+ stars), then enriched each entry using Claude AI to fill in the missing fields: free limits, SDK availability, and popularity scoring.

The whole pipeline took about 3 hours of scripting and $0.02 in API costs.

Who is this for?

  • Developers prototyping apps who need a quick API reference
  • Indie hackers validating ideas before committing to a paid API
  • Students building portfolio projects with real data
  • No-code builders connecting tools via Make, Zapier, or n8n
  • Data scientists looking for free data sources

Get the dataset

The full dataset (1,555 APIs, CSV format) is available here:
👉 DataStackHQ on Payhip — $9 one-time, instant download

If you find it useful, I'll be releasing more datasets. Drop a comment with what category you'd find most useful next.


Built with Python, pandas, and the Anthropic API. The source repository is public-apis/public-apis on GitHub.