curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "delegations",
"user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"
}
'[
{
"validator": "0xb8f45222a3246a2b0104696a1df26842007c5bc5",
"amount": "100233.20588006",
"lockedUntilTimestamp": 1751468638782
}
]curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "delegations",
"user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"
}
'[
{
"validator": "0xb8f45222a3246a2b0104696a1df26842007c5bc5",
"amount": "100233.20588006",
"lockedUntilTimestamp": 1751468638782
}
]info endpoint with type: "delegations" retrieves a user’s active delegations on the Hyperliquid network. This endpoint provides a simple list of current delegations showing the validator address, delegated amount, and lock expiration timestamp for each delegation.
type (string, required) — The request type. Must be "delegations" to retrieve user’s delegation information.user (string, required) — Address in 42-character hexadecimal format (e.g., 0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036).validator (string) — The validator’s address in 42-character hexadecimal format.amount (string) — The amount of tokens delegated to this validator.lockedUntilTimestamp (number) — Timestamp (in milliseconds) until which the delegation is locked.curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "delegations", "user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
[
{
"validator": "0x5ac99df645f3414876c816caa18b2d234024b487",
"amount": "12060.16529862",
"lockedUntilTimestamp": 1735466781353
},
{
"validator": "0x1234567890abcdef1234567890abcdef12345678",
"amount": "5000.0",
"lockedUntilTimestamp": 1735556781353
}
]
info endpoint with type: "delegations" is essential for applications that need to:
delegatorSummary for comprehensive staking portfolio management on the Hyperliquid network.Was this page helpful?