# ADH Smart Money Index — Processed Financial Intelligence

> ADH Smart Money Index — Processed Financial Intelligence is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a synthesized institutional momentum / smart-money index (0-100) derived from gold, global equities, and US macro signals, with state classification and historical snapshots

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-smartmoney
- 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/adh-smart-money-index-processed-financial-intelligence-02c14d7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z5AGx7aG35D6eDlyINuDZ

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-smart-money-index-processed-financial-intelligence-02c14d7b
```

Example prompt: What is the current ADH smart money index? I want to know if institutions are net buyers or sellers right now, and get the underlying momentum scores for gold and global equities.

## When to prefer this

Choose this endpoint when you need a pre-synthesized, ready-to-interpret institutional momentum signal rather than raw data — it saves the agent from aggregating and normalizing 239 sources itself. Ideal for macro regime detection, risk-on/risk-off classification, and portfolio timing signals. Prefer over raw price feeds or single-asset signals when you want a composite view of gold, global equities, and US macro momentum in one call at $0.01 USDC.

## Known failure modes

- 402 Payment Required if x402 USDC payment is not attached or insufficient
- Stale data if upstream sources lag — check collected_at timestamp
- Empty or incomplete component array if one or more of the 239 source feeds is temporarily unavailable
- Malformed response if query parameters are incorrectly structured (though none are required)
- Rate limiting or gateway errors during high-traffic periods

## How this service works

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

## Output

A JSON object containing: a smart_money_index score (0-100), a human-readable state label (e.g. '机构净买入/动能强'), an array of component signals per asset family (gold, global equities, US macro) with 4-week momentum percent and 30-day z-scores, a plain-language interpretation of what the index implies, a collected_at timestamp, and a short history array of recent index values with timestamps.

## 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": {
  "source": "datum-processed",
  "history": [
   {
    "v": 246,
    "ts": 1786018922
   },
   {
    "v": 246,
    "ts": 1786018922
   }
  ],
  "product": "机构动能 / 聪明钱代理指数",
  "snapshot": {
   "state": "机构净买入/动能强",
   "components": [
    {
     "family": "gold",
     "mom_4_pct": 8.35,
     "zscore_30": 3.49
    },
    {
     "family": "gold",
     "mom_4_pct": 8.35,
     "zscore_30": 3.49
    }
   ],
   "smart_money_index": 71.6
  },
  "data_type": "加工信号产品",
  "collected_at": "2026-08-14T00:23:01Z",
  "interpretation": "机构动能指数 71.6/100（机构净买入/动能强）。合成黄金/全球股指/美国宏观三族信号动量，指数>60 通常预示聪明钱加码风险资产，<40 预示撤退。"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-smart-money-index-processed-financial-intelligence-02c14d7b/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)
