# PreReason BTC Pulse Briefing

> PreReason BTC Pulse Briefing is a paid API for AI agents from api.prereason.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns Bitcoin volume, transaction fees, and mempool activity with trend signals as a pulse-style market briefing.

## Facts

- Endpoint: GET https://api.prereason.com/api/btc/pulse
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prereason-btc-pulse-briefing-8b8def8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R3AdfKYUu8D5phgfeaZGx

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 prereason-btc-pulse-briefing-8b8def8a
```

Example prompt: Give me a Bitcoin pulse briefing — I want to see current volume, fee levels, and mempool activity with trend signals to understand network congestion right now.

## When to prefer this

Use this endpoint when you need a focused snapshot of Bitcoin network activity — specifically volume, fees, and mempool — with trend signals. Prefer over btc.quick-check when network-layer metrics (not just price) are the primary concern, and over btc.on-chain when you want a concise pulse rather than a deep on-chain health report.

## Known failure modes

- Invalid briefing ID returns error — must use 'btc.pulse'
- Date out of tier range (Free plan limited to 30d history) returns access error
- Invalid date format (not YYYY-MM-DD) returns validation error
- Payment not completed returns 402 Payment Required
- Invalid format enum value returns 400 error

## How this service works

PreReason delivers market context for financial agents. Bitcoin on-chain metrics, macro indicators, and reasoning context in one API call.

## Output

Returns a structured briefing (JSON or markdown) with Bitcoin price context, volume metrics, mempool activity, transaction fee levels, trend signals (bullish/bearish), confidence scores, and a generated_at timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "format": "json",
   "briefing": "btc.pulse"
  }
 }
}
```

## 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": [
      "briefing"
     ],
     "properties": {
      "date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Historical date in YYYY-MM-DD format. Access range depends on tier: Free=30d, Basic=from Jan 2025, Pro=all."
      },
      "format": {
       "enum": [
        "json",
        "markdown"
       ],
       "type": "string",
       "description": "Response format. markdown is token-optimized for LLMs, json is structured."
      },
      "briefing": {
       "enum": [
        "btc.quick-check",
        "btc.context",
        "btc.pulse",
        "btc.grid-stress",
        "macro.snapshot",
        "cross.correlations",
        "btc.momentum",
        "btc.on-chain",
        "btc.miner-survival",
        "btc.etf-flows",
        "macro.liquidity",
        "cross.breadth",
        "btc.full",
        "btc.factors",
        "btc.energy",
        "btc.treasury",
        "cross.regime",
        "fx.liquidity"
       ],
       "type": "string",
       "description": "Briefing ID. 18 available: btc.quick-check, btc.context, btc.pulse, btc.grid-stress, macro.snapshot, cross.correlations (Tier 1), btc.momentum, btc.on-chain, btc.miner-survival, btc.etf-flows, macro.liquidity, cross.breadth (Tier 2), btc.full, btc.factors, btc.energy, btc.treasury, cross.regime, fx.liquidity (Tier 3)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "context": "Bitcoin trading at $84,200, up 4.2% over 7 days...",
  "metrics": {
   "bitcoin_price": {
    "signal": "bullish",
    "trend_7d": 4.2,
    "confidence": 82
   }
  },
  "briefing": "btc.quick-check",
  "generated_at": "2026-03-17T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prereason-btc-pulse-briefing-8b8def8a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.prereason.com](https://www.zero.xyz/host/api.prereason.com/llms.txt)
