# Hacker News Tech Community Brief

> Hacker News Tech Community Brief is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns an LLM-generated digest summarizing what the tech community is currently focused on, based on recent Hacker News activity

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/hacker-news/brief
- Price: $0.25/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-tech-community-brief-b8aec687
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DsFIX4Lkftyii4O9NArr0

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-community-brief-b8aec687
```

Example prompt: Give me an AI-written digest of what the tech community has been focused on since January 1st — I want to know the key themes and discussions happening on Hacker News right now.

## When to prefer this

Use this endpoint when you need a concise, human-readable AI-written summary of what the tech/developer community is currently discussing on Hacker News, rather than raw stories or individual post data. Ideal for briefing users on tech trends without requiring them to parse large volumes of content.

## Known failure modes

- No recent Hacker News data available for the requested window — returns empty or minimal digest
- Invalid date-time format for 'since' parameter — schema validation error
- Upstream LLM generation failure — may fall back to template-based generation
- Payment not completed (x402) — endpoint returns 402 Payment Required

## How this service works

An LLM-written digest of what the tech community is focused on right now.

## Output

A short LLM-written prose digest summarizing the most notable topics and discussions from the Hacker News tech community within the requested time window, along with a flag indicating whether it was generated by an LLM or template and the number of source items it was based on.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hacker-news-tech-community-brief-b8aec687/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
