# RC Quantum Data Oracle – BTC Market-State Intel

> RC Quantum Data Oracle – BTC Market-State Intel is a paid API for AI agents from data.rcqsignals.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns hourly Ed25519-signed Bitcoin market intelligence including directional bias, regime classification, key technical levels, and 72-hour large on-chain transfer activity.

## Facts

- Endpoint: GET https://data.rcqsignals.com/v1/fetch/btc-intel
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rc-quantum-data-oracle-btc-market-state-intel-78e33274
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IiMcyrHqIva0XyqTlodn4

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 rc-quantum-data-oracle-btc-market-state-intel-78e33274
```

Example prompt: Pull the latest RC Quantum BTC intel — I want to know whether Bitcoin is bullish or bearish right now, the conviction level, what regime we're in, and if any whales have moved large amounts on-chain in the last 72 hours.

## When to prefer this

Choose this endpoint when you need a single, cryptographically-verifiable snapshot of Bitcoin's current market regime, directional bias, and key technical indicators in one call — especially when data authenticity matters (Ed25519 signature), or when you also want on-chain whale transfer context alongside technicals. Prefer over raw exchange APIs when you need a pre-computed, opinionated market-state summary rather than raw OHLCV data.

## Known failure modes

- 402 Payment Required if x402 USDC payment not provided
- Data staleness indicated by staleness object or source_stale flag on whale transfers if upstream tracker has not written for over 24h
- Possible empty whale_transfers array if no large transfers observed in 72h window
- Signature verification failure if data has been tampered with in transit
- Upstream data unavailability causing degraded or partial response

## How this service works

Hourly Ed25519-signed BTC market-state intel: directional bias with conviction, regime label and score, technical levels (EMA20/50, ATR, RSI, 7D/30D), and 72h large on-chain transfer activity. Data, not advice.

## Output

A JSON object containing: (1) bias object with direction (Bullish/Neutral/Bearish), conviction (Low/Moderate/High), vol_regime, regime_label (Risk-On/Neutral/Risk-Off), regime_score, trend_strength, and summary; (2) levels object with spot_usd, ema20, ema50, atr14, atr_pct, rsi14, rsi_state, ret_7d_pct, ret_30d_pct, vol_24h_usd, ema_spread_pct; (3) whale_transfers object with transfer list (btc, usd, observed_at), transfer_count, total_btc_moved, total_usd_moved, min thresholds, window_hours, and source_stale flag; (4) metadata including as_of timestamp, provenance, staleness, license, disclaimer, and an Ed25519 cryptographic signature for data integrity verification.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "bias": {
       "type": "object",
       "properties": {
        "summary": {
         "type": "string"
        },
        "direction": {
         "enum": [
          "Bullish",
          "Neutral",
          "Bearish"
         ],
         "type": "string"
        },
        "conviction": {
         "enum": [
          "Low",
          "Moderate",
          "High"
         ],
         "type": "string"
        },
        "vol_regime": {
         "type": "string"
        },
        "regime_label": {
         "enum": [
          "Risk-On",
          "Neutral",
          "Risk-Off"
         ],
         "type": "string"
        },
        "regime_score": {
         "type": "number"
        },
        "trend_strength": {
         "type": "string"
        }
       }
      },
      "as_of": {
       "type": "string",
       "format": "date-time"
      },
      "levels": {
       "type": "object",
       "properties": {
        "atr14": {
         "type": "number"
        },
        "ema20": {
         "type": "number"
        },
        "ema50": {
         "type": "number"
        },
        "rsi14": {
         "type": "number"
        },
        "atr_pct": {
         "type": "number"
        },
        "spot_usd": {
         "type": "number"
        },
        "rsi_state": {
         "type": "string"
        },
        "ret_7d_pct": {
         "type": "number"
        },
        "ret_30d_pct": {
         "type": "number"
        },
        "vol_24h_usd": {
         "type": "number"
        },
        "ema_spread_pct": {
         "type": "number"
        }
       }
      },
      "license": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "staleness": {
       "type": "object"
      },
      "disclaimer": {
       "type": "string"
      },
      
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rc-quantum-data-oracle-btc-market-state-intel-78e33274/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.rcqsignals.com](https://www.zero.xyz/host/data.rcqsignals.com/llms.txt)
