# ADH Processed MVRV — Bitcoin Valuation Intelligence

> ADH Processed MVRV — Bitcoin Valuation 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 processed Bitcoin MVRV (Market Value to Realized Value) ratio snapshot with regime classification, realized price, and historical series, sourced from BGeometrics with T-1 delay.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-mvrv
- 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-mvrv-bitcoin-valuation-intelligence-e99547bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lS8MB4TxhfgMyvffoBUd7

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-mvrv-bitcoin-valuation-intelligence-e99547bc
```

Example prompt: What's Bitcoin's current MVRV ratio and is it signaling undervaluation, fair value, or a bubble top right now?

## When to prefer this

Choose this endpoint when you need a clean, pre-interpreted Bitcoin MVRV signal with regime classification without managing raw data source access, API keys, or data normalization. Ideal for AI agents that need a single structured on-chain valuation call at $0.01 per query. Prefer over raw Santiment or Glassnode feeds when you want T-1 data with a human-readable regime label already attached and no API key management overhead.

## Known failure modes

- Upstream BGeometrics source unavailable — may return stale or error response
- Data is T-1 (previous day) — real-time intraday MVRV not available
- Empty history array if historical data fetch fails
- Non-200 HTTP status if x402 payment not settled correctly
- Rate limiting or quota exhaustion at the intelligence layer

## How this service works

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

## Output

Returns a JSON object containing: current MVRV ratio, regime label (e.g. '低估-合理区间' / undervalued-fair range), Bitcoin realized price in USD, data date with delay_days indicator, collected_at timestamp, source attribution (BGeometrics), and a historical array of dated MVRV values, plus a human-readable Chinese-language interpretation of the current reading.

## 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": "BGeometrics /v1/mvrv (T-1)",
  "history": [
   {
    "date": "2026-07-26",
    "mvrv": 1.2465
   },
   {
    "date": "2026-07-26",
    "mvrv": 1.2465
   }
  ],
  "product": "processed-mvrv",
  "snapshot": {
   "mvrv": 1.2417,
   "note": "BGeometrics 免费匿名源（数据T-1，远新于旧 Santiment 滞后30天版）；无需key",
   "regime": "低估-合理区间",
   "data_date": "2026-08-08",
   "delay_days": 1,
   "realized_price": 52330.02
  },
  "data_type": "valuation",
  "collected_at": "2026-08-09T14:20:01Z",
  "interpretation": "BTC MVRV（市值/实现市值）= 1.242，处于低估-合理区间。实现市值反映持仓成本基础，MVRV<1 意味着市价低于多数持币者成本（深度低估），>3.5 为泡沫顶部信号。当前 2026-08-08，估值偏低。"
 }
}
```

## More

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