# ADH BTC Mining Pool Distribution

> ADH BTC Mining Pool Distribution 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 real-time Bitcoin mining pool share distribution, showing each pool's percentage of blocks mined in the last 24 hours

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/btc-pools
- 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-btc-mining-pool-distribution-af47549f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zS91gwQcSOoUXMafFJMb2

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-mining-pool-distribution-af47549f
```

Example prompt: Pull the latest Bitcoin mining pool distribution — I want to see which pools are dominating block production over the past 24 hours and what share of blocks are coming from unknown miners.

## When to prefer this

Choose this endpoint when you need real-time Bitcoin mining pool distribution data with provenance metadata and a timestamped collection window, especially within an agent workflow using x402 micropayment settlement. Preferable over scraping blockchain explorers directly because data is pre-processed, entity-resolved, and source-tagged. Best for crypto due diligence, network health monitoring, or decentralization analysis in AI agent pipelines.

## Known failure modes

- Payment failure: x402 payment not processed, returns 402 with payment requirements
- Upstream data unavailable: blockchain pool data source temporarily down, returns error or stale data
- Rate limiting: excessive calls may trigger throttling
- Unknown pool dominance: large share attributed to 'Unknown' when pools don't self-identify, limiting granularity of analysis

## How this service works

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

## Output

Returns a JSON object with an array of mining pools, each containing the pool name, its percentage share of blocks in the last 24 hours, and its block count. Also includes total blocks mined in 24h, the data source identifier ('blockchain_pools'), a data type label, and a UTC timestamp of when the data was collected.

## 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": {
   "pools": [
    {
     "pool": "Unknown",
     "share_pct": 50.35,
     "blocks_24h": 71
    },
    {
     "pool": "Unknown",
     "share_pct": 50.35,
     "blocks_24h": 71
    }
   ],
   "total_blocks_24h": 141
  },
  "source": "blockchain_pools",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:17:41Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-btc-mining-pool-distribution-af47549f/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)
