Skip to content
Alchemy Logo

Delegations

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

Returns a user's active validator delegations.

Available now. This read is served at the interim endpoint today.

POST /{apiKey}/info

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

FieldTypeDescription
[]arrayCurrent delegation positions for the account.
[].validatorstringAddress of the validator receiving the delegation.
[].amountstringDelegated stake as a decimal string.
[].lockedUntilTimestampintegerDelegation unlock time in milliseconds.

[
  {
    "validator": "0x5ac99df645f3414876c816caa18b2d234024b487",
    "amount": "12060.16529862",
    "lockedUntilTimestamp": 1735466781353
  }
]
Was this page helpful?