# hacker-news API (/api/hacker-news)



Public-data Hacker News endpoints.

## When To Use This API [#when-to-use-this-api]

The hacker-news API is for agent workflows that need public, platform-native data without writing a custom collector for every task. Use it when a prompt needs evidence from live social records, when a Skill needs repeatable enrichment, or when product code needs the same contract an agent discovered through MCP.

This section lists 6 live hacker-news operations from the canonical OpenAPI spec. Each operation page documents the route, method, parameters, response envelope, pagination behavior when available, and the error vocabulary shared across UnifAPI.

* Use hacker-news operations when an agent needs public records from this platform.
* Call the documented endpoints through MCP or HTTP and keep the response envelope consistent.
* Combine these records with other UnifAPI APIs for research, monitoring, and enrichment workflows.

## Agent Contract Notes [#agent-contract-notes]

Agents usually discover these endpoints with the hosted UnifAPI MCP server, inspect the operation schema, then call only the records needed for the current task. Developers can call the same endpoints over HTTP with an API key, which makes the path from exploratory agent run to production integration direct.

Every successful response uses a stable envelope with a request id, data payload, optional pagination cursor, and billing metadata. Errors use the same closed vocabulary across platforms, so retry logic, user-facing explanations, and cost reporting can stay consistent even when a workflow spans multiple public-data sources.

When you are choosing an operation, start from the public identifier the user already has: a profile username, post id, channel id, subreddit name, search term, or URL-derived slug. Prefer the narrowest endpoint that answers the question, then expand only when the agent needs more evidence. This keeps record usage predictable, makes citations easier to explain, and avoids turning a focused research task into an expensive crawl.

## Operations [#operations]

### Items [#items]

* [`GET /hacker-news/items/{id}`](/api/hacker-news/items/id/get) — Get Hacker News item by ID — Fetch a single Hacker News item.

### Max Item [#max-item]

* [`GET /hacker-news/max-item`](/api/hacker-news/max-item/get) — Get largest Hacker News item ID — Returns the current largest Hacker News item id.

### Stories [#stories]

* [`GET /hacker-news/stories/{feed}/items`](/api/hacker-news/stories/feed/items/get) — List Hacker News story items — Fetch item details from a named Hacker News story feed in one operation.
* [`GET /hacker-news/stories/{feed}`](/api/hacker-news/stories/feed/get) — List Hacker News story IDs — List Hacker News story ids from a named feed.

### Updates [#updates]

* [`GET /hacker-news/updates`](/api/hacker-news/updates/get) — Get changed Hacker News items and profiles — Returns recently changed Hacker News item ids and user profile ids.

### Users [#users]

* [`GET /hacker-news/users/{id}`](/api/hacker-news/users/id/get) — Get Hacker News user by ID — Fetch a public Hacker News user profile by case-sensitive username.
