# Hyperliquid Cohort Tier Trades

> Hyperliquid Cohort Tier Trades 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 trade/fill records for wallets within a specific trader cohort tier on Hyperliquid perpetuals markets

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/services/hyperliquid-data/v1/cohorts/tier/trades
- 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-cohort-tier-trades-4fe9a92c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KS3_DD1kRCg-EFoxige1I

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-cohort-tier-trades-4fe9a92c -d '<json body>'
```

Example prompt: Pull all the trade fills for the top-tier cohort of traders on Hyperliquid perps — I want to see what the elite cohort has been executing recently.

## When to prefer this

Use this endpoint when you need to analyze or retrieve trade fills segmented by trader cohort tier on Hyperliquid — particularly when you want to study behavior patterns of a specific trader class (e.g. whales, retail, mid-tier) rather than a single wallet or the full leaderboard. Prefer this over single-wallet fill endpoints when doing cohort-level research or building strategies based on group behavior.

## Known failure modes

- Invalid or missing cohort tier parameter returns 400 Bad Request
- Unrecognized tier value returns empty result set or 422
- Payment not completed returns HTTP 402 with x402 payment challenge
- Upstream Hyperliquid node data temporarily unavailable returns 503
- Malformed JSON body returns 400 with schema validation error
- Rate limit exceeded before payment returns 429

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

A list of perpetual trade fill records (executions) belonging to wallets classified under the specified cohort tier, sourced directly from the operator's node_fills ledger. Includes fill-level details such as asset, side, price, size, and timestamp for each trade within that trader segment.

## 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-cohort-tier-trades-4fe9a92c/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)
