# DeepBlueBase Market Mood API

> DeepBlueBase Market Mood API 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 crypto market Fear/Greed index, macro regime detection, and per-asset directional bias signals for BTC, ETH, SOL, and other major assets

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/market-mood
- 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-118d3213
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GmNs_mM-dxMka-V_8koPm

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-118d3213
```

Example prompt: What's the current crypto market mood — are we in fear or greed, what regime is the market in, and what are the directional bias signals for BTC and ETH right now?

## When to prefer this

Use this endpoint when you need a fast, holistic read on crypto market sentiment and directional bias across major assets in a single call. Prefer this over individual asset price endpoints when you need regime context (fear/greed + market phase) alongside technical signals. Ideal for pre-trade checks, portfolio rebalancing triggers, or automated risk-on/risk-off decisions. Choose this over the flagship bundle if you only need mood and bias data without whale flows, macro data, or LLM summaries.

## Known failure modes

- No query parameters available so there is no input validation failure path
- Upstream data source unavailability may return 5xx or stale data
- Payment not included or invalid x402 payment header returns 402 Payment Required
- Rate limit exceeded returns 429
- Endpoint may return truncated asset list if some assets have missing data

## How this service works

Market mood — Fear/Greed index, regime detection, and per-asset directional bias

## Output

Returns a JSON object with: a numeric fear/greed index, a regime label (e.g. risk-off, trending), and per-asset objects for BTC/ETH/SOL/XRP each containing a directional signal (UP/DOWN), technical bias (BEARISH/BULLISH), signal confidence (0-1), current USD price, 24h and 7d percent changes, market cap, 24h volume, trend description, and key support/resistance price levels.

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

## More

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