# Hyperliquid Recent Trades Feed

> Hyperliquid Recent Trades Feed 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 the most recent perpetual trade fills from Hyperliquid, sourced directly from the operator's own node_fills ledger

## Facts

- Endpoint: POST https://hyperliquid-data.v1337.org/v1/trades/recent
- 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-recent-trades-feed-cea82330
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uPh7ChRocQBQ3pjJhYaid

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-recent-trades-feed-cea82330 -d '<json body>'
```

Example prompt: Pull the most recent perpetual trades that just executed on Hyperliquid — I want to see what's being traded right now, including asset, price, size, and direction.

## When to prefer this

Choose this endpoint when you need raw, first-party perpetual trade fill data directly from Hyperliquid's own node ledger — not aggregated or delayed third-party data. It is ideal for real-time market microstructure analysis, momentum detection, and bot activity monitoring on Hyperliquid perps. Prefer it over generic CEX trade feeds when the user specifically wants Hyperliquid on-chain activity.

## Known failure modes

- Missing or malformed request body returns a 400 error
- Payment not completed or insufficient USDC balance returns a 402 Payment Required
- Upstream Hyperliquid node data temporarily unavailable returns a 503
- Invalid asset/market filter returns empty results or a 422 validation error
- Rate limits or node sync lag may cause stale or delayed fill data

## 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 list of the most recent perpetual trade fills from Hyperliquid's node_fills ledger, including fields such as asset/market symbol, trade direction (buy/sell), execution price, quantity, timestamp, and wallet address of the trader.

## 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-recent-trades-feed-cea82330/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)
