# DeepBlue Premium Crypto Sentiment Bundle

> DeepBlue Premium Crypto Sentiment Bundle is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Returns sentiment scores, RSI, momentum, regime detection, and fear/greed index for BTC, ETH, SOL, and XRP in a single call

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/crypto-sentiment
- Price: $0.03/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-2555dde0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yZcaNUh7m_S8_zDi-lfd0

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-2555dde0
```

Example prompt: What's the current market sentiment, RSI, momentum direction, and fear/greed index for BTC, ETH, SOL, and XRP — are we in a trending or neutral regime?

## When to prefer this

Use this endpoint when you need a multi-signal, pre-aggregated crypto sentiment snapshot across BTC/ETH/SOL/XRP in a single cheap call ($0.03), especially compared to subscribing to Santiment ($249/mo) or Coinalyze ($29/mo). Best for agents that need a quick market regime read with RSI + fear/greed + momentum combined, rather than building their own indicator pipeline.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required
- Upstream data source unavailable — partial or stale data returned
- Rate limiting if called too frequently
- No query parameters accepted; malformed request returns 400

## How this service works

Premium crypto sentiment bundle — sentiment scores, funding rates, liquidation data, and open interest across BTC/ETH/SOL/XRP

## Output

Returns an array of per-coin objects (BTC, ETH, SOL, XRP) each with RSI, composite_score, label (neutral/bullish/bearish), regime (trending/neutral), momentum value, direction (UP/DOWN), and confidence score. Also returns an overall summary with aggregate composite_score, fear_greed_index (0-100), and fear_greed_label. Includes data source attribution and timestamp.

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

## More

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