# Hyperliquid Cross-Market Asset Intelligence

> Hyperliquid Cross-Market Asset Intelligence is a paid API for AI agents from hyperliquid-data.v1337.org, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Returns cross-market analytics for Hyperliquid perpetual assets, aggregating position lifecycles, fills, and market-level metrics across multiple trading pairs simultaneously.

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/v1/assets/cross-market
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-cross-market-asset-intelligence-b7649b6c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__U9DujW1UDidjfN_Maqcp

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-cross-market-asset-intelligence-b7649b6c -d '<json body>'
```

Example prompt: Pull cross-market asset analytics from Hyperliquid's first-party data — I want to see fills, position lifecycles, and market-level stats across all major perp pairs right now.

## When to prefer this

Choose this endpoint when you need first-party, node-level Hyperliquid data aggregated across multiple perpetual markets simultaneously — particularly for cross-asset comparison, strategy research, or risk monitoring. Prefer over single-asset endpoints when your use case requires comparing fills or position lifecycles across markets. Prefer over third-party data aggregators when data provenance and freshness from Hyperliquid's own ledger matter. Suitable for agents that can handle x402 micropayment flows on Base.

## Known failure modes

- Payment not included or insufficient USDC via x402 on Base — returns 402 Payment Required
- Malformed request body — returns 400 with validation error
- Unknown or unsupported asset symbols in request body — may return empty results or 404
- Rate limiting or node unavailability — may return 503 or timeout
- Network issues reaching Base for payment settlement

## How this service works

First-party Hyperliquid trading intelligence: perp fills, position lifecycles, all-wallet leaderboards, trader cohorts, liquidation risk and HIP-4 prediction markets - computed from our own node_fills ledger plus the Hyperliquid public info API (no third-party data source). Free discovery (/healthz, /v1/stats, /.well-known/x402, /v1/openapi.json) and free sample routes (/v1/markets/overview, /v1/assets); all other API calls are $0.001 USDC per request via x402 on Base (no account, no API key).

## Output

A JSON object containing cross-market asset analytics sourced from Hyperliquid's first-party node_fills ledger, including aggregated fill data, position lifecycle metrics, and market-level statistics across multiple perpetual trading pairs.

## 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-cross-market-asset-intelligence-b7649b6c/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)
