# ADH Processed Token Risk Radar

> ADH Processed Token Risk Radar 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 a composite cryptocurrency token risk score (0–100) derived from multiple market signals including fear/greed sentiment, classifying the current market regime as panic, neutral, or overheated.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-token-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-processed-token-risk-radar-62b5c577
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TA39nlbI8D091Vmoz9Z6i

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-token-risk-radar-62b5c577
```

Example prompt: What's the current crypto token risk level right now — is the market overheated, neutral, or in fear territory? Give me the composite risk score and the key sentiment factors behind it.

## When to prefer this

Choose this endpoint when you need a pre-processed, multi-source composite risk score for the crypto market rather than raw sentiment data — ideal for trading agents that need a single actionable risk number without aggregating multiple feeds themselves. Prefer this over raw fear/greed APIs when you want entity-resolved, timestamped intelligence with an interpretation label already applied.

## Known failure modes

- Missing or malformed GET request returns 4xx error
- Upstream data source unavailable causing stale or missing component data
- Payment not settled via x402 resulting in 402 Payment Required response
- Partial component data if fewer than 4 sources are available at collection time

## How this service works

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

## Output

A JSON object containing: a numeric risk_score (0–100), a risk level string (e.g. LOW/MEDIUM/HIGH) in English and Chinese, an interpretation key (panic=opportunity, neutral, overheated=high risk), a breakdown of up to 4 component factors (e.g. Fear & Greed index with per-factor risk contribution), the data source identifier, data type label, and the UTC timestamp when data was collected.

## 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": {
   "level": "MEDIUM",
   "level_zh": "中性",
   "components": [
    {
     "note": "指数越高越贪婪，回调风险越大",
     "risk": 31,
     "value": 31,
     "factor": "情绪(Fear&Greed)"
    },
    {
     "note": "指数越高越贪婪，回调风险越大",
     "risk": 31,
     "value": 31,
     "factor": "情绪(Fear&Greed)"
    }
   ],
   "risk_score": 50.6,
   "interpretation": "0-44 恐慌/低风险(偏机会) · 45-69 中性 · 70-100 过热/高风险",
   "components_used": 4
  },
  "source": "token_risk_radar",
  "data_type": "金融信号",
  "collected_at": "2026-08-09T18:18:05Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-processed-token-risk-radar-62b5c577/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)
