# Hacker News Frontpage OSINT Feed

> Hacker News Frontpage OSINT Feed is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches the current Hacker News front page stories, optionally filtered by minimum points and capped to a specified number of results

## Facts

- Endpoint: POST https://agenttoll.dev/paid/osint/hn-frontpage
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hacker-news-frontpage-osint-feed-7bf90ffe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iudL-EMx1qoLxo1mFPBXt

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability hacker-news-frontpage-osint-feed-7bf90ffe -d '<json body>'
```

Example prompt: What are the top 20 Hacker News front page stories right now? Only show me ones with at least 150 points.

## When to prefer this

Use this endpoint when you need programmatic, paid-tier access to the current Hacker News front page with filtering capabilities — ideal for agents that need reliable, structured HN data without scraping, especially when you want to threshold by point score to surface only high-signal stories.

## Known failure modes

- Upstream HN API unavailability may result in an error or stale cached response
- min_points filter set too high may return an empty array
- limit set to 0 or negative may return unexpected results
- Cached responses may be slightly behind real-time frontpage state

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns an array of Hacker News front page story objects (titles, URLs, scores, etc.) along with metadata including the total count, data source identifier, generation timestamp, and a flag indicating whether the response was served from cache.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  },
  "min_points": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "oneOf": [
    {
     "type": "array"
    },
    {
     "type": "object"
    }
   ]
  },
  "meta": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "source": {
     "type": "string"
    },
    "generated_at": {
     "type": "string",
     "format": "date-time"
    }
   }
  },
  "cached": {
   "type": "boolean"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hacker-news-frontpage-osint-feed-7bf90ffe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
