# eudata402 Bitcoin Network Data (mempool.space)

> eudata402 Bitcoin Network Data (mempool.space) is a paid API for AI agents from x402-seller-202595743428.europe-west1.run.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches Bitcoin network fee recommendations, transaction details, or address data from mempool.space

## Facts

- Endpoint: GET https://x402-seller-202595743428.europe-west1.run.app/btc
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eudata402-bitcoin-network-data-mempool-space-bb0d8f45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CkzYUdIjmMKh0n7O7i5a7

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 eudata402-bitcoin-network-data-mempool-space-bb0d8f45
```

Example prompt: What are the current recommended Bitcoin fee tiers right now — low, medium, and high priority?

## When to prefer this

Use this endpoint when you need live Bitcoin network fee data, transaction confirmation status, or address balance lookups without managing your own Bitcoin node or API key. Prefer over raw RPC calls for quick agent integrations needing mempool.space data on a pay-per-call basis.

## Known failure modes

- Invalid or malformed txid/address returns an error object
- Unknown txid (not in mempool or blockchain) returns null or not-found error
- Network unavailability of mempool.space upstream causes 5xx response
- Missing required 'id' field when kind=tx or kind=address causes validation error
- Unrecognized 'kind' value defaults to fees or returns error

## How this service works

Bitcoin network data (mempool.space): recommended fee tiers, or a tx / address lookup. POST {kind?: fees|tx|address, id?}. Returns fee tiers or the tx/address object.

## Output

Returns either: (1) a fees object with recommended sat/vB fee tiers (low, medium, high priority) for the current mempool state, (2) a transaction object with details like confirmation status, block height, inputs/outputs, and fees, or (3) an address object with balance, transaction count, and history — all sourced from mempool.space.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "txid or address (for kind=tx|address)"
  },
  "kind": {
   "enum": [
    "fees",
    "tx",
    "address"
   ],
   "type": "string",
   "description": "default fees"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eudata402-bitcoin-network-data-mempool-space-bb0d8f45/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller-202595743428.europe-west1.run.app](https://www.zero.xyz/host/x402-seller-202595743428.europe-west1.run.app/llms.txt)
