# Hyperliquid Wallet Trade Fills

> Hyperliquid Wallet Trade Fills is a paid API for AI agents from hl-portfolio.api.klymax402.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns recent trade fills (executions) for a Hyperliquid wallet, including coin, side, size, price, fee, closed PnL, and timestamp.

## Facts

- Endpoint: GET https://hl-portfolio.api.klymax402.com/api/fills
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-wallet-trade-fills-3dbdd7e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pWX7e58_T5T801DInGX39

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-wallet-trade-fills-3dbdd7e7
```

Example prompt: Pull the last 50 trade fills for Hyperliquid wallet 0xABC123... and show me the coin, side, price, fee, and closed PnL for each.

## When to prefer this

Use this endpoint when you need granular trade execution data — specific fills, prices, fees, and closed PnL — for a Hyperliquid wallet. Prefer this over the clearinghouse-state endpoint when you need historical trade records rather than current open positions, and over the funding endpoint when you want executed trades rather than funding payments.

## Known failure modes

- Invalid or malformed wallet address (0x...) returns an error or empty result
- Limit exceeding 100 may be capped or rejected
- Wallet with no trade history returns an empty fills array
- Network or upstream Hyperliquid API unavailability causes timeout or 5xx error

## How this service works

Recent trade fills for a Hyperliquid wallet: coin, side, size, price, fee, closedPnl, timestamp.

## Output

A list of trade fill records for the specified Hyperliquid wallet, each containing: coin symbol, trade side (buy/sell), fill size, execution price, fee paid, closed PnL, and timestamp. Up to 100 fills returned depending on the limit parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Maximum number of fills to return (default: 20, max: 100)"
  },
  "address": {
   "type": "string",
   "description": "Hyperliquid wallet address (0x...) to retrieve trade fills for"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-wallet-trade-fills-3dbdd7e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hl-portfolio.api.klymax402.com](https://www.zero.xyz/host/hl-portfolio.api.klymax402.com/llms.txt)
