# Bitcoin Total Transaction Fees (Blockchain.info)

> Bitcoin Total Transaction Fees (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 total Bitcoin transaction fees collected over the latest reporting interval, sourced from the Blockchain.info stats API

## Facts

- Endpoint: GET https://finance-api.kdlcfa.workers.dev/btc-total-fees
- 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-total-transaction-fees-blockchain-info-ccccbdb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QsVMxwQzSqWowFzxs5udY

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-total-transaction-fees-blockchain-info-ccccbdb0
```

Example prompt: What's the total amount of Bitcoin transaction fees collected in the latest reporting interval according to Blockchain.info?

## When to prefer this

Use this endpoint when you need a quick, low-cost lookup of the current total Bitcoin transaction fees as reported by Blockchain.info stats. Prefer it over building a direct Blockchain.info integration when you want a pay-per-call model via x402 without managing API keys. Best suited for dashboards, monitoring pipelines, or agents that need a single on-chain fee metric rather than full blockchain analytics.

## Known failure modes

- Blockchain.info upstream API unavailable — proxy returns an error or empty response
- Stale data if Blockchain.info has not updated its stats for the current interval
- No query parameters supported, so no ability to filter by time range or denomination
- Raw value returned without units or timestamp context, requiring caller interpretation

## How this service works

Total Bitcoin transaction fees over the latest reporting interval (raw value as returned by upstream), via Blockchain.info stats API

## Output

A raw numeric value representing the total Bitcoin transaction fees (in satoshis or BTC, as returned by Blockchain.info) collected over the most recent reporting interval, passed through directly from the upstream stats API.

## 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-total-transaction-fees-blockchain-info-ccccbdb0/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)
