# Hyperliquid Market Snapshot

> Hyperliquid Market Snapshot is a paid API for AI agents from enchanted-oyster-554.convex.site, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://enchanted-oyster-554.convex.site/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/hyperliquid-market-snapshot-54b9fc32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LQKvByhr3DxiEQCkJsK7Q

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-market-snapshot-54b9fc32 -d '<json body>'
```

Example prompt: Pull a full market snapshot for BTC on Hyperliquid — include the orderbook and the last 20 hourly candles so I can see the recent price action and current depth.

## When to prefer this

Choose this endpoint when you need a comprehensive, bundled snapshot of a Hyperliquid market in a single call — especially when you need a combination of metadata, open interest, orderbook, and candles together. Prefer it over generic market data APIs when working specifically with Hyperliquid perp or spot markets.

## Known failure modes

- Unknown coin symbol returns an error or empty data
- Invalid interval string causes a schema validation failure
- candleLimit outside 1-100 range is rejected
- startTime/endTime outside valid integer bounds returns an error
- Hyperliquid Info API temporarily unavailable causes upstream failure
- Payment of $0.05 USDC not provided causes 402 rejection

## 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

Returns a bundled JSON object containing market metadata, asset context (including open interest), current orderbook bids/asks, and OHLCV candlestick data for the requested coin on Hyperliquid, all sourced from the public Hyperliquid Info API.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-market-snapshot-54b9fc32/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from enchanted-oyster-554.convex.site](https://www.zero.xyz/host/enchanted-oyster-554.convex.site/llms.txt)
