Skip to content
Alchemy Logo

Delegator history

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

Returns a user's delegation, deposit, and withdrawal history.

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

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects delegatorHistory.
userstringYesMaster or sub-account address.
{
  "type": "delegatorHistory",
  "user": "0x0000000000000000000000000000000000000000"
}

FieldTypeDescription
[]arrayDelegation and undelegation events for the account.
[].timeintegerLedger-event timestamp in milliseconds.
[].hashstringTransaction hash for the delegation action.
[].deltaobjectLedger change whose member identifies the action type.
[].delta.delegateobjectDetails of the delegation or undelegation action.
[].delta.delegate.validatorstringAddress of the validator receiving or losing stake.
[].delta.delegate.amountstringStake amount moved by the action, as a decimal string.
[].delta.delegate.isUndelegatebooleantrue for an undelegation; false for a delegation.

[
  {
    "time": 1735380381353,
    "hash": "0x55492465cb523f90815a041a226ba90147008d4b221a24ae8dc35a0dbede4ea4",
    "delta": {
      "delegate": {
        "validator": "0x5ac99df645f3414876c816caa18b2d234024b487",
        "amount": "10000.0",
        "isUndelegate": false
      }
    }
  }
]
Was this page helpful?