# Cult OS Hacker Signal Feed

> Cult OS Hacker Signal Feed is a paid API for AI agents from www.cultos.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches a curated feed of hacker-relevant signals (news, social, engineering, releases) filtered by query, category, and recency

## Facts

- Endpoint: POST https://www.cultos.dev/services/hacker-feed
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cult-os-hacker-signal-feed-04c856a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6KLpQUmkXHKyRuPwg2pdC

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 cult-os-hacker-signal-feed-04c856a2 -d '<json body>'
```

Example prompt: Pull up to 15 hacker signals from the last 72 hours in the engineering category about WebAssembly using the Cult OS Hacker Feed.

## When to prefer this

Choose this endpoint when you need a curated, multi-source hacker/developer signal feed aggregated around specific categories (news, social, engineering, releases) with recency and keyword filtering — especially useful when you want a lightweight digest rather than raw search engine results or a single-source RSS feed.

## Known failure modes

- Empty items array if no signals match the query or category in the given time window
- sourceErrors populated if one or more upstream signal sources failed to respond
- staleSources populated if some sources returned outdated data
- limit out of range (below 1 or above 20) causes validation error
- sinceHours out of range (below 1 or above 168) causes validation error
- query string exceeding 120 characters rejected
- Payment failure via x402 protocol prevents access

## How this service works

Hacker Signal Feed

## Output

A JSON object containing the feed name, a list of signal items matching the query and filters, the timestamp it was generated, counts of sources checked and available, plus any source errors or stale sources encountered during aggregation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 20,
   "minimum": 1
  },
  "query": {
   "type": "string",
   "maxLength": 120
  },
  "category": {
   "enum": [
    "news",
    "social",
    "engineering",
    "releases"
   ],
   "type": "string"
  },
  "sinceHours": {
   "type": "integer",
   "default": 48,
   "maximum": 168,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "feed": "crypto",
  "items": [],
  "generatedAt": "2026-09-13T00:00:00.000Z",
  "sourceErrors": [],
  "staleSources": [],
  "sourcesChecked": 9,
  "sourcesAvailable": 9
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cult-os-hacker-signal-feed-04c856a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.cultos.dev](https://www.zero.xyz/host/www.cultos.dev/llms.txt)
