# DeepBlueBase Crypto Sentiment Composite

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

Returns technical indicators, market regime detection, and composite sentiment scores for BTC, ETH, SOL, and XRP in a single call

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/sentiment
- Price: $0.01/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-b844b305
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BBG8imhBMjVtHdBc8rOjC

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-b844b305
```

Example prompt: What's the current sentiment and technical regime for BTC, ETH, SOL, and XRP — are they trending up or down, what does the RSI and whale flow look like, and how confident is the signal?

## When to prefer this

Choose this endpoint when you need a multi-asset sentiment composite combining technical indicators (RSI, MACD, Bollinger), regime detection, whale flow, and fear/greed into a single scored output for BTC, ETH, SOL, and XRP simultaneously. Prefer this over single-asset or single-indicator endpoints when you want a holistic, LLM-ready signal without assembling data from multiple sources.

## Known failure modes

- Payment not included or insufficient — returns 402 Payment Required
- Upstream data source unavailable — may return 503 or partial data
- Rate limit exceeded — returns 429 Too Many Requests
- Malformed request — returns 400 if required fields are missing

## How this service works

Crypto sentiment composite: BTC/ETH/SOL/XRP technical indicators, regime detection, and sentiment scores

## Output

Returns an array of per-coin objects (BTC, ETH, SOL, XRP) each containing: RSI, MACD histogram, Bollinger %B, market regime (e.g. trending/ranging), directional bias (UP/DOWN), composite sentiment score and label, confidence score, whale flow score with buy ratio and source, normalized fear/greed and momentum sub-scores, and counts of bullish/bearish/neutral indicators. Also includes an overall market_sentiment summary object.

## 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"
      },
      "market_sentiment": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

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