# Baby Blue Viper — Crypto Derivatives Market Signals Feed

> Baby Blue Viper — Crypto Derivatives Market Signals Feed is a paid API for AI agents from api.babyblueviper.com, paid per call via x402, $0.024045/call, status unknown (last checked 2026-09-14).

Returns full derivatives market signals for cryptocurrencies including regime classification, funding rates, open interest, realized volatility, and BTC DVOL from Hyperliquid.

## Facts

- Endpoint: GET https://api.babyblueviper.com/signals/full
- Price: $0.024045/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/baby-blue-viper-crypto-derivatives-market-signals-feed-cf86233d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__qkkqZEVIls_m8ue6Yish

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 baby-blue-viper-crypto-derivatives-market-signals-feed-cf86233d
```

Example prompt: Pull the full derivatives signals from Baby Blue Viper right now — I want to see the current market regime, funding rate, open interest, realized vol, and BTC DVOL for Hyperliquid.

## When to prefer this

Use this endpoint when you need a real-time, structured snapshot of crypto derivatives market conditions from Hyperliquid — specifically regime classification, funding dynamics, open interest, and volatility metrics — in a single paid API call. Prefer this over raw exchange APIs when you want pre-processed signals with regime labeling and DVOL already included.

## Known failure modes

- Payment required (402) if no valid Bearer token or L402 payment is provided
- Stale data flag (btc_dvol.stale=true) if upstream Hyperliquid data is delayed
- Empty signals array if no coin data is available
- Authentication failure if Bearer token is invalid or exhausted
- Network timeout if Hyperliquid upstream is unavailable

## How this service works

invinoveritas /signals/full — the live Hyperliquid perps read our own bot enters on, recomputable per coin from the raw metrics we return (funding + 24h delta,

## Output

A JSON object containing: venue (e.g. 'hyperliquid'), schema version, an array of signals per coin with fields including regime classification (e.g. 'compression'), basis_bps, funding_delta_24h, open_interest_usd, funding_rate_hourly, vol_expansion_ratio, realized_vol_15m_pct, plus a btc_dvol object with current DVOL and staleness flag, and a disclaimer.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "venue": "hyperliquid",
  "schema": "invinoveritas.signals.v1",
  "teaser": false,
  "signals": [
   {
    "coin": "BTC",
    "regime": "compression",
    "basis_bps": -1.96,
    "funding_delta_24h": 3.5e-7,
    "open_interest_usd": 2230270432,
    "funding_rate_hourly": 0.0000125,
    "vol_expansion_ratio": 0.77,
    "realized_vol_15m_pct": 0.16
   }
  ],
  "btc_dvol": {
   "dvol": 37.16,
   "stale": false
  },
  "disclaimer": "Derivatives market-data feed, not financial advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/baby-blue-viper-crypto-derivatives-market-signals-feed-cf86233d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.babyblueviper.com](https://www.zero.xyz/host/api.babyblueviper.com/llms.txt)
