# Hacker News Tech Sentiment Feed

> Hacker News Tech Sentiment Feed is a paid API for AI agents from cycle-angela-lamp-hamburg.trycloudflare.com, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Fetches the latest Hacker News stories for a given topic, returning titles, URLs, points, and comment counts as a developer community sentiment signal.

## Facts

- Endpoint: GET https://cycle-angela-lamp-hamburg.trycloudflare.com/api/sentiment/tech-chatter
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hacker-news-tech-sentiment-feed-8b5ff336
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rhUuADj4cH4OOEVNcshHz

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-tech-sentiment-feed-8b5ff336
```

Example prompt: Pull the latest Hacker News stories about 'WebAssembly' and show me the titles, points, and comment counts so I can gauge developer sentiment.

## When to prefer this

Choose this endpoint when you need real-time developer community sentiment or buzz around a specific technology, tool, library, or programming topic from Hacker News — particularly useful for gauging grassroots developer interest, controversy, or excitement. Prefer this over general web search when you specifically want the HN tech-savvy audience's reaction, scored by upvotes and engagement.

## Known failure modes

- No stories found for the topic — no_signals returns true with an empty stories array
- Invalid or missing query parameter ?q= — may return an error or empty result
- Transient Cloudflare tunnel unavailability causing 502/503 errors
- Rate limiting or payment failure resulting in 402 response
- Topic too broad or too narrow yielding irrelevant or zero results

## How this service works

Hacker News discussion for a topic: latest stories, points, comment counts, urls. JSON array. Pass ?q=<topic>. Developer community sentiment signal.

## Output

A JSON object containing the queried topic, a 'stories' array of up to 25 recent Hacker News items (each with title, URL, points, post date, and comment count), a 'no_signals' boolean indicating whether any stories were found, and a 'generated_at' Unix timestamp indicating when the data was built.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "topic": {
   "type": "string"
  },
  "stories": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "points": {
      "type": "number"
     },
     "posted": {
      "type": "string"
     },
     "comments": {
      "type": "number"
     }
    }
   },
   "description": "latest 25 Hacker News stories"
  },
  "no_signals": {
   "type": "boolean"
  },
  "generated_at": {
   "type": "integer",
   "description": "unix seconds when payload was built"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hacker-news-tech-sentiment-feed-8b5ff336/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cycle-angela-lamp-hamburg.trycloudflare.com](https://www.zero.xyz/host/cycle-angela-lamp-hamburg.trycloudflare.com/llms.txt)
