DH
3 min read·Updated 2026-06-14

Fills

Recent trade executions for a wallet, with realized PnL, fees, and tx hash.

GET/networks/{network}/wallets/{address}/fills

Fills return recent trade executions with price, size, realized PnL, fee, and transaction hash, newest first.

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

addressstringrequired

Wallet address — 0x followed by 40 lowercase hex characters.

Example: 0x1111111111111111111111111111111111111111

Query Params
limitinteger

Maximum number of items to return. Hard cap 500.

Example: 25

Responses

200OK

Recent fill events with realized PnL and fees.

Schema
itemsobject[]

Fill events.

coinstring

Fill asset symbol.

sidestring

Fill side — B or A.

directionstring

Trade direction label, e.g. Close Long.

pricestring

Execution price.

sizestring

Filled size.

closedPnlstring

Realized PnL for the fill.

feestring

Fee charged.

feeTokenstring

Token the fee was paid in.

crossedboolean

Whether the fill crossed the spread.

orderIdstring

Originating order id.

timestring (ISO 8601)

Fill timestamp.

hashstring

Transaction hash.

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/wallets/0x1111111111111111111111111111111111111111/fills?limit=2" \
  -H "X-API-Key: hlsk_your_developer_key"
Response
200 · OK
{
  "items": [
    {
      "coin": "ETH",
      "side": "A",
      "direction": "Close Long",
      "price": "3580.4",
      "size": "12.5",
      "closedPnl": "4200.15",
      "fee": "17.91",
      "feeToken": "USDC",
      "crossed": true,
      "orderId": "912345679",
      "time": "2026-06-12T11:52:00Z",
      "hash": "0xabc123"
    }
  ]
}