# ADH Processed VIX Stress Intelligence

> ADH Processed VIX Stress 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 processed VIX volatility index data with stress level classification, historical snapshots, and human-readable market interpretation

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-vix-stress
- 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-processed-vix-stress-intelligence-df0d2f08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vLsgRckuSqg-Y4174VVCU

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-vix-stress-intelligence-df0d2f08
```

Example prompt: What's the current VIX stress level right now — is the market calm, on alert, or in panic mode, and what does that mean for risk assets?

## When to prefer this

Choose this endpoint when you need a pre-processed, agent-ready volatility stress signal with built-in regime classification and human-readable interpretation, rather than raw FRED data that requires your own parsing and contextualization. Ideal for AI agents that need to inject macroeconomic risk context into a decision pipeline without building a data cleaning layer. Best when you want both the numeric VIX value AND its qualitative regime label and implication for asset classes in a single call at near-zero cost ($0.01 USDC).

## Known failure modes

- FRED upstream delay or outage causing stale or missing data
- x402 payment failure if USDC balance insufficient or wallet not configured
- Invalid HTTP method (only GET/HEAD/DELETE accepted)
- Temporary 402 if payment header malformed or missing
- Rate limiting if called excessively without valid micropayment

## How this service works

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

## Output

Returns a JSON object containing: the current VIX numeric value, a categorical stress level label (e.g. 警戒/alert, 恐慌/panic), a historical array of timestamped VIX readings, the data source (FRED VIXCLS), collection timestamp in ISO 8601, and a plain-language interpretation explaining what the VIX level implies for gold, risk assets, and market sentiment — with regime thresholds (<15 calm, 15-25 alert, 25-35 panic, >35 extreme panic).

## 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": "FRED VIXCLS",
  "history": [
   {
    "v": 15.15,
    "ts": 1786295103
   }
  ],
  "product": "VIX波动率压力",
  "snapshot": {
   "vix": 15.15,
   "level": "警戒"
  },
  "data_type": "volatility",
  "collected_at": "2026-08-09T17:05:03Z",
  "interpretation": "VIX 恐慌指数 15.15（警戒）。<15 平静，15-25 警戒，25-35 恐慌，>35 极端恐慌。VIX 飙升通常利好黄金、压制风险资产。"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-processed-vix-stress-intelligence-df0d2f08/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)
