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

# Staking Delegations

> User's HYPE staking delegations to validators

## Endpoint

```
GET /v2/user/delegations?address={wallet}
```

## Response

```json theme={null}
[
  {
    "validator": "0x1234...",
    "amount": "5000.0",
    "lockedUntil": null
  }
]
```

Empty array `[]` if the wallet has no active delegations.

| Field         | Type         | Description                                |
| ------------- | ------------ | ------------------------------------------ |
| `validator`   | string       | Validator address receiving the delegation |
| `amount`      | string       | Amount of HYPE delegated                   |
| `lockedUntil` | number\|null | Lock expiry timestamp, `null` if unlocked  |

## Example

```bash theme={null}
curl -H "x-api-key: YOUR_KEY" "https://hyper.polynode.dev/v2/user/delegations?address=0x..."
```
