> ## Documentation Index
> Fetch the complete documentation index at: https://goldrush.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# delegatorSummary | Hyperliquid Info API

> Hyperliquid delegatorSummary: get a one-shot snapshot of a user's HYPE staking position for dashboards and portfolio overviews.

<CardGroup cols={2}>
  <Card title="Credit Cost"> 1 per call</Card>
  <Card title="Processing"> Realtime</Card>
</CardGroup>

The Hyperliquid info endpoint with `type: "delegatorSummary"` is used to get a one-shot snapshot of a user's HYPE staking position for dashboards and portfolio overviews.

<Tip>
  Estimate your monthly cost for this API using the [Pricing Calculator](/pricing-calculator?endpoint=%2Fapi-reference%2Fhyperliquid-info%2Fdelegator-summary).
</Tip>

<Info>
  * Wire-equal to `POST api.hyperliquid.xyz/info` with `{"type": "delegatorSummary", "user": "..."}`.
  * For the sequence of delegation events behind these totals, use <a href="https://goldrush.dev/docs/api-reference/hyperliquid/delegator-history" target="_blank" rel="noopener noreferrer">`delegatorHistory`</a>.
  * For accrued staking and commission rewards, use <a href="https://goldrush.dev/docs/api-reference/hyperliquid/delegator-rewards" target="_blank" rel="noopener noreferrer">`delegatorRewards`</a>.
</Info>

Returns a single user’s HYPE staking summary: the amount currently delegated, the amount sitting undelegated in the staking account, the total of any pending withdrawals, and how many such withdrawals are pending.

User-keyed. Use this for a one-shot snapshot; for the underlying sequence of delegate / undelegate / deposit / withdrawal events, use [delegatorHistory](https://goldrush.dev/docs/api-reference/hyperliquid/delegator-history).

## Endpoint

```
POST https://hypercore.goldrushdata.com/info
Authorization: Bearer <GOLDRUSH_API_KEY>
Content-Type: application/json
```

## Request

<ParamField body="type" type="string" required>
  Always `"delegatorSummary"`.
</ParamField>

<ParamField body="user" type="string" required>
  The wallet address (lowercase 0x-prefixed hex).
</ParamField>

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://hypercore.goldrushdata.com/info \
    -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "type": "delegatorSummary",
      "user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"
    }'
  ```

  ```typescript TypeScript theme={null}
  const response = await fetch("https://hypercore.goldrushdata.com/info", {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.GOLDRUSH_API_KEY}`,
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      type: "delegatorSummary",
      user: "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036",
    }),
  });

  const summary = await response.json();
  ```

  ```python Python theme={null}
  import os, requests

  response = requests.post(
      "https://hypercore.goldrushdata.com/info",
      headers={"Authorization": f"Bearer {os.environ['GOLDRUSH_API_KEY']}"},
      json={
          "type": "delegatorSummary",
          "user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036",
      },
  )

  summary = response.json()
  ```
</CodeGroup>

## Response

```json theme={null}
{
  "delegated": "1500.50",
  "undelegated": "250.00",
  "totalPendingWithdrawal": "100.00",
  "nPendingWithdrawals": 2
}
```

### Field descriptions

<Note>
  `delegated`, `undelegated`, and `totalPendingWithdrawal` are returned as **decimal strings**. Do not parse them as floats.
</Note>

<ResponseField name="delegated" type="string">HYPE currently delegated to validators.</ResponseField>
<ResponseField name="undelegated" type="string">HYPE in the staking account but not delegated.</ResponseField>
<ResponseField name="totalPendingWithdrawal" type="string">Sum of HYPE in any in-flight unstake withdrawals.</ResponseField>
<ResponseField name="nPendingWithdrawals" type="int">Count of in-flight unstake withdrawals.</ResponseField>

## Related endpoints

<CardGroup cols={2}>
  <Card title="delegatorHistory" href="/api-reference/hyperliquid-info/delegator-history">reconstruct the sequence of HYPE staking events behind the totals shown in delegatorSummary.</Card>
  <Card title="delegatorRewards" href="/api-reference/hyperliquid-info/delegator-rewards">fetch a user’s current HYPE staking position.</Card>
</CardGroup>

*Last reviewed: 2026-06-13*
