# DripMetrics AI – Hyperliquid Reversal Metric

> DripMetrics AI – Hyperliquid Reversal Metric 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 a price-reversal signal for a given crypto pair on Hyperliquid, decomposing it into momentum and simple-reversal components over a configurable candle window.

## Facts

- Endpoint: POST https://api.dripmetrics.ai/hyperliquid/reversal
- 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-reversal-metric-b998d414
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cC1sbas7zeDIxaghk5bQU

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-reversal-metric-b998d414 -d '<json body>'
```

Example prompt: What's the current reversal signal for BTC on Hyperliquid using a 30-minute window with 1-minute candles — break down the momentum and simple-reversal components for me.

## When to prefer this

Choose this endpoint when you need a structured, pre-computed reversal signal derived from Hyperliquid candle data with momentum decomposition — especially for algo-trading workflows, signal dashboards, or mean-reversion strategies on Hyperliquid perpetuals. Prefer over raw candle feeds when you want the reversal computation done server-side without writing your own indicator logic.

## Known failure modes

- Unsupported pair symbol returns an error or empty result
- Requested window/interval combination unavailable on Hyperliquid
- Hyperliquid candle API upstream timeout or rate limit causes failure
- Payment not fulfilled via x402 results in 402 Payment Required
- Insufficient candle history for the requested window returns reduced sample size or 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 reversal metric value, the pair symbol, the time window and interval used, the data source URL, a decomposition into momentum and simpleReversal sub-components, the computed timestamp, the sample size (number of candles), and the first/last candle timestamps.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pair": "BTC",
  "value": -0.01240445,
  "metric": "reversal",
  "source": {
   "candles": "https://api.hyperliquid.xyz/info"
  },
  "window": "30m",
  "interval": "1m",
  "components": {
   "momentum": 0.01240445,
   "simpleReversal": -0.01248167
  },
  "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-reversal-metric-b998d414/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)
