# Hyperliquid Trading Intelligence – Demo Trader Endpoint

> Hyperliquid Trading Intelligence – Demo Trader Endpoint is a paid API for AI agents from hyperliquid-data.v1337.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns demo trader data from Hyperliquid including perp fills, position lifecycles, leaderboard rankings, cohort analytics, and liquidation risk metrics computed from first-party node data.

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/services/hyperliquid-data/v1/traders/demo
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-trading-intelligence-demo-trader-endpoint-fc084678
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__o8oFJ8rH5xWuOmUsgupH

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-trading-intelligence-demo-trader-endpoint-fc084678 -d '<json body>'
```

Example prompt: Pull the demo trader profile from the Hyperliquid Trading Intelligence service — I want to see their perp fill history, current position lifecycle, and any liquidation risk signals computed from first-party node data.

## When to prefer this

Choose this endpoint when you need first-party Hyperliquid perpetual trading data — fills, positions, leaderboard rankings, cohort analytics, or liquidation risk — without relying on any third-party data aggregator. Especially useful for agents that need operator-neutral, node-verified on-chain trading intelligence with pay-per-call pricing (no account or API key required).

## Known failure modes

- HTTP 402 if free quota is exhausted and no USDC payment is provided via x402 protocol
- HTTP 400 if the required 'input' object is missing or malformed
- HTTP 404 if the requested trader address does not exist in the ledger
- Empty or minimal response if the demo trader has no fills or positions on record
- Timeout if the Hyperliquid public info API is unresponsive

## How this service works

Operator-neutral Hyperliquid trading intelligence — perp fills, position lifecycles, all-wallet leaderboards, trader cohorts, liquidation risk and prediction markets. Every endpoint is FIRST-PARTY: computed from our own node_fills ledger and the Hyperliquid public info API (no third-party data source). Free quota, then HTTP 402 (x402: pay-per-call in USDC, no account, no key).

## Output

Returns structured JSON containing demo trader data: perpetual fill records, position lifecycle events, leaderboard standing, cohort classification, and liquidation risk metrics — all sourced from the operator's own Hyperliquid node_fills ledger and the Hyperliquid public 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",
    "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-trading-intelligence-demo-trader-endpoint-fc084678/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)
