Skip to content
Alchemy Logo

Delegator summary

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

Returns a user's delegated, undelegated, and pending-withdrawal staking balances.

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

POST /{apiKey}/info

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

FieldTypeDescription
delegatedstringTotal delegated amount.
undelegatedstringAmount not delegated.
totalPendingWithdrawalstringAmount pending withdrawal.
nPendingWithdrawalsintegerNumber of pending withdrawals.

{
  "delegated": "12060.16529862",
  "undelegated": "0.0",
  "totalPendingWithdrawal": "0.0",
  "nPendingWithdrawals": 0
}
Was this page helpful?