# Baby Blue Viper — Risk Regime Market Data Feed

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

Returns the current market risk regime classification using VIX-based signals, indicating whether the market is risk-on or risk-off and the appropriate exposure level.

## Facts

- Endpoint: GET https://api.babyblueviper.com/regime
- Price: $0.018034/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-risk-regime-market-data-feed-f17ec262
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ia6vRsnQdl_T54whHe2HN

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-risk-regime-market-data-feed-f17ec262
```

Example prompt: What's the current market risk regime — is it risk-on or risk-off right now, and what exposure level is recommended based on the VIX signal?

## When to prefer this

Use this endpoint when an autonomous trading agent or risk management bot needs a fast, structured, pre-computed market regime signal based on VIX. Prefer this over raw VIX data feeds when you want an opinionated risk-on/risk-off classification with an exposure scalar already computed. Best suited for agents that need a single authoritative regime verdict rather than building their own volatility signal from scratch.

## Known failure modes

- 402 Payment Required if Bearer token has insufficient balance — fund account via Lightning top-up or USDC
- 401 Unauthorized if Bearer token is missing or invalid
- stale:true in response body if underlying market data feed is delayed or unavailable
- 503 Service Unavailable if the regime computation service is down
- Rate limiting if too many requests are made in a short window

## How this service works

invinoveritas /regime — the daily crypto risk-on/off + exposure-scalar read our own live trading bot acts on, recomputable from the raw inputs we return

## Output

Returns a JSON object with: stale (boolean indicating data freshness), inputs object containing current VIX value and 60-day 75th-percentile VIX threshold, schema version string, integer exposure level, risk_off boolean flag, and a disclaimer. Example: {stale:false, inputs:{vix:15.3, vix_thresh_p75_60d:24.6}, schema:'invinoveritas.regime.v1', exposure:1, risk_off:false}.

## 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": {
  "stale": false,
  "inputs": {
   "vix": 15.3,
   "vix_thresh_p75_60d": 24.6
  },
  "schema": "invinoveritas.regime.v1",
  "exposure": 1,
  "risk_off": false,
  "disclaimer": "Risk-regime market-data feed, not financial advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/baby-blue-viper-risk-regime-market-data-feed-f17ec262/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)
