# Get Validators In A Subnet

Lists active validators available on subnets, with their addresses, names and hotkey Alpha amounts.

_Source: https://beta.taostats.io/docs/api-reference/validator/get-validator-available_

_Last reviewed: 2026-09-18_

```http
GET https://api.taostats.io/api/dtao/validator/available/v1
```

Requires an API key in the `Authorization` header.

Lists active validators available on subnets, with their addresses, names and hotkey Alpha amounts. Filter by netuid to find validators for one subnet.

## Try it

Try this request in the browser on the HTML version of this page, or use the code samples below.

### Examples

List all validators available to stake to in subnet 19

```text
https://api.taostats.io/api/dtao/validator/available/v1?netuid=19
```

### Code samples

**cURL**

```bash
curl -H "Authorization: <YOUR_API_KEY>" \
  "https://api.taostats.io/api/dtao/validator/available/v1?netuid=19"
```

**JavaScript**

```js
const response = await fetch('https://api.taostats.io/api/dtao/validator/available/v1?netuid=19', {
  headers: {
    Authorization: '<YOUR_API_KEY>',
  },
});
const data = await response.json();
```

**Python**

```python
import requests

response = requests.get(
    "https://api.taostats.io/api/dtao/validator/available/v1?netuid=19",
    headers={"Authorization": "<YOUR_API_KEY>"},
)
data = response.json()
```

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `netuid` | query | `integer (int32)` |  | Subnet |

## Responses

### `200` — Validators retrieved successfully

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `data` | `array` | Yes |  |
| `data[].address` | `object` | Yes |  |
| `data[].address.hex` | `string` | Yes | The hex format of the hot key |
| `data[].address.ss58` | `string` | Yes | The SS58 format of the hot key |
| `data[].hotkey_alpha` | `string` | Yes |  |
| `data[].name` | `string, nullable` |  |  |
| `data[].netuid` | `integer (int32)` | Yes |  |
| `pagination` | `object` | Yes |  |
| `pagination.current_page` | `integer (int32)` | Yes |  |
| `pagination.next_page` | `integer (int32), nullable` |  |  |
| `pagination.per_page` | `integer (int32)` | Yes |  |
| `pagination.prev_page` | `integer (int32), nullable` |  |  |
| `pagination.total_items` | `integer (int32)` | Yes |  |
| `pagination.total_pages` | `integer (int32)` | Yes |  |

**Example response**

```json
{
  "data": [
    {
      "address": {
        "hex": "0x84d83d08ca89f8e60424ffa286f165c16dd8752e4faa4d8977221e6720678d28",
        "ss58": "5F4tQyWrhfGVcNhoqeiNsR6KjD4wMZ2kfhLj4oHYuyHbZAc3"
      },
      "hotkey_alpha": "28193611901088",
      "name": "Openτensor Foundaτion",
      "netuid": 1
    },
    {
      "address": {
        "hex": "0xbc0e6b701243978c1fe73d721c7b157943a713fca9f3c88cad7a9f7799bc6b26",
        "ss58": "5GKH9FPPnWSUoeeTJp19wVtd84XqFW4pyK2ijV2GsFbhTrP1"
      },
      "hotkey_alpha": "25049438117652",
      "name": "Taostats & Corcel",
      "netuid": 1
    }
  ],
  "pagination": {
    "current_page": 1,
    "next_page": null,
    "per_page": 39,
    "prev_page": null,
    "total_items": 39,
    "total_pages": 1
  }
}
```

**Response details**

```text
    {
      "address": {
        "ss58": "5FFM6Nvvm78GqyMratgXXvjbqZPi7SHgSQ81nyS96jBuUWgt",
        "hex": "0x8cd280d43e4cf6501ae3b425583975ff63ce4d7470cf518074b5903ff375600e"
      },
      "name": "PRvalidator",
      "netuid": 75,
      "hotkey_alpha": "30008447885" as rao
    },
```

### Other responses

| Status | Meaning |
| --- | --- |
| `400` | Bad request |
| `404` | Validators not found |
| `500` | Internal server error |

Every request needs an `Authorization` header holding your API key — see [Getting started with the Taostats API](https://beta.taostats.io/docs/start-here/getting-started-with-taostats-api).
