# Hyperliquid Trader Lifecycle Summary

> Hyperliquid Trader Lifecycle Summary 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-16).

Returns a comprehensive lifecycle summary for a Hyperliquid trader including perp fill history, position open/close events, and trading tenure metrics derived from first-party node fills data.

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/v1/traders/lifecycle-summary
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-trader-lifecycle-summary-9b5e2a2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DCmWE6TFkpMWVbnKeoQ-v

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-trader-lifecycle-summary-9b5e2a2a -d '<json body>'
```

Example prompt: Pull the full trading lifecycle summary for Hyperliquid wallet 0x1234...abcd — I want to see when they first traded, their position history, and overall activity span on the perps market.

## When to prefer this

Use this endpoint when you need a longitudinal, career-spanning profile of a specific Hyperliquid trader — covering when they started, their position open/close history, and fill counts — computed from first-party node_fills data rather than third-party aggregators. Prefer it over generic leaderboard or market endpoints when the goal is understanding a single trader's full activity arc rather than a point-in-time snapshot.

## Known failure modes

- Unknown or inactive wallet address returns empty lifecycle or 404-equivalent response
- Malformed wallet address in request body causes 400 validation error
- Payment not attached or insufficient USDC causes x402 payment required response
- Rate limiting or node data lag may cause delayed or partial fill history
- Wallet with no perp activity returns minimal or empty lifecycle object

## 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 structured JSON object containing the trader's lifecycle on Hyperliquid: first and last activity timestamps, total number of fills, position open/close event timeline, trading tenure duration, and aggregated statistics derived from the node_fills ledger and 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-trader-lifecycle-summary-9b5e2a2a/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)
