# Hyperliquid Daily Traders Analytics

> Hyperliquid Daily Traders Analytics 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-14).

Returns daily trader-level analytics for Hyperliquid perpetuals, including fills, position lifecycles, cohort data, and liquidation risk, computed from first-party node_fills ledger data.

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/v1/traders/daily
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-daily-traders-analytics-7b35a945
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CFs0UA8vv8JTLK-C1zLIg

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-daily-traders-analytics-7b35a945 -d '<json body>'
```

Example prompt: Pull the daily trader analytics from Hyperliquid-data for yesterday — I want to see fill counts, PnL, and liquidation risk broken down by trader cohort for BTC perps.

## When to prefer this

Choose this endpoint when you need first-party, node-level daily trader analytics for Hyperliquid perpetuals — especially cohort breakdowns, liquidation risk, or fill-level detail — without relying on third-party data sources. Prefer it over generic DeFi analytics APIs when Hyperliquid-specific position lifecycle and leaderboard data is required, and when micropayment-per-call pricing ($0.001 USDC via x402) fits the use case better than subscription APIs.

## Known failure modes

- Missing or malformed 'body' payload returns a 400 validation error
- x402 payment not included or rejected results in a 402 Payment Required response
- Requesting a date range with no data returns an empty result set
- Rate limiting or node sync lag may cause stale or incomplete daily aggregates
- Invalid asset or market filter silently returns empty trader list

## 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 per-trader daily statistics derived from Hyperliquid's node_fills ledger: trade counts, fill volumes, realized and unrealized PnL, position lifecycle events, cohort classifications, and liquidation risk indicators, aggregated for the requested day(s) and filters.

## 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-daily-traders-analytics-7b35a945/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)
