Twitter API Alternatives After the 2023 Free-Tier Killing
· news
Reddit JSON, Hacker News, news aggregators — here's what indie devs actually use for social and news data in 2026.
The cheapest real-time social/news data available without paying in 2026 comes from Hacker News (unlimited, no key), Reddit JSON (60 req/min, no key), and Spaceflight News (unlimited, no key). None of them are Twitter. But for most of what indie developers actually needed Twitter for — trending topics, developer discussion, tech news — they work.
I built a news aggregator after Twitter killed the free tier and ended up preferring the HN API for tech discussion and Reddit JSON for breadth. The data is richer in most dimensions — you get upvotes, comment counts, and thread structure that Twitter never exposed.
What Twitter's Free Tier Actually Enabled
Before February 2023, Twitter's v1.1 free tier gave you: up to 500,000 tweet reads/month, the 'home timeline' (recent tweets from accounts you follow), search (limited), streaming (filtered by keyword or user). The apps that depended on it: third-party clients (Apollo, Tweetbot, Twitterrific), academic research tools, social dashboards, brand monitoring apps, and bots.
The API going paid wasn't just about the apps themselves — it ended an entire category of hackathon project ('I want to show a live Twitter feed of [topic]'). That use case has no clean replacement because Twitter's content is uniquely Twitter's.
Hacker News API: The Best Free Tech Discussion Feed
The Hacker News API (Firebase-hosted, unlimited, no key) is the best free source of curated tech discussion. The top 500 story IDs are available at `https://hacker-news.firebaseio.com/v0/topstories.json`, each fetchable individually for title, URL, score, and comment count.
The limitation: you can't query by keyword or topic. You get the full HN feed and filter client-side. For a 'top tech links today' use case, this is fine — you'd fetch the top 30 stories and display them. For a topic-specific tracker, you need to fetch more stories and filter by title/URL domain.
HN's uptime is exceptional — it runs on Firebase infrastructure and I've never seen it go down in our monitoring data. See /hacker-news for current status.
Reddit JSON API: Breadth With Rate Limits
The Reddit JSON API works by appending `.json` to any Reddit URL. `https://www.reddit.com/r/programming/top.json?limit=25&t=day` gives you the top 25 posts from r/programming today. No key required, 60 requests/minute, but you must set a User-Agent header.
The breadth is Reddit's advantage — there's a subreddit for almost every topic, and the content includes text posts, links, and comments. For a 'what are developers saying about [technology]?' use case, r/programming, r/webdev, r/devops, and r/MachineLearning cover most of it.
Important caveats: this is technically against Reddit's updated ToS for commercial use. It's also unofficial infrastructure — Reddit could block it without notice. See /reddit-json for current monitoring status.
Structured News APIs: NewsData, Guardian, and New York Times
For actual news (as opposed to social discussion), NewsData.io (200 calls/day, key required) and The Guardian Open Platform (500 calls/day, test key available, no credit card) are the best free options. The Guardian gives you full article text on the free tier — rare among news APIs.
The New York Times API (500 calls/day, 10 calls/min, free key) covers article search going back to 1851 and provides access to top stories by section. Both are excellent for academic research, content aggregation, and trend analysis.
Spaceflight News API (unlimited, no key) is niche but excellent for its domain — NASA, ESA, SpaceX news aggregated cleanly. If your app has a space/tech angle, it's a perfect secondary source.
See /category/news for a live ranking of all news APIs by uptime and response time.