# Obol PayAI Bitcoin Broadcast Timing Feed

> Obol PayAI Bitcoin Broadcast Timing Feed is a paid API for AI agents from obol-payai.fly.dev, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns a real-time decision feed indicating whether to broadcast a Bitcoin transaction now, wait, or wait briefly, based on mempool fee estimates, trend, and congestion analysis.

## Facts

- Endpoint: GET https://obol-payai.fly.dev/pulse
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/obol-payai-bitcoin-broadcast-timing-feed-d3b1136c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cW5kPW6B5u-ERkK-9bN96

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 obol-payai-bitcoin-broadcast-timing-feed-d3b1136c
```

Example prompt: Should I broadcast my Bitcoin transaction right now, or wait for fees to drop? Give me the current sat/vB estimate, whether fees are rising or falling, and whether I should broadcast now or hold off.

## When to prefer this

Use this endpoint when an AI agent or wallet application needs a high-level broadcast timing decision rather than raw Bitcoin Core RPC data. It is ideal for agents automating BTC transaction broadcasts that want to minimize fees without implementing their own mempool analysis logic. Prefer this over raw fee estimators when you need a clear go/no-go verdict, trend direction, and savings estimate in a single poll.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Mempool data temporarily unavailable — may return 503 or stale data
- Rate limiting if polled too aggressively — returns 429
- Network connectivity issues to upstream mempool source — returns 503 or degraded data
- Invalid Ed25519 signature verification if downstream tampering occurs

## How this service works

Bitcoin broadcast-timing decision feed for agents: next-block fee estimate sat/vB, fee TREND (rising/falling since last poll), broadcast verdict (broadcast now / wait / wait briefly), economy-tier savings %, recheck-in-seconds, mempool backlog, congestion tier, fee-spike flag, tip height, BTC spot. Poll each cycle to time a BTC broadcast and minimize fees — should I broadcast now? Decision feed, not raw Bitcoin Core RPC. Free teaser: GET /pulse/preview. Cryptographically signed (Ed25519) — every

## Output

Returns a cryptographically signed (Ed25519) JSON payload containing: next-block fee estimate in sat/vB, fee trend (rising/falling since last poll), broadcast verdict (broadcast now / wait / wait briefly), economy-tier savings percentage, recheck-in-seconds countdown, mempool backlog status, congestion tier, fee-spike flag, current tip height, and BTC spot price.

## 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": {}
    }
   },
   "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/obol-payai-bitcoin-broadcast-timing-feed-d3b1136c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obol-payai.fly.dev](https://www.zero.xyz/host/obol-payai.fly.dev/llms.txt)
