# ADH Processed Fear Index — Cross-Asset Panic Thermometer

> ADH Processed Fear Index — Cross-Asset Panic Thermometer 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).

Returns a processed cross-asset fear/greed index combining VIX, gold volatility, equity volatility, and crypto volatility into a single scored signal with interpretation.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-fear
- 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-processed-fear-index-cross-asset-panic-thermometer-1cc735de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rVwN2dqW3yecmhEeFv-Ja

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-processed-fear-index-cross-asset-panic-thermometer-1cc735de
```

Example prompt: What's the current cross-asset fear and greed reading — give me the VIX, volatility breakdown for gold, stocks, and crypto, and the overall panic thermometer score with an interpretation of what it means for risk assets.

## When to prefer this

Choose this endpoint when you need a pre-processed, multi-asset fear/greed composite rather than raw VIX data alone. It is ideal for AI agents that need a single authoritative sentiment score with interpretation, without building their own volatility aggregation pipeline. Prefer it over raw market data feeds when you want cross-asset context (gold + equities + crypto in one call) and a narrative interpretation included in the payload. At $0.01 USDC via x402, it is cost-effective for frequent polling in automated workflows.

## Known failure modes

- Stale data if upstream volatility sources are delayed — check collected_at timestamp
- 402 Payment Required if x402 payment header is missing or USDC balance is insufficient
- Network timeout if agentdatum.com servers are under load
- Empty or partial response if one of the 239 underlying sources is temporarily unavailable
- Rate limiting if too many requests are made in a short window

## How this service works

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

## Output

Returns a JSON object with: a composite fear index score (0–100) with a label (e.g. '贪婪'/Greed or '恐慌'/Fear), current VIX value, annualized volatility percentages for gold, equities, and crypto, a historical time-series array of past readings, a human-readable interpretation string explaining the signal and its implications for risk assets, and metadata including source and collection 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": {
  "source": "datum-processed",
  "history": [
   {
    "v": 18.41,
    "ts": 1782457200
   },
   {
    "v": 18.41,
    "ts": 1782457200
   }
  ],
  "product": "跨资产恐慌温度计",
  "snapshot": {
   "vix": 14.9,
   "fear_index": 16,
   "fear_label": "贪婪",
   "gold_vol_ann_pct": 29,
   "stock_vol_ann_pct": 14,
   "crypto_vol_ann_pct": 10
  },
  "data_type": "加工信号产品",
  "collected_at": "2026-08-14T00:23:01Z",
  "interpretation": "跨资产恐慌温度计 16/100（贪婪）。VIX=14.9，黄金年化波动 29%，股指波动 14%，加密波动 10%。VIX>30 预示避险情绪升温，通常利好黄金、压制风险资产。"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-processed-fear-index-cross-asset-panic-thermometer-1cc735de/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)
