# DeepBlueBase BTC Realtime Directional Signal

> DeepBlueBase BTC Realtime Directional Signal is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns a live UP/DOWN directional prediction for Bitcoin with confidence score, market regime, and supporting technical indicators

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/btc/realtime-signal
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-26163552
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YEMWrAjwTXRgWgNtkYmVl

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 api-deepbluebase-xyz-26163552
```

Example prompt: What's the current real-time directional signal for Bitcoin — should I expect it to go up or down, and how confident is the model? Include the market regime and any key indicator readings.

## When to prefer this

Use this endpoint when you need a fast, single-call real-time Bitcoin directional signal with full technical indicator context. Prefer this over the premium bundle endpoints when you only need BTC momentum/direction and want to minimize cost per call at $0.005. Choose this over generic price feeds when you need an interpreted signal (UP/DOWN) with confidence rather than raw price data.

## Known failure modes

- Payment required (402) if x402 micropayment header is missing or insufficient
- Feed disconnected (feed_connected: false) may indicate stale or incomplete signal data
- Low confidence score (~0.5) indicates no strong directional conviction in current market conditions
- Rate limiting if too many requests are made in a short period
- Service unavailable if underlying data feed is down

## How this service works

Live BTC directional signal — real-time UP/DOWN prediction with confidence score and regime

## Output

Returns a JSON object containing: BTC current price, predicted direction (UP or DOWN), confidence score (0-1), market regime label (e.g. neutral/bullish/bearish), regime strength, signal source and strategy, and a detailed breakdown of technical indicators including RSI, MACD (histogram + acceleration), Bollinger Bands (%B), Rate of Change (ROC), short-term price momentum, and volume confirmation status.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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": {
      "coin": {
       "type": "string"
      },
      "regime": {
       "type": "string"
      },
      "direction": {
       "type": "string"
      },
      "confidence": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-26163552/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepbluebase.xyz](https://www.zero.xyz/host/api.deepbluebase.xyz/llms.txt)
