> ## 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.

# delegatorRewards | Hyperliquid Info API

> Hyperliquid delegatorRewards: fetch a user’s current HYPE staking position.

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

The Hyperliquid info endpoint with `type: "delegatorRewards"` is used to fetch a user’s current HYPE staking position.

<Tip>
  Estimate your monthly cost for this API using the [Pricing Calculator](/pricing-calculator?endpoint=%2Fapi-reference%2Fhyperliquid-info%2Fdelegator-rewards).
</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 accrued HYPE staking rewards: one entry per accrual, with the timestamp, the source (delegation reward versus validator commission), and the amount.

User-keyed. Use this for tax reports, reward attribution dashboards, and validator P\&L; use [delegatorHistory](https://goldrush.dev/docs/api-reference/hyperliquid/delegator-history) for the underlying delegate / undelegate events and [delegatorSummary](https://goldrush.dev/docs/api-reference/hyperliquid/delegator-summary) for current totals.

## Endpoint

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

## Request

<ParamField body="type" type="string" required>
  Always `"delegatorRewards"`.
</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": "delegatorRewards",
      "user": "0x31ca8395cf837de08b24da3f660e77761dfb974b"
    }'
  ```

  ```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: "delegatorRewards",
      user: "0x31ca8395cf837de08b24da3f660e77761dfb974b",
    }),
  });

  const rewards = 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": "delegatorRewards",
          "user": "0x31ca8395cf837de08b24da3f660e77761dfb974b",
      },
  )

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

## Response

An array of reward entries.

```json theme={null}
[
  {
    "time": 1735689600000,
    "source": "delegation",
    "totalAmount": "1.5234"
  },
  {
    "time": 1735776000000,
    "source": "commission",
    "totalAmount": "0.8791"
  }
]
```

### Field descriptions

<Note>
  `totalAmount` is returned as a **decimal string**, preserving upstream precision. Do not parse it as a float.
</Note>

<ResponseField name="time" type="int">Unix timestamp in milliseconds when the reward accrued.</ResponseField>
<ResponseField name="source" type="string">Reward source. `"delegation"` for rewards earned by delegating to a validator; `"commission"` for commission earned as a validator on others' delegations.</ResponseField>
<ResponseField name="totalAmount" type="string">Reward amount in HYPE.</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="delegatorSummary" href="/api-reference/hyperliquid-info/delegator-summary">get a one-shot snapshot of a user's HYPE staking position for dashboards and portfolio overviews.</Card>
</CardGroup>

*Last reviewed: 2026-06-13*
