# Hyperliquid Perpetuals Market Data

> Hyperliquid Perpetuals Market Data is a paid API for AI agents from x402.ottoai.services, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Fetches live mark/oracle price, funding rate, open interest, max leverage, and size specs for any tradable Hyperliquid perpetuals asset.

## Facts

- Endpoint: GET https://x402.ottoai.services/hyperliquid-market
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ottoai-services-ad7c748f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wvCwIbEoMzFq2ctPln1pJ

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 x402-ottoai-services-ad7c748f
```

Example prompt: What are the current Hyperliquid perpetuals stats for ETH — including mark price, funding rate, and max leverage?

## When to prefer this

Use this endpoint when you need real-time perpetuals market data specifically from Hyperliquid, including funding rates, open interest, leverage limits, and size specs for a named asset. Prefer this over generic crypto price feeds when you need Hyperliquid-specific derivatives data such as max leverage or isolated margin requirements.

## Known failure modes

- Unknown or unsupported asset ticker returns an error or empty market object
- Missing required 'asset' query parameter results in a 400-level error
- Hyperliquid API downtime may cause stale or unavailable data
- Typos in asset ticker (e.g. 'BTTC' instead of 'BTC') may return no results

## How this service works

Hyperliquid perpetuals market data: live mark/oracle price, funding rate, open interest, max leverage, and size specs for any tradable asset.

## Output

Returns a market data object including the asset symbol, asset ID, asset type, current mark price, oracle price, max leverage, size decimals, whether isolated margin is required, a trading URL, and a human-readable butler recommendation string. Also includes a status field and a powered_by attribution.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "asset": "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",
     "required": [
      "asset"
     ],
     "properties": {
      "asset": {
       "type": "string",
       "description": "Asset ticker (BTC, ETH, SOL, etc.)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "market": {
       "type": "object"
      },
      "status": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ottoai-services-ad7c748f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ottoai.services](https://www.zero.xyz/host/x402.ottoai.services/llms.txt)
