# ADH BTC Mempool Fees Intelligence

> ADH BTC Mempool Fees 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 current Bitcoin mempool fee estimates (regular and priority sat/vB) sourced and cleaned from blockchain.info with provenance metadata.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/btc-mempool-fees
- 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-mempool-fees-intelligence-a69de8b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V5yY_ClsEvhUrRoA6r3iA

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-mempool-fees-intelligence-a69de8b7
```

Example prompt: What are the current Bitcoin mempool fees — give me both the regular and priority sat/vB rates so I know what to set for my next transaction.

## When to prefer this

Choose this endpoint when you need clean, sourced Bitcoin mempool fee estimates with provenance metadata (source, timestamp) rather than raw blockchain node calls. Ideal for agents that need fee recommendations without maintaining their own blockchain node or integrating directly with mempool APIs. At $0.01 USDC per call via x402, it suits low-frequency lookups where data freshness within minutes is sufficient.

## Known failure modes

- Upstream blockchain.info unavailability may cause stale or missing data
- Rate limiting if called excessively without payment
- Fee data may reflect a snapshot up to a few minutes old, not real-time mempool depth
- Payment failure via x402 protocol returns 402 status before data is delivered

## How this service works

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

## Output

A JSON object containing the current Bitcoin fee estimates: regular_sat_vb and priority_sat_vb (integer sat/vB rates), a limits object with min/max values, a nested data array with the same fields, the source identifier (blockchain.info), data_type label, and a collected_at UTC timestamp indicating when the data was gathered.

## 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": {
  "raw": {
   "data": [
    {
     "limits": {
      "max": 3,
      "min": 0
     },
     "regular": 1,
     "priority": 2
    }
   ],
   "limits": {
    "max": 3,
    "min": 0
   },
   "regular_sat_vb": 1,
   "priority_sat_vb": 2
  },
  "source": "blockchain.info",
  "data_type": "区块链",
  "collected_at": "2026-08-14T00:43:02Z"
 }
}
```

## More

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