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
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Selects delegatorSummary. |
user | string | Yes | Master or sub-account address. |
{
"type": "delegatorSummary",
"user": "0x0000000000000000000000000000000000000000"
}| Field | Type | Description |
|---|---|---|
delegated | string | Total delegated amount. |
undelegated | string | Amount not delegated. |
totalPendingWithdrawal | string | Amount pending withdrawal. |
nPendingWithdrawals | integer | Number of pending withdrawals. |
{
"delegated": "12060.16529862",
"undelegated": "0.0",
"totalPendingWithdrawal": "0.0",
"nPendingWithdrawals": 0
}