# ForgeMesh Developer News Feed

> ForgeMesh Developer News Feed is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns a normalized, ranked feed of top technology and developer stories from a leading tech community board, including title, link, score, author, and comment count, refreshed every 3 minutes.

## Facts

- Endpoint: POST https://x402.forgemesh.io/developer-news-feed
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-developer-news-feed-5645a2a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2q1HTJ8_aCz4JKybLYHEd

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 forgemesh-developer-news-feed-5645a2a8 -d '<json body>'
```

Example prompt: Pull the current top-ranked tech and developer stories from the community feed right now — I want the titles, links, scores, authors, and comment counts so I can pick the best ones for my newsletter.

## When to prefer this

Use this endpoint when you need a pre-normalized, ranked snapshot of top tech/developer stories without scraping or parsing a community board yourself. Ideal for newsletter pipelines, trend monitoring dashboards, or agent workflows that need structured story metadata (score, author, comments) rather than raw HTML. Prefer this over general web scraping when you want consistent schema output refreshed every 3 minutes.

## Known failure modes

- Upstream community board unavailable — empty or error response
- Stale data if refresh cycle is delayed beyond 3 minutes
- Empty body POST not properly structured — schema validation error
- Rate limiting or payment failure resulting in 402 response
- No stories returned if upstream board has no elevated stories at query time

## How this service works

A normalized feed of the top-ranked technology and developer stories right now — title, link, score, author, and comment count for each — pulled from a leading tech community discussion board. For monitoring emerging tools, tracking industry sentiment, or feeding a newsletter pipeline. Refreshed every 3 minutes.

## Output

A normalized list of top-ranked technology and developer stories, each with title, URL link, community score, author name, and comment count, representing the current leaderboard refreshed within the last 3 minutes.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "hits": [
    {
     "url": "https://example.com",
     "title": "Show HN: ...",
     "points": 312,
     "num_comments": 148
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-developer-news-feed-5645a2a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
