# Bitcoin Market Regime Intelligence Digest

> Bitcoin Market Regime Intelligence Digest is a paid API for AI agents from obol-x402.fly.dev, paid per call via x402, $0.1/call, status down (last checked 2026-09-16).

Returns a synthesized Bitcoin market regime classification (calm/active-stress/mixed) derived from cross-exchange spot prices, fee/congestion trends, and block anomaly state, with a plain-language decision read.

## Facts

- Endpoint: GET https://obol-x402.fly.dev/v1/btc/market
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitcoin-market-regime-intelligence-digest-242561b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tF1RG8g6Nx_VE2LJURKrq

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-market-regime-intelligence-digest-242561b2
```

Example prompt: What's the current Bitcoin market regime right now — is it calm, active-stress, or mixed — and what's the plain-English decision read I should act on?

## When to prefer this

Use this endpoint when you need a single synthesized Bitcoin market regime signal that aggregates multiple on-chain and market signals (fee congestion, cross-exchange price divergence, block anomalies) into one actionable classification. Prefer this over raw price feeds or individual signal endpoints when your agent needs a high-level macro regime label (calm/active-stress/mixed) for trade decision logic or portfolio positioning, rather than granular raw data.

## Known failure modes

- Upstream exchange data unavailable — regime classification may be degraded or return partial signals
- Payment not processed (x402 payment required, $0.10 USDC) — returns 402 Payment Required
- Blockchain data unavailable for block anomaly validation — anomaly state may be indeterminate
- Rate limiting or service overload on fly.dev — returns 5xx error

## How this service works

Returns a signed BTC market-state snapshot including spot price, fee regime, and anomaly status. Intended for agentic systems that need a compact, verifiable Bitcoin signal.

## Output

Returns a structured JSON object containing the synthesized Bitcoin market regime label (calm/active-stress/mixed), supporting signals from cross-exchange spot price integrity, fee/congestion regime and trend, and validation-gated block anomaly state, plus a plain-language decision recommendation suitable for trading or portfolio agents.

## 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/bitcoin-market-regime-intelligence-digest-242561b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obol-x402.fly.dev](https://www.zero.xyz/host/obol-x402.fly.dev/llms.txt)
