# ADH Geopolitical Risk Signal – sig-geo-risk

> ADH Geopolitical Risk Signal – sig-geo-risk is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns quantitative geopolitical pressure index signals (momentum, volatility, z-score, percentile rank) derived from aggregated world tension time-series data.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/sig-geo-risk
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-geopolitical-risk-signal-sig-geo-risk-24258e1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qtNjibfG-cIC-rW8Nx1No

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-geopolitical-risk-signal-sig-geo-risk-24258e1a
```

Example prompt: Pull the latest geopolitical pressure index signal from ADH — I need the current world tension z-score, momentum, volatility, and percentile rank so I can assess macro regime risk for my portfolio overlay.

## When to prefer this

Choose this endpoint when you need a precomputed, quantitative geopolitical risk signal with statistical context (z-score, percentile rank, momentum) rather than raw news feeds or unprocessed event data. Ideal for macro regime detection, risk overlays, and agent workflows that need a single normalized number representing global geopolitical pressure, already time-synchronized and sourced from 239 aggregated data sources.

## Known failure modes

- 402 Payment Required if x402 payment header is missing or USDC payment fails
- Stale or missing data if upstream tension data sources are unavailable
- Empty signals array if the series cannot be computed at request time
- Malformed response if the time-series library has insufficient history points

## How this service works

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

## Output

A JSON object containing a geopolitical pressure index signal with fields: series name ('worldtension'), current last_value, 1-period return (ret_1), 4-period momentum (mom_4), 20-period volatility (vol_20), 10- and 30-period z-scores (zscore_10, zscore_30), 10- and 30-period percentile ranks (pctrank_10, pctrank_30), point count, status, and a timestamped history array. Also includes source attribution, data_type label, and generated_at 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": {
   "method": "x402 signals: log-return momentum / volatility / z-score / percentile rank over time-series library",
   "product": "地缘压力指数",
   "signals": [
    {
     "mom_4": 0.021506,
     "ret_1": 0,
     "points": 91,
     "series": "worldtension",
     "status": "ok",
     "vol_20": 0.050676,
     "history": [
      {
       "ts": 1782172800,
       "value": 89
      },
      {
       "ts": 1782172800,
       "value": 89
      }
     ],
     "zscore_10": 0.1932,
     "zscore_30": 0.9631,
     "last_value": 94,
     "pctrank_10": 40,
     "pctrank_30": 76.7
    }
   ],
   "generated_at": "2026-08-14T00:22:02Z"
  },
  "source": "datum-signals",
  "data_type": "信号指标",
  "collected_at": "2026-08-14T00:22:02Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-geopolitical-risk-signal-sig-geo-risk-24258e1a/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)
