# DeepBlue Live BTC/ETH/SOL/XRP 5-Minute Trading Signals

> DeepBlue Live BTC/ETH/SOL/XRP 5-Minute Trading Signals is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.012/call, status down (last checked 2026-09-15).

Returns real-time directional trading signals (UP/DOWN) with confidence scores for BTC, ETH, SOL, and XRP based on momentum indicators over the current 5-minute window

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/signals
- Price: $0.012/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-3cf04aa6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iekEazd2MDHT0qT7wfBAh

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-3cf04aa6
```

Example prompt: Give me the latest 5-minute directional trading signals for BTC, ETH, SOL, and XRP — I want to see which way each coin is trending right now along with the confidence score and momentum indicators like RSI and MACD.

## When to prefer this

Use this endpoint when you need real-time, sub-minute directional trading signals for BTC, ETH, SOL, or XRP — particularly for Polymarket 5-minute prediction market windows or short-term momentum-based trading strategies. Prefer this over the flagship bundle when you only need signal data and want lower per-call cost. Prefer over generic price feeds when you need computed momentum direction rather than raw prices.

## Known failure modes

- No signals available if market data feed is stale or unavailable
- HTTP 402 Payment Required if x402 payment header is missing or insufficient
- Confidence scores near 0.5 indicate low conviction — signal may be unreliable
- Signals reflect only the current 5-minute window and expire quickly

## How this service works

Live BTC/ETH/SOL/XRP 5-min trading signals from DeepBlue autonomous trading bot

## Output

Returns an array of 4 trading signal objects (one per coin: BTC, ETH, SOL, XRP), each containing direction (UP/DOWN), confidence score (0-1), detected market regime (e.g. trending), and a full breakdown of technical indicators including RSI, MACD, ROC, Bollinger Bands, volume ratio, and short-term price momentum. Also includes the signal generation timestamp and the current 5-minute window start time.

## 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": {
      "count": {
       "type": "number"
      },
      "signals": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-3cf04aa6/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)
