# Hyperliquid Trader Trades Endpoint

> Hyperliquid Trader Trades Endpoint 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 perpetual fill history and trade records for a specific trader address on Hyperliquid, sourced from first-party node_fills ledger data.

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/v1/traders/trades
- 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-trader-trades-endpoint-5786d415
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rCzw8xwD_RRlRjNhDlnfL

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-trades-endpoint-5786d415 -d '<json body>'
```

Example prompt: Pull all the perpetual fill history for Hyperliquid wallet 0xAbC123... and show me the trades they made in the last 7 days, including entry prices, sizes, and realized PnL.

## When to prefer this

Choose this endpoint when you need granular, first-party perpetual fill data for a specific Hyperliquid trader address — especially when you want records sourced directly from on-chain node_fills rather than aggregated third-party APIs. It's ideal for copy-trading research, personal trade auditing, liquidation analysis, and building per-wallet performance dashboards on Hyperliquid. Prefer this over generic on-chain data providers when Hyperliquid-specific fill details (fees, order IDs, perp-specific fields) are required.

## Known failure modes

- Invalid or malformed wallet address returns a 400 or empty result set
- Payment not processed via x402 on Base returns a 402 Payment Required error
- Wallet address with no trade history returns an empty fills array
- Rate limit or upstream Hyperliquid API outage causes 503 or timeout
- Incorrect body shape (missing required fields) returns a schema validation error

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

Returns a list of perpetual fill records for the specified trader, including trade timestamps, asset/market, side (long/short), fill price, quantity, realized PnL, fees, and order IDs — sourced directly from the operator's node_fills ledger without third-party intermediaries.

## 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-trades-endpoint-5786d415/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)
