userNonFundingLedgerUpdates | Hyperliquid Info API
Info API
userNonFundingLedgerUpdates | Hyperliquid Info API
Hyperliquid userNonFundingLedgerUpdates: fetch a user’s non-funding USDC ledger history (deposits, withdrawals, transfers, vault flows) within a time window.
POST
userNonFundingLedgerUpdates | Hyperliquid Info API
Credit Cost
1 per call
Processing
Realtime
type: "userNonFundingLedgerUpdates" is used to fetch a user’s non-funding USDC ledger history (deposits, withdrawals, transfers, vault flows) within a time window.
- Wire-equal to
POST api.hyperliquid.xyz/infowith{"type": "userNonFundingLedgerUpdates", "user": "..."}. - Funding payments are not included here - use
userFunding.
delta whose type discriminates the event variant - deposits, withdrawals, internal transfers, sub-account transfers, vault flows, liquidations, rewards claims, and similar.
Endpoint
Request
string
required
Always
"userNonFundingLedgerUpdates".string
required
The wallet address (lowercase 0x-prefixed hex).
int
Unix timestamp in milliseconds. Inclusive lower bound for the window.
int
Unix timestamp in milliseconds. Inclusive upper bound. Defaults to current server time when omitted.
Example
Response
An array of ledger event objects. Each entry hastime, hash, and a delta discriminated by delta.type.
Field descriptions
All numeric
delta fields are returned as decimal strings. Do not parse them as floats - keep them as strings or use a fixed-precision decimal type.int
Unix timestamp in milliseconds when the event was applied.
string
L1 transaction hash that produced the event.
object
Event-specific payload. The shape depends on
delta.type. The example above shows a vaultWithdraw; common discriminators include deposit, withdraw, accountClassTransfer, internalTransfer, subAccountTransfer, spotTransfer, vaultDeposit, vaultWithdraw, vaultDistribution, vaultLeaderCommission, liquidation, rewardsClaim, and others. See the Hyperliquid nonFundingLedgerUpdates reference for the full discriminator table.Related endpoints
userFunding
fetch a user’s per-coin funding payment history within a time window for funding-only P&L attribution.
fundingHistory
fetch a coin’s historical funding rates and premiums over a time window for funding analytics and basis…
userFills
fetch a user’s most recent trade fills without specifying a time window.
userFillsByTime
fetch a user’s trade fills within a time window for P&L recaps and tax ledger reconstruction.