# Delegator summary

> HyperCore private-preview documentation.

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

<Callout intent="info">
  This API is in private preview. Target October 2026; timing is subject to change.
</Callout>


# Delegator summary

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


<Note>

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

</Note>

## Request

`POST /{apiKey}/info`

| Parameter | Type   | Required | Description                    |
| --------- | ------ | -------- | ------------------------------ |
| `type`    | string | Yes      | Selects `delegatorSummary`.    |
| `user`    | string | Yes      | Master or sub-account address. |

```json
{
  "type": "delegatorSummary",
  "user": "0x0000000000000000000000000000000000000000"
}
```

## Response fields

| Field                    | Type    | Description                    |
| ------------------------ | ------- | ------------------------------ |
| `delegated`              | string  | Total delegated amount.        |
| `undelegated`            | string  | Amount not delegated.          |
| `totalPendingWithdrawal` | string  | Amount pending withdrawal.     |
| `nPendingWithdrawals`    | integer | Number of pending withdrawals. |

## Response example

```json
{
  "delegated": "12060.16529862",
  "undelegated": "0.0",
  "totalPendingWithdrawal": "0.0",
  "nPendingWithdrawals": 0
}
```