# Briefing Service – Render Briefing

> Briefing Service – Render Briefing is a paid API for AI agents from briefing-service.wholemind.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-17).

Generates a custom ranked news briefing from specified RSS feeds and returns structured JSON plus rendered 1-bit PNG pages.

## Facts

- Endpoint: POST https://briefing-service.wholemind.workers.dev/v1/render
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/briefing-service-render-briefing-ffa64d88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yM_VMgW8Relegz25WNpGn

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 briefing-service-render-briefing-ffa64d88 -d '<json body>'
```

Example prompt: Create a news briefing called 'Tech & Finance Daily' using these feeds: https://feeds.wired.com/wired/fulltext and https://feeds.bloomberg.com/markets/news.rss, tailored for a startup founder persona, and include the top 8 stories.

## When to prefer this

Choose this endpoint when you need both a machine-readable structured JSON briefing and a human-readable rendered 1-bit page image from custom RSS sources with persona-tuned ranking, especially when you want to pay per-call via x402 with no subscription commitment.

## Known failure modes

- Invalid or unreachable RSS feed URLs causing fetch failures
- Missing required fields (name or feeds) returning a 400 error
- Payment failure via x402 protocol blocking the request
- Feeds returning no parseable items resulting in an empty briefing
- Rate limits or timeouts on upstream feed sources causing partial results

## How this service works

Hourly ranked news briefings as JSON and rendered 1-bit pages.

## Output

Returns a JSON object containing a unique briefing ID, a URL to the full structured JSON briefing (with ranked stories by category), a URL to the rendered 1-bit front page PNG image, and the total number of rendered pages available.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string"
  },
  "feeds": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "persona": {
   "type": "string"
  },
  "item_count": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "a1b2c3d4e5f6",
  "json": "https://…/latest.json",
  "name": "Hardware Brief",
  "pages": 6,
  "front_page_png": "https://…/latest.png"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/briefing-service-render-briefing-ffa64d88/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from briefing-service.wholemind.workers.dev](https://www.zero.xyz/host/briefing-service.wholemind.workers.dev/llms.txt)
