# Hyperliquid Mark Dislocation Scanner

> Hyperliquid Mark Dislocation Scanner is a paid API for AI agents from hyperliquid-data.v1337.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Detects and returns live mark price dislocations on Hyperliquid perpetuals, identifying assets where mark price diverges significantly from fair or index value

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/services/hyperliquid-data/v1/live/mark-dislocations
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-mark-dislocation-scanner-33d66daa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RuvvsRqSrKXXPYz65foJh

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-mark-dislocation-scanner-33d66daa -d '<json body>'
```

Example prompt: Show me all Hyperliquid perpetual markets right now where the mark price is significantly dislocated from the index price — I want to see which assets have the biggest spreads and how severe the divergence is.

## When to prefer this

Choose this endpoint when you need real-time, first-party detection of mark price anomalies specifically on Hyperliquid perpetuals, computed from an independent node rather than relying on Hyperliquid's own UI or a third-party aggregator. Ideal for trading bots, risk monitors, or liquidation risk dashboards that need to catch dislocations as they happen.

## Known failure modes

- HTTP 402 if free quota is exhausted and no USDC payment provided via x402 protocol
- Malformed or missing body fields returning 400 validation error
- Empty result set if no dislocations exceed the threshold at query time
- Upstream Hyperliquid public info API downtime causing stale or unavailable data
- Network timeout if the live computation takes longer than expected

## How this service works

Operator-neutral Hyperliquid trading intelligence — perp fills, position lifecycles, all-wallet leaderboards, trader cohorts, liquidation risk and prediction markets. Every endpoint is FIRST-PARTY: computed from our own node_fills ledger and the Hyperliquid public info API (no third-party data source). Free quota, then HTTP 402 (x402: pay-per-call in USDC, no account, no key).

## Output

Returns a list of Hyperliquid perpetual markets currently exhibiting mark price dislocations, including the affected asset, current mark price, index price, spread magnitude, and timestamp of detection — computed from the operator's first-party node fills ledger.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "description": "Operator-defined JSON payload. Probe the upstream or consult the operator's /openapi.json for the concrete shape.",
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-mark-dislocation-scanner-33d66daa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hyperliquid-data.v1337.org](https://www.zero.xyz/host/hyperliquid-data.v1337.org/llms.txt)
