# ADH Processed Puell Multiple — Bitcoin Valuation Signal

> ADH Processed Puell Multiple — Bitcoin Valuation Signal 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 Puell Multiple with regime classification (undervalued/overvalued), price, daily issuance, and interpretive commentary derived from CoinGecko data.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-puell
- 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-puell-multiple-bitcoin-valuation-signal-bdded9bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sOpGpNpPOpnqY20QWpuF6

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-puell-multiple-bitcoin-valuation-signal-bdded9bc
```

Example prompt: What is the current Bitcoin Puell Multiple regime — is BTC undervalued, fairly valued, or in bubble territory — and what's today's processed Puell value with the interpretation?

## When to prefer this

Choose this endpoint when you need a pre-computed, interpreted Bitcoin Puell Multiple with regime classification rather than raw price data. It is ideal for AI agents that need ready-to-use valuation intelligence without implementing the Puell formula themselves. Prefer this over generic price feeds when the goal is cycle-positioning, miner economics analysis, or macro regime detection. The built-in interpretation and sourcing make it directly injectable into LLM context without further processing.

## Known failure modes

- CoinGecko upstream data unavailable — stale or missing price data returned
- Payment not settled via x402 — 402 Payment Required response
- Data delay: results may be 1 day behind real-time due to processing pipeline
- Malformed request — only GET method supported; other methods return error
- Temporary service unavailability — 5xx errors if provider infrastructure is down

## How this service works

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

## Output

Returns a JSON object containing: the computed Puell Multiple value, current BTC price, daily issued BTC (450 BTC post-2024 halving), regime label (e.g. '低估' = undervalued), data date, delay in days, a historical time series of Puell values with dates, a human-readable interpretation string explaining the signal in context, the data source attribution (CoinGecko), 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": "自算(CoinGecko)",
  "history": [
   {
    "date": "2026-07-28",
    "puell": 0.7483
   },
   {
    "date": "2026-07-28",
    "puell": 0.7483
   }
  ],
  "product": "processed-puell",
  "snapshot": {
   "note": "自算: CoinGecko价+流通量+365日频历史; 日产量=3.125*144=450BTC(2024减半后)",
   "price": 65191,
   "puell": 0.7661,
   "regime": "低估",
   "data_date": "2026-08-09",
   "delay_days": 1,
   "daily_issued_btc": 450
  },
  "data_type": "valuation",
  "collected_at": "2026-08-09T17:35:01Z",
  "interpretation": "BTC Puell Multiple = 0.766，低估。Puell<0.5为历史深度低估（矿工产出价值远低于年均，抄底区），>4为泡沫顶部。当前估值低估。"
 }
}
```

## More

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