# Hyperliquid HIP-3 Mark Price Quality Check

> Hyperliquid HIP-3 Mark Price Quality Check is a paid API for AI agents from cryptopulse.theaslangroupllc.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a trust score, divergence metrics, and risk label for Hyperliquid HIP-3 perpetual market prices to identify mispricing and thin liquidity.

## Facts

- Endpoint: GET https://cryptopulse.theaslangroupllc.com/api/mark-quality
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-hip-3-mark-price-quality-check-7d8850b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OkYWEtnliV3FOv8-Oa5T2

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-hip-3-mark-price-quality-check-7d8850b2
```

Example prompt: Check the mark price quality for the HIP-3 perp market on Hyperliquid — I need to know if the current mark price is trustworthy, what the divergence from the oracle is in bps, and whether it's labeled clean or elevated risk.

## When to prefer this

Use this endpoint when you need to assess the reliability of Hyperliquid HIP-3 perpetual market prices before trading or quoting, especially for markets with deployer-controlled oracles where subtle mispricing may not be caught by validator threshold flags. Prefer over generic price feeds when the question is specifically about mark price trustworthiness or liquidity quality on HIP-3 markets.

## Known failure modes

- Unknown or invalid symbol returns an error or empty result
- HIP-3 market data temporarily unavailable causes a fetch failure
- Payment not processed results in 402 response
- Request without required x402 payment header rejected

## How this service works

Trust score for Hyperliquid HIP-3 perp prices. Answers "can I rely on this mark now", "which HIP-3 markets are mispriced or too thin to trade". Each market runs its own deployer oracle and validators only flag >50% moves, so subtler mispricing slips through. Per market: mark-vs-oracle divergence in bps, open interest, a 0-100 quality score and a clean/watch/elevated/high_risk label weighting divergence by liquidity. Omit symbol to scan the riskiest markets. Deterministic, no LLM.

## Output

Returns per-market data including mark-vs-oracle price divergence in basis points, open interest, a 0-100 quality score, and a categorical risk label (clean, watch, elevated, or high_risk). If no symbol is provided, returns a scan of the riskiest HIP-3 markets across the platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "when scanning: how many riskiest markets (default 15, max 100)"
  },
  "symbol": {
   "type": "string",
   "description": "one symbol (TSLA, SKHX, BTC) — omit to scan the riskiest markets"
  },
  "min_oi_usd": {
   "type": "number",
   "description": "when scanning: ignore markets below this open interest (filters micro noise)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "markets": [
   {
    "symbol": "SKHX",
    "mark_price": 1377.9,
    "oracle_price": 1371.3,
    "quality_label": "clean",
    "quality_score": 87,
    "divergence_bps": 48.2,
    "liquidity_tier": "deep",
    "open_interest_usd": 659000000
   }
  ],
  "deterministic": true,
  "us_equity_session": "extended_hours"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-hip-3-mark-price-quality-check-7d8850b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptopulse.theaslangroupllc.com](https://www.zero.xyz/host/cryptopulse.theaslangroupllc.com/llms.txt)
