# DeepBlue Market Snapshot — BTC/ETH/SOL/XRP All-Coins Summary

> DeepBlue Market Snapshot — BTC/ETH/SOL/XRP All-Coins Summary 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 a single-call snapshot of prices, trading signals, momentum regime, and market sentiment for BTC, ETH, SOL, and XRP simultaneously

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/market-snapshot
- 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-2e148a78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RClcUHio36lsmTQG2PXtO

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-2e148a78
```

Example prompt: Give me a quick snapshot of the current market regime and momentum signals for BTC, ETH, SOL, and XRP — are they trending up or down, and how confident is the model?

## When to prefer this

Use this endpoint when you need a fast, unified snapshot of signals across all four major coins (BTC, ETH, SOL, XRP) in a single call rather than querying each coin individually. Ideal for dashboards, agent decision loops, or portfolio checks where multi-asset regime context matters. Prefer over sibling endpoints when you don't need deep macro data (funding rates, whale flows) and just want directional signals with confidence.

## Known failure modes

- Feed disconnected (feed_connected: false) — signals may be stale or based on cached data
- Payment failure — x402 micropayment of $0.01 USDC must succeed before response is returned
- No queryParams required — malformed requests may return 400
- Rate limiting or server errors may return 5xx if the endpoint is overloaded
- Confidence scores near 0.5 indicate low signal strength and should not be acted on alone

## How this service works

All-coins snapshot in one call — BTC, ETH, SOL, XRP prices, signals, and sentiment

## Output

A JSON object keyed by coin (btc, eth, sol, xrp) each containing: coin ticker, regime label (e.g. 'trending', 'neutral'), directional signal (UP/DOWN), strategy type (e.g. 'momentum'), and a confidence score between 0 and 1. Also includes a top-level market_regime field (e.g. 'risk-on'), a coins list, source attribution, Unix timestamp, and feed_connected boolean.

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

## More

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