# Hypurrclaw Hyperliquid Market Snapshot

> Hypurrclaw Hyperliquid Market Snapshot is a paid API for AI agents from hypurrclaw.xyz, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-14).

Fetches a bundled market snapshot for a Hyperliquid asset, including metadata, open interest, orderbook depth, and OHLCV candles via the public Info API.

## Facts

- Endpoint: POST https://hypurrclaw.xyz/x402/tools/getHyperliquidMarketSnapshot
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hypurrclaw-hyperliquid-market-snapshot-fb025f51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0057TMhhFHi4EUZHfSdBz

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 hypurrclaw-hyperliquid-market-snapshot-fb025f51 -d '<json body>'
```

Example prompt: Pull the full Hyperliquid market snapshot for BTC — include the orderbook and the last 50 hourly candles.

## When to prefer this

Use this endpoint when you need a single bundled call that combines Hyperliquid market metadata, open interest, orderbook state, and candle history for a specific coin — avoiding multiple separate API calls. Prefer it over generic crypto data APIs when the target asset is specifically a Hyperliquid perp or spot market, and you need the combination of order book depth and OHLCV history in one response.

## Known failure modes

- Unknown coin symbol returns an error or empty result
- Invalid interval string causes a validation error
- startTime or endTime out of range returns no candles
- candleLimit outside 1–100 range fails schema validation
- DEX name mismatch returns no data for that perp exchange
- Network or upstream Hyperliquid API unavailability causes a timeout or 5xx error

## How this service works

Read a bundled Hyperliquid market snapshot: metadata, asset context including open interest, orderbook, and candles through the public Info API. Read-only; no wallet, signing, shell, or order placement.

## Output

A bundled JSON object containing Hyperliquid asset metadata, open interest figures, current orderbook bids and asks, and up to 100 OHLCV candle records for the requested coin and time range.

## Example request

```json
{
 "input": {
  "type": "HyperliquidMarketSnapshot",
  "inputSchema": {
   "dex": "Hyperliquid",
   "coin": "BTC",
   "interval": "1h",
   "candleLimit": 50,
   "includeCandles": true,
   "includeOrderbook": true
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "inputSchema"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "dex": {
       "type": "string",
       "maxLength": 32
      },
      "coin": {
       "type": "string",
       "maxLength": 32
      },
      "endTime": {
       "type": "integer",
       "maximum": 9007199254740991,
       "exclusiveMinimum": 0
      },
      "interval": {
       "type": "string",
       "maxLength": 8
      },
      "startTime": {
       "type": "integer",
       "maximum": 9007199254740991,
       "exclusiveMinimum": 0
      },
      "candleLimit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "includeCandles": {
       "type": "boolean"
      },
      "includeOrderbook": {
       "type": "boolean"
      }
     },
     "additionalProperties": true
    },
    "description": {
     "type": "string"
    },
    "inputSchema": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "coin"
     ],
     "properties": {
      "dex": {
       "type": "string",
       "maxLength": 32
      },
      "coin": {
       "type": "string",
       "maxLength": 32
      },
      "endTime": {
       "type": "integer",
       "maximum": 9007199254740991,
       "exclusiveMinimum": 0
      },
      "interval": {
       "type": "string",
       "maxLength": 8
      },
      "startTime": {
       "type": "integer",
       "maximum": 9007199254740991,
       "exclusiveMinimum": 0
      },
      "candleLimit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "includeCandles": {
       "type": "boolean"
      },
      "includeOrderbook": {
       "type": "boolean"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ok",
  "result",
  "toolId"
 ],
 "properties": {
  "ok": {
   "type": "boolean"
  },
  "result": {
   "type": "object",
   "required": [
    "ok",
    "note",
    "error",
    "toolId"
   ],
   "properties": {
    "ok": {
     "type": "boolean"
    },
    "note": {
     "type": "string"
    },
    "error": {
     "type": "string"
    },
    "toolId": {
     "type": "string"
    }
   }
  },
  "toolId": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hypurrclaw-hyperliquid-market-snapshot-fb025f51/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hypurrclaw.xyz](https://www.zero.xyz/host/hypurrclaw.xyz/llms.txt)
