Skip to main content
POST
/
info
delegatorSummary
curl --request POST \
  --url https://hypercore.goldrushdata.com/info \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "<string>",
  "user": "<string>"
}
'
{
  "delegated": "<string>",
  "undelegated": "<string>",
  "totalPendingWithdrawal": "<string>",
  "nPendingWithdrawals": 123
}

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.

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.

Endpoint

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

Request

type
string
required
Always "delegatorSummary".
user
string
required
The wallet address (lowercase 0x-prefixed hex).

Example

curl -X POST https://hypercore.goldrushdata.com/info \
  -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "delegatorSummary",
    "user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"
  }'

Response

{
  "delegated": "1500.50",
  "undelegated": "250.00",
  "totalPendingWithdrawal": "100.00",
  "nPendingWithdrawals": 2
}

Field descriptions

delegated, undelegated, and totalPendingWithdrawal are returned as decimal strings. Do not parse them as floats.
delegated
string
HYPE currently delegated to validators.
undelegated
string
HYPE in the staking account but not delegated.
totalPendingWithdrawal
string
Sum of HYPE in any in-flight unstake withdrawals.
nPendingWithdrawals
int
Count of in-flight unstake withdrawals.

Notes

  • Wire-equal to POST api.hyperliquid.xyz/info with {"type": "delegatorSummary", "user": "..."}.
  • For the sequence of delegation events behind these totals, use delegatorHistory.
  • For accrued staking and commission rewards, use delegatorRewards.