Hacker News top stories and item detail. Two-step workflow: call /topstories to get a list of story IDs, then call /story?id=<id> to fetch full content for each story. Free, no key required.
https://api.apiclearinghouse.com/v1/call/hackernewsAuthenticate with X-Api-Key: chk_live_... header.
/topstoriescurl -s "https://api.apiclearinghouse.com/v1/call/hackernews/topstories" \
-H "X-Api-Key: YOUR_API_KEY"{
"status": "success",
"data": {
"story_ids": "abc123"
}
}/story| Name | Type | Required | Description |
|---|---|---|---|
| id | string | required | HackerNews item ID (integer as string). Get IDs from /topstories first. |
curl -s "https://api.apiclearinghouse.com/v1/call/hackernews/story?id={id}" \
-H "X-Api-Key: YOUR_API_KEY"{
"status": "success",
"data": {
"by": "example",
"id": "abc123",
"url": "example",
"time": "example",
"type": "example"
}
}No setup required. Sign in and run HackerNews directly from your browser.
Open in Explorer →Monthly limits also apply per plan.