# Hyperliquid Liquidation Risk Index

> Hyperliquid Liquidation Risk Index is a paid API for AI agents from hlrisk.paidapis.net, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a real-time liquidation risk index for Hyperliquid BTC/ETH perpetual futures, including notional at risk across price move scenarios, the position closest to liquidation, the largest tracked position, and current funding rate.

## Facts

- Endpoint: GET https://hlrisk.paidapis.net/api/hl-liquidation-risk
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-liquidation-risk-index-1504f282
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vRdtPE47hrVNVHMOBjJY5

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 hyperliquid-liquidation-risk-index-1504f282
```

Example prompt: What's the current liquidation risk on Hyperliquid for BTC and ETH perpetual futures — how much notional is at risk if prices move 1%, 3%, or 5%, which position is closest to liquidation, and what's the current funding rate?

## When to prefer this

Choose this endpoint when you need a concise, pre-computed liquidation risk summary for Hyperliquid BTC/ETH perpetual futures — specifically the notional-at-risk across standard price move buckets, the at-risk position closest to liquidation, and the current funding rate. Prefer this over building your own analytics pipeline on raw Hyperliquid data when you want a fast, pay-per-call snapshot for risk monitoring, alerting, or dashboard applications.

## Known failure modes

- Payment not received or x402 payment flow fails — endpoint returns 402 Payment Required
- Hyperliquid data feed temporarily unavailable — may return 503 or stale data
- Rate limiting if too many requests in short succession
- No positions currently tracked — index values may be zero or null

## How this service works

Hyperliquid BTC/ETH perpetual futures liquidation risk index: notional at risk if leveraged price moves ±1%/3%/5%, position closest to liquidation, biggest tracked position, funding rate

## Output

Returns a structured risk index including: total notional at risk if BTC/ETH prices move ±1%, ±3%, and ±5%; details on the position currently closest to its liquidation price; the largest position being tracked on the platform; and the current perpetual futures funding rate for BTC and ETH.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-liquidation-risk-index-1504f282/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hlrisk.paidapis.net](https://www.zero.xyz/host/hlrisk.paidapis.net/llms.txt)
