# Bitcoin Recommended Fee Rates

> Bitcoin Recommended Fee Rates is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns current recommended Bitcoin transaction fee rates in sats/vbyte for multiple confirmation speed tiers, plus mempool statistics and fee histogram.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/bitcoin-fees-recommended
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-c8762a9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dipQJcLQ6I5NNkA5Wan1I

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 proxy-suverse-io-c8762a9b -d '<json body>'
```

Example prompt: What are the current Bitcoin transaction fees for getting confirmed in the next 30 minutes versus an hour — and how backed up is the mempool right now?

## When to prefer this

Use this endpoint when an AI agent needs to broadcast a Bitcoin transaction and must select an appropriate fee rate based on current mempool conditions. Ideal for wallets, payment automation, or any system that needs real-time fee estimation across multiple confirmation speed tiers rather than a single static estimate.

## Known failure modes

- Upstream mempool data source unavailable — returns 5xx error
- Payment not processed or insufficient USDC balance — returns 402 Payment Required
- Rate limit exceeded — returns 429 Too Many Requests
- Transient network error fetching live mempool data — may return stale or empty response

## How this service works

Bitcoin recommended fees real-time from mempool. sat/vByte tiers: fastest, half-hour, hour, economy, minimum. Includes mempool tx count, total size MB, total fee sats, fee histogram. AI agent BTC broadcasting bot, fee estimator API, mempool monitor.

## Output

Returns recommended fee rates in sats/vbyte for fastest, half-hour, hour, economy, and minimum confirmation tiers, along with mempool statistics including unconfirmed transaction count, total mempool size in MB, total fees in sats, and a per-fee-tier histogram showing transaction distribution.

## Example request

```json
{
 "confirmationSpeed": "30minutes"
}
```

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/proxy-suverse-io-c8762a9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
