# Get Hotkey Alpha Shares Latest

Returns the latest Alpha balances and total share counts for hotkeys within subnets.

_Source: https://beta.taostats.io/docs/api-reference/validator/get-hotkey-alpha-shares-latest_

_Last reviewed: 2026-09-18_

```http
GET https://api.taostats.io/api/dtao/hotkey_alpha_shares/latest/v1
```

Requires an API key in the `Authorization` header.

Returns the latest Alpha balances and total share counts for hotkeys within subnets. Filter by hotkey and netuid to inspect a validator's share pool.

## Try it

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

### Examples

Get a validator hotkey's current alpha shares per subnet

```text
https://api.taostats.io/api/dtao/hotkey_alpha_shares/latest/v1?hotkey=5GKH9FPPnWSUoeeTJp19wVtd84XqFW4pyK2ijV2GsFbhTrP1
```

List the largest hotkey alpha-share holders in subnet 19

```text
https://api.taostats.io/api/dtao/hotkey_alpha_shares/latest/v1?netuid=19&order=alpha_desc&limit=10
```

### Code samples

**cURL**

```bash
curl -H "Authorization: <YOUR_API_KEY>" \
  "https://api.taostats.io/api/dtao/hotkey_alpha_shares/latest/v1?hotkey=5GKH9FPPnWSUoeeTJp19wVtd84XqFW4pyK2ijV2GsFbhTrP1"
```

**JavaScript**

```js
const response = await fetch('https://api.taostats.io/api/dtao/hotkey_alpha_shares/latest/v1?hotkey=5GKH9FPPnWSUoeeTJp19wVtd84XqFW4pyK2ijV2GsFbhTrP1', {
  headers: {
    Authorization: '<YOUR_API_KEY>',
  },
});
const data = await response.json();
```

**Python**

```python
import requests

response = requests.get(
    "https://api.taostats.io/api/dtao/hotkey_alpha_shares/latest/v1?hotkey=5GKH9FPPnWSUoeeTJp19wVtd84XqFW4pyK2ijV2GsFbhTrP1",
    headers={"Authorization": "<YOUR_API_KEY>"},
)
data = response.json()
```

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `alpha_min` | query | `string` |  |  |
| `alpha_max` | query | `string` |  |  |
| `hotkey` | query | `string` |  |  |
| `netuid` | query | `integer (int32)` |  |  |
| `page` | query | `integer (int32)` |  |  |
| `limit` | query | `integer (int32)` |  |  |
| `order` | query | `string` |  | One of `netuid_asc`, `netuid_desc`, `shares_asc`, `shares_desc`, `alpha_asc`, `alpha_desc`. |

## Responses

### `200` — Dtao hotkey alpha shares retrieved successfully

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `data` | `array` | Yes |  |
| `data[].alpha` | `string` | Yes |  |
| `data[].block_number` | `integer (int32)` | Yes |  |
| `data[].hotkey` | `object` | Yes |  |
| `data[].hotkey.hex` | `string` | Yes | The hex format of the hot key |
| `data[].hotkey.ss58` | `string` | Yes | The SS58 format of the hot key |
| `data[].netuid` | `integer (int32)` | Yes |  |
| `data[].shares` | `BigDecimal` | Yes |  |
| `data[].timestamp` | `string (date-time)` | 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 |  |

### Other responses

| Status | Meaning |
| --- | --- |
| `400` | Bad request |
| `404` | Dtao hotkey alpha shares 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).
