# DeepBlueBase BTC Macro Intelligence

> DeepBlueBase BTC Macro Intelligence is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns real-time BTC (and other crypto) macro metrics including funding rates, liquidation cascade risk scores, open interest, and squeeze direction for multiple coins

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/market-intel
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-531bee57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oCPZVtjBSMuTMQd4wgozu

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-531bee57
```

Example prompt: What's the current BTC funding rate, open interest, and liquidation cascade risk level — is the market leaning toward a long squeeze or short squeeze right now?

## When to prefer this

Choose this endpoint when you need a single, low-cost snapshot of BTC and major crypto macro metrics — specifically funding rates, open interest, and liquidation cascade risk — without needing a full premium bundle. Ideal for agents monitoring market conditions, assessing derivatives market sentiment, or deciding whether to flag squeeze risk.

## Known failure modes

- No queryParams required — malformed request body may return 400
- Upstream exchange data unavailable may result in stale or partial coin data
- Rate limiting or payment failure may return 402 or 429
- API may return truncated data if upstream feeds are delayed

## How this service works

BTC macro intelligence — funding rates, liquidation cascade risk, open interest, and orderbook imbalance

## Output

Returns a JSON array of coins (BTC, ETH, SOL, and others) each with: current mark price in USD, 8-hour funding rate, annualized funding rate percentage, total open interest in USD and in coin units, liquidation cascade risk level (low/medium/high), a numeric risk score, a human-readable interpretation of market conditions, and squeeze direction (long_squeeze or short_squeeze).

## 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": {
      "btc_price": {
       "type": "number"
      },
      "funding_rate": {
       "type": "number"
      },
      "liquidation_risk": {
       "type": "string"
      },
      "open_interest_change_pct": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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