Skip to content
Alchemy Logo

Non-funding ledger updates

This API is in private preview. Target October 2026; timing is subject to change.

Returns deposits, transfers, withdrawals, and other non-funding ledger activity over a time range.

Coming with HyperCore. This read is documented but is not yet callable.

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects userNonFundingLedgerUpdates.
userstringYesMaster or sub-account address.
startTimeintegerYesInclusive start time in milliseconds.
endTimeintegerNoInclusive end time in milliseconds; defaults to the current time.
{
  "type": "userNonFundingLedgerUpdates",
  "user": "0x0000000000000000000000000000000000000000",
  "startTime": 1735689600000,
  "endTime": 1735776000000
}

FieldTypeDescription
[]arrayNon-funding ledger events for the requested time range.
[].deltaobjectEvent-specific payload; use type to select its schema.
[].delta.typestringLedger event kind that determines the delta shape.
[].hashstringTransaction hash that recorded the ledger event.
[].timeintegerMillisecond timestamp of the ledger event.

[
  {
    "delta": { "type": "deposit", "usdc": "100.0" },
    "hash": "0xa166e3fa63c25663024b03f2e0da011a00307e4017465df020210d3d432e7cb8",
    "time": 1681222254710
  }
]
Was this page helpful?