# Bitcoin Fee Pulse

> Bitcoin Fee Pulse is a paid API for AI agents from k2so.wrong.systems, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns live Bitcoin mempool congestion and fee estimates sourced from mempool.space in real time.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/bitcoin-fee-pulse
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitcoin-fee-pulse-2ec045c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K2ojho5nwSgi3Zjoarb5f

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-fee-pulse-2ec045c2
```

Example prompt: What are the current Bitcoin mempool fees and congestion levels? I want to know if now is a good time to send a transaction and what fee rate I should use.

## When to prefer this

Choose this endpoint when you need a concise, scored, and summarized view of Bitcoin mempool congestion with risk analysis rather than raw fee data. It wraps mempool.space data with a quality score, confidence rating, and plain-language summary, making it ideal for agents that need to make fee decisions or surface human-readable congestion reports without parsing raw blockchain API responses.

## Known failure modes

- Payment not received or insufficient — returns 402 with payment required details
- mempool.space upstream unavailable — service may return an error or stale data
- Invalid query parameter value for meta — returns validation error
- Network timeout if mempool data fetch is slow

## How this service works

Live Bitcoin mempool congestion from mempool.space fee estimates.

## Output

Returns a structured JSON object containing a success flag, payment confirmation, a congestion/fee score, a plain-language summary of current mempool conditions, confidence level, strengths, risk factors, evidence data, and an ISO-8601 timestamp of when the data was generated.

## 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",
     "properties": {
      "meta": {
       "enum": [
        "0",
        "1"
       ],
       "type": "string",
       "description": "Set to 1 for free metadata JSON (no payment required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "Bitcoin Fee Pulse paid response",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ok",
      "paid",
      "service",
      "provider",
      "result"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "paid": {
       "type": "boolean"
      },
      "result": {
       "type": "object",
       "required": [
        "ok",
        "service"
       ],
       "properties": {
        "ok": {
         "type": "boolean",
         "description": "Handler success"
        },
        "score": {
         "type": "number"
        },
        "service": {
         "type": "string",
         "description": "Service slug"
        },
        "summary": {
         "type": "string"
        },
        "evidence": {
         "type": "object"
        },
        "strengths": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "confidence": {
         "type": "string"
        },
        "generatedAt": {
         "type": "string",
         "description": "ISO-8601 timestamp"
        },
        "riskFactors": {
         "type": "array",
         "items": {
          "type": "string"
         }
        }
       }
      },
      "payment": {
       "type": "object",
       "properties": {
        "code": {
         "type": "string"
        },
        "payer": {
         "type": "string"
        },
        "detail": {
         "type": "string"
        },
        "selfPay": {
         "type": "boolean"
        },
        "transaction": {
         "type": "string"
        }
       }
     
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "result": {
   "ok": true,
   "service": "bitcoin-fee-pulse"
  },
  "service": "bitcoin-fee-pulse",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bitcoin-fee-pulse-2ec045c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so.wrong.systems](https://www.zero.xyz/host/k2so.wrong.systems/llms.txt)
