# ADH BTC On-Chain Network Health Intelligence

> ADH BTC On-Chain Network Health 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-13).

Returns processed Bitcoin on-chain network health intelligence including hashrate, mempool status, difficulty, and recommended fees with AI-generated interpretation.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-chain-btc
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-btc-on-chain-network-health-intelligence-07913377
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6kNdq8g_bCfSyZfeHi-Yp

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-btc-on-chain-network-health-intelligence-07913377
```

Example prompt: What's the current state of the Bitcoin network right now — hashrate, mempool congestion, and what fee should I be using for a transaction?

## When to prefer this

Choose this endpoint when you need a pre-processed, AI-interpreted Bitcoin on-chain health snapshot rather than raw API data. It is especially useful when you want hashrate, mempool congestion, and fee recommendations bundled with a natural-language interpretation in a single call. Prefer this over direct mempool.space queries when you need derived conclusions and sourcing provenance without building your own aggregation layer. Best suited for agents that need BTC network context for trading decisions, fee estimation, or periodic network health monitoring.

## Known failure modes

- Upstream mempool.space data unavailability causing null or stale snapshot fields
- Difficulty field may return null if not yet computed
- Fee fields may return 0 sat/vB during low-congestion periods, which could be misread as an error
- x402 payment failure if USDC balance is insufficient or payment header is malformed
- Rate limiting or 402 re-challenge if payment is not correctly pre-authorized

## How this service works

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

## Output

A JSON object containing: the data source (mempool.space), product label ('BTC链上网络健康'), a snapshot with hashrate (EH/s), mempool transaction count, mempool vsize, fast/hour/half-hour fee recommendations in sat/vB, and network difficulty. Also includes a timestamp, historical hashrate array, and an AI-generated Chinese-language interpretation summarizing network security and congestion status.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "required": []
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "mempool.space",
  "history": [
   {
    "v": 905.12,
    "ts": 1786295101
   }
  ],
  "product": "BTC链上网络健康",
  "snapshot": {
   "difficulty": null,
   "hashrate_ehs": 905.12,
   "mempool_count": 79146,
   "mempool_vsize": 41859000,
   "fee_fast_sat_vb": 0,
   "fee_hour_sat_vb": 0,
   "fee_half_hour_sat_vb": 0
  },
  "data_type": "onchain_health",
  "collected_at": "2026-08-09T17:05:01Z",
  "interpretation": "BTC 链上网络健康：全网算力 905 EH/s，难度 ?，未确认交易 79,146 笔（内存池拥堵），推荐手续费 0 sat/vB。算力高位+难度上升=网络安全稳健；内存池积压。"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-btc-on-chain-network-health-intelligence-07913377/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)
