# stakingValidatorStakers

### Overview

Returns the list of all delegators for a specific validator, sorted by delegation amount descending. Includes the validator's metadata and the snapshot timestamp.

### Request

* **Endpoint**: `POST /info`

```json
{
  "type": "stakingValidatorStakers",
  "validator": "0x000000000056f99d36b6f2e0c51fd41496bbacb8"
}
```

| Parameter   | Type   | Required | Description                          |
| ----------- | ------ | -------- | ------------------------------------ |
| `validator` | string | Yes      | Validator address (case-insensitive) |

### Response

```json
{
  "timestamp_ms": 1776010486341,
  "address": "0x000000000056f99d36b6f2e0c51fd41496bbacb8",
  "name": "ValiDAO",
  "description": "The People's Validator...",
  "commission_bps": 400,
  "total_delegated": "10057.57964234",
  "effective_stake": "10057.57964234",
  "staker_count": 1234,
  "is_jailed": false,
  "stakers": [
    {
      "address": "0xabc123...",
      "amount": "5000.12345678"
    }
  ]
}
```

### Response Fields

Includes all fields from `stakingOverview` validator objects, plus:

| Field               | Type   | Description                                     |
| ------------------- | ------ | ----------------------------------------------- |
| `stakers`           | array  | List of delegators, sorted by amount descending |
| `stakers[].address` | string | Delegator wallet address                        |
| `stakers[].amount`  | string | Delegated HYPE amount (decimal string)          |

### Errors

| Status | Condition                                             |
| ------ | ----------------------------------------------------- |
| 400    | Missing `validator` field                             |
| 404    | Validator not found or staking snapshot not available |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hydromancer.xyz/readme/rest-api/staking/stakingvalidatorstakers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
