# ADH Financial Intelligence – Media & News Feed

> ADH Financial Intelligence – Media & News Feed is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches aggregated media and financial news headlines from multiple RSS sources, processed into structured intelligence for AI agents.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/media-news
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-financial-intelligence-media-news-feed-5e0bb0aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CsOjHzE3hOMl8Ssop-xUE

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 adh-financial-intelligence-media-news-feed-5e0bb0aa
```

Example prompt: Pull the latest financial and crypto news headlines from ADH's media news feed so I can see what's breaking across all their sources right now.

## When to prefer this

Choose this endpoint when you need a broad sweep of financial and crypto news headlines aggregated from many sources (up to 239) in a single cheap ($0.01 USDC) call, especially for injecting current-events context into an AI agent. Prefer it over single-source news APIs when breadth of coverage and structured provenance metadata matter. Not ideal if you need full article text, deep NLP analysis, or highly targeted topic filtering.

## Known failure modes

- Payment failure (x402 payment not processed) – endpoint returns 402 with payment required details
- No new articles – feed may return 0 headlines if upstream RSS sources are temporarily unavailable
- Stale data – collected_at timestamp may lag real-time by minutes depending on aggregation cycle
- Duplicate headlines – response example shows duplicates can appear in the feed array
- Rate limiting – excessive calls may be throttled by the provider

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns a JSON object with a 'raw' block containing total article count, number of feeds, source label ('RSS-Aggregate'), and an array of headlines each with title, link, source name, and publication timestamp. Also includes top-level metadata: source identifier, data_type label (媒体娱乐), and collected_at UTC timestamp.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "count": 564,
   "feeds": 8,
   "source": "RSS-Aggregate",
   "headlines": [
    {
     "link": "https://news.google.com/rss/articles/CBMimAFBVV95cUxPQS1xeE8tb1IxNFhOcnF5WUh4UDBTV3VZbTdtS1RvUkxYNVVJQjJySlRkc0xCSXIzbXQ",
     "title": "Prediction: Bitcoin Will Be Worth $2.5 Trillion in 3 Years - Yahoo Finance",
     "source": "Yahoo Finance",
     "published": "Wed, 29 Jul 2026 07:00:00 GMT"
    },
    {
     "link": "https://news.google.com/rss/articles/CBMimAFBVV95cUxPQS1xeE8tb1IxNFhOcnF5WUh4UDBTV3VZbTdtS1RvUkxYNVVJQjJySlRkc0xCSXIzbXQ",
     "title": "Prediction: Bitcoin Will Be Worth $2.5 Trillion in 3 Years - Yahoo Finance",
     "source": "Yahoo Finance",
     "published": "Wed, 29 Jul 2026 07:00:00 GMT"
    }
   ]
  },
  "source": "rss_aggregate",
  "data_type": "媒体娱乐",
  "collected_at": "2026-08-09T18:11:29Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-financial-intelligence-media-news-feed-5e0bb0aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
