# ADH BTC Detail — Bitcoin Financial Intelligence Snapshot

> ADH BTC Detail — Bitcoin Financial Intelligence Snapshot 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 cleaned, sourced Bitcoin price and market snapshot (price, ATH, 24h change, market cap, circulating supply) derived from CoinGecko via the ADH financial intelligence layer.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/btc-detail
- 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-detail-bitcoin-financial-intelligence-snapshot-95b3c647
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Bof2kEAuQmIp1ahK2wXn

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-detail-bitcoin-financial-intelligence-snapshot-95b3c647
```

Example prompt: What's Bitcoin's current price, market cap, 24-hour change, and all-time high — I need a sourced snapshot with a timestamp I can log?

## When to prefer this

Choose this endpoint when you need a sourced, timestamped, agent-ready Bitcoin market snapshot with provenance metadata (not just a raw price feed), especially in x402 micro-payment workflows where per-call USDC billing at $0.01 is acceptable. Prefer this over raw CoinGecko direct calls when you need the ADH entity-resolution and data-lineage layer, or when integrating into an agent pipeline that already uses x402 settlement.

## Known failure modes

- Upstream CoinGecko data unavailability may return stale or error response
- x402 payment failure (insufficient USDC balance or wallet misconfiguration) results in 402 status with no data
- Invalid or missing required input fields return a schema validation error
- Network timeouts from the ADH layer if upstream source is slow

## How this service works

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

## Output

A JSON object containing Bitcoin's current USD price, all-time high in USD, 24-hour price change percentage, total market cap in USD, circulating supply in BTC, the underlying data source identifier (e.g. coingecko_bitcoin), data type label, and a UTC timestamp of when the data was collected.

## 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": {
  "raw": {
   "ath_usd": 126080,
   "price_usd": 65159,
   "change_24h_pct": 0.16768,
   "market_cap_usd": 1307618018892,
   "circulating_supply": 20067959
  },
  "source": "coingecko_bitcoin",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:17:44Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-btc-detail-bitcoin-financial-intelligence-snapshot-95b3c647/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)
