# Scout DX – Hacker News Scout

> Scout DX – Hacker News Scout is a paid API for AI agents from scout-dx.hugen.tokyo, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns scouted data and insights for Hacker News (HN) related queries via a paid x402 endpoint.

## Facts

- Endpoint: GET https://scout-dx.hugen.tokyo/scout/hn
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scout-dx-hugen-tokyo-45897549
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DYFPV93jcgVWsKsGnrXQe

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 scout-dx-hugen-tokyo-45897549
```

Example prompt: Can you scout Hacker News for recent discussions about LLM agent frameworks and surface the most relevant posts or signals?

## When to prefer this

Use this endpoint when you need programmatic access to Hacker News community discussions, signals, or posts for a given topic, and you are operating in an x402-compatible payment environment on Base or Solana. Prefer this over general web search when HN community sentiment or developer discourse is specifically desired.

## Known failure modes

- Payment not provided or invalid x402 header — 402 Payment Required
- No matching HN content found for query — empty or null results
- Query parameter missing — 400 Bad Request
- Network or upstream HN data unavailability — 503 or timeout

## How this service works

Returns scout data for HN-related queries.

## Output

Returns scouted Hacker News data including relevant posts, threads, discussions, and community signals matching the query. Delivered as structured scout data via the x402-paid endpoint.

## Example request

```json
{
 "q": "artificial intelligence",
 "sort": "relevance",
 "per_page": 10
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "q"
 ],
 "properties": {
  "q": {
   "type": "string",
   "example": "AI agents",
   "description": "Search query string"
  },
  "tag": {
   "enum": [
    "story",
    "comment",
    "poll",
    "show_hn",
    "ask_hn"
   ],
   "type": "string",
   "description": "Filter by content type"
  },
  "sort": {
   "enum": [
    "relevance",
    "date"
   ],
   "type": "string",
   "default": "relevance",
   "description": "Sort order: relevance (default) or chronological"
  },
  "per_page": {
   "type": "integer",
   "default": 10,
   "maximum": 50,
   "minimum": 1,
   "description": "Number of results to return (1-50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "count",
  "query",
  "source",
  "success",
  "elapsed_ms"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "id",
     "url",
     "date",
     "type",
     "title",
     "author",
     "hn_url",
     "points",
     "comments"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "url": {
      "type": "string"
     },
     "date": {
      "type": "string"
     },
     "type": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "author": {
      "type": "string"
     },
     "hn_url": {
      "type": "string"
     },
     "points": {
      "type": "number"
     },
     "comments": {
      "type": "number"
     }
    }
   }
  },
  "count": {
   "type": "number"
  },
  "query": {
   "type": "string"
  },
  "source": {
   "type": "string"
  },
  "success": {
   "type": "boolean"
  },
  "elapsed_ms": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scout-dx-hugen-tokyo-45897549/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scout-dx.hugen.tokyo](https://www.zero.xyz/host/scout-dx.hugen.tokyo/llms.txt)
