# JMT X402 News Briefing

> JMT X402 News Briefing is a paid API for AI agents from jmt-x402-proxy.jmthomasofficial.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Delivers a deduplicated, LLM-synthesized news briefing on a given topic, including sentiment overview, key takeaways, and watch items sourced from current web results.

## Facts

- Endpoint: POST https://jmt-x402-proxy.jmthomasofficial.workers.dev/v2/api/news-briefing
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jmt-x402-news-briefing-a6d5b904
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qcBGCR1zY2j8n_8KpLsml

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 jmt-x402-news-briefing-a6d5b904 -d '<json body>'
```

Example prompt: Give me a full news briefing on NVIDIA — current sentiment, key takeaways, and anything I should be watching closely.

## When to prefer this

Choose this endpoint when you need a fast, structured, multi-angle news digest on a specific topic, company, asset, or event — especially when you want LLM synthesis plus sentiment and watch-items rather than raw search snippets alone. Prefer it over generic search endpoints when you want an editorially shaped briefing with deduplication and source attribution.

## Known failure modes

- Empty or missing topic field returns a validation error
- Topic too vague may yield low-signal results with generic synthesis
- Payment not included or rejected results in a 402 Payment Required response
- Upstream web search temporarily unavailable causes partial or failed briefing
- LLM synthesis timeout may result in incomplete output

## How this service works

Source-linked news briefing: deduplicated current web results, concise LLM synthesis, sentiment overview, key takeaways, and watch items.

## Output

A structured news briefing containing: deduplicated current web results with source links, a concise LLM-synthesized narrative, an overall sentiment overview, bullet-point key takeaways, and flagged watch items worth monitoring — all grounded in live web data.

## 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",
     "required": [
      "topic"
     ],
     "properties": {
      "topic": {
       "type": "string",
       "minLength": 1,
       "description": "Topic, company, asset, or event to brief."
      }
     },
     "additionalProperties": false
    },
    "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",
     "required": [
      "topic",
      "briefing",
      "source_count",
      "sources",
      "timestamp"
     ],
     "properties": {
      "topic": {
       "type": "string"
      },
      "sources": {
       "type": "array"
      },
      "briefing": {
       "type": "string"
      },
      "timestamp": {
       "type": "string"
      },
      "source_count": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jmt-x402-news-briefing-a6d5b904/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jmt-x402-proxy.jmthomasofficial.workers.dev](https://www.zero.xyz/host/jmt-x402-proxy.jmthomasofficial.workers.dev/llms.txt)
