DH
3 min read·Updated 2026-06-14

Transfers

Account transfer activity — withdrawals and deposits — for a wallet.

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

Transfers return account transfer activity with amount, asset, fee, destination, and hash when available from the upstream source.

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

Transfer history including withdrawals and deposits.

Schema
itemsobject[]

Transfer events.

typestring

Transfer type — withdrawal or deposit.

directionstring

Direction — in or out.

assetstring

Transferred asset.

amountUsdstring

USD value of the transfer.

tokenAmountstring

Token amount transferred.

feestring

Transfer fee.

destinationstringnullable

Destination address for withdrawals.

timestring (ISO 8601)

Transfer timestamp.

hashstringnullable

Transaction hash when available.

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/wallets/0x1111111111111111111111111111111111111111/transfers?limit=2" \
  -H "X-API-Key: hlsk_your_developer_key"
Response
200 · OK
{
  "items": [
    {
      "type": "withdrawal",
      "direction": "out",
      "asset": "USDC",
      "amountUsd": "50000.00",
      "tokenAmount": "50000.00",
      "fee": "1.00",
      "destination": "0x2222222222222222222222222222222222222222",
      "time": "2026-06-12T09:30:00Z",
      "hash": "0xdef456"
    }
  ]
}