# Bitcoin Network Health & Mempool Data

> Bitcoin Network Health & Mempool Data is a paid API for AI agents from asistent-crypto.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns Bitcoin network health metrics including hashrate, difficulty, transaction count, estimated volume, miner revenue, and the largest recent mempool transactions.

## Facts

- Endpoint: POST https://asistent-crypto.vercel.app/api/x402/data/btc-network
- 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/bitcoin-network-health-mempool-data-e318dcca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BaBksJuaE8KYZ9oUHqNrX

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 bitcoin-network-health-mempool-data-e318dcca -d '<json body>'
```

Example prompt: Pull the current Bitcoin network health snapshot — hashrate, difficulty, transaction count, miner revenue, and the biggest mempool transactions sitting unconfirmed right now.

## When to prefer this

Use this endpoint when you need Bitcoin-specific on-chain network health data, especially mempool transaction flow, as a leading indicator before price moves. Prefer it over generic crypto price APIs when you need miner revenue, hashrate, difficulty, or large pending transaction signals for trading or risk analysis.

## Known failure modes

- Network data source unavailable — upstream provider outage returns error or stale data
- Payment not processed — x402 payment failure returns 402 status
- Mempool data temporarily empty or incomplete during low-activity periods
- Rate limiting if called too frequently without valid payment

## How this service works

Bitcoin network health: hashrate, difficulty, transaction count, estimated volume, miner revenue and the largest recent mempool transactions. A congested mempool carrying large transfers can front-run an exchange flow you will only see in price an hour later.

## Output

A JSON response containing Bitcoin network metrics: current hashrate, mining difficulty, transaction count, estimated on-chain volume, miner revenue, and a list of the largest recent mempool transactions with their sizes and values — useful for spotting congestion signals that may precede price movements.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bitcoin-network-health-mempool-data-e318dcca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from asistent-crypto.vercel.app](https://www.zero.xyz/host/asistent-crypto.vercel.app/llms.txt)
