# Bitcoin Network Hash Rate via Blockchain.info

> Bitcoin Network Hash Rate via Blockchain.info is a paid API for AI agents from finance-api.kdlcfa.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the current Bitcoin network hash rate, sourced from the Blockchain.info stats API

## Facts

- Endpoint: GET https://finance-api.kdlcfa.workers.dev/btc-hashrate
- 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-hash-rate-via-blockchain-info-4907ae2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hFHvLI2YJvHkiSTOVd2gz

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-hash-rate-via-blockchain-info-4907ae2c
```

Example prompt: What's the current Bitcoin network hash rate right now?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.01) lookup of the Bitcoin network hash rate without setting up a direct Blockchain.info API integration. It is ideal for dashboards, alerts, or agent workflows that periodically check Bitcoin network health. Prefer this over raw Blockchain.info access when you need a simple pay-per-call model via x402 without API key management.

## Known failure modes

- Upstream Blockchain.info API unavailable — returns error or stale data
- Network timeout from the Cloudflare Worker to Blockchain.info
- Rate limiting or payment failure for the $0.01 USDC x402 paywall
- Unexpected response format if Blockchain.info changes their stats API schema

## How this service works

Bitcoin network hash rate, via Blockchain.info stats API

## Output

Returns a numeric value representing the current total Bitcoin network hash rate (likely in hashes per second or terahashes per second), sourced from the Blockchain.info stats API. The response reflects near-real-time network data.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "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-hash-rate-via-blockchain-info-4907ae2c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance-api.kdlcfa.workers.dev](https://www.zero.xyz/host/finance-api.kdlcfa.workers.dev/llms.txt)
