# DripMetrics AI Hyperliquid Downside Semivolatility

> DripMetrics AI Hyperliquid Downside Semivolatility is a paid API for AI agents from api.dripmetrics.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Computes downside semivolatility for a crypto pair on Hyperliquid using recent candle data over a specified window and interval

## Facts

- Endpoint: POST https://api.dripmetrics.ai/hyperliquid/downside-semivolatility
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dripmetrics-ai-hyperliquid-downside-semivolatility-8fc46d2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TnWzBF6-ZOYm0I30lTqww

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 dripmetrics-ai-hyperliquid-downside-semivolatility-8fc46d2a -d '<json body>'
```

Example prompt: What's the current downside semivolatility for BTC on Hyperliquid using a 30-minute window with 1-minute candles?

## When to prefer this

Choose this endpoint when you need a precise, real-time downside semivolatility metric sourced directly from Hyperliquid candle data — particularly useful for risk management workflows, pre-trade analysis, or volatility dashboards focused on negative return distributions. Prefer this over generic volatility endpoints when you specifically need downside (negative-return) deviation rather than full symmetric volatility.

## Known failure modes

- Unsupported trading pair returns an error or empty result
- Invalid window or interval combination produces no candle data
- Hyperliquid API unavailable causes upstream fetch failure
- Insufficient candle data for the requested window results in low sample size or error
- Malformed request body (missing pair or window fields) returns a 400-level error

## How this service works

DripMetricsAI (https://dripmetrics.ai/) provides on-demand crypto market microstructure metrics, Hyperliquid candle metrics, Polymarket diagnostics, and on-chain DefiLlama metrics for agents, dashboards, and trading workflows.

## Output

Returns a JSON object containing the computed downside semivolatility value (as a float), the trading pair, window and interval settings, number of total and downside intervals, first and last candle timestamps, candle count, and the time the metric was computed — all sourced from Hyperliquid candle data.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pair": "BTC",
  "value": 0.00278144,
  "metric": "downside-semivolatility",
  "source": {
   "candles": "https://api.hyperliquid.xyz/info"
  },
  "window": "30m",
  "interval": "1m",
  "components": {
   "intervals": 29,
   "downsideIntervals": 11
  },
  "computedAt": "2026-05-29T16:00:00.000Z",
  "sampleSize": {
   "candles": 30
  },
  "lastCandleTime": "2026-05-29T15:59:59.999Z",
  "firstCandleTime": "2026-05-29T15:30:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dripmetrics-ai-hyperliquid-downside-semivolatility-8fc46d2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.dripmetrics.ai](https://www.zero.xyz/host/api.dripmetrics.ai/llms.txt)
