hackernews

Installation
Summary

Fetch Hacker News stories, comments, and user data via the free, open API.

  • Supports six story categories: top, best, new, Ask HN, Show HN, and job postings, plus real-time item and profile updates
  • Retrieve full item details including title, URL, score, comment count, and nested comment threads by item ID
  • Look up user profiles with karma scores, account creation dates, and submission history
  • No API key required; use direct curl calls with jq filtering to extract and process JSON responses
SKILL.md

How to Use

1. Get Top Stories

Fetch IDs of the current top 500 stories:

curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" | jq '.[:10]'

2. Get Best Stories

Fetch the best stories (highest voted over time):

curl -s "https://hacker-news.firebaseio.com/v0/beststories.json" | jq '.[:10]'

3. Get New Stories

Related skills
Installs
2.7K
GitHub Stars
59
First Seen
Jan 24, 2026