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.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
Request body
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
).
Response
The response is an array of delegation objects, each representing an active delegation to a validator:Delegation object structure
Each delegation object in the array contains: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.
Example request
Shell
Example response
Use case
Theinfo
endpoint with type: "delegations"
is essential for applications that need to:
- Display active delegations: Show users their current validator delegations and amounts
- Track delegation amounts: Monitor how much is delegated to each validator
- Check lock periods: Display when delegations will become available for undelegation
- Portfolio overview: Provide a simple view of delegation distribution across validators
- Validator management: List which validators a user has delegated to
- Delegation planning: Help users understand their current delegation commitments
- Lock time monitoring: Track when delegations expire and become withdrawable
delegatorSummary
for comprehensive staking portfolio management on the Hyperliquid network.Body
application/json