# Get Neuron Latest

Returns the latest neuron metrics, including incentives, stake weight, pruning scores, ranks and immunity status.

_Source: https://beta.taostats.io/docs/api-reference/neuron/get-neuron-latest_

_Last reviewed: 2026-09-18_

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

Requires an API key in the `Authorization` header.

Returns the latest neuron metrics, including incentives, stake weight, pruning scores, ranks and immunity status. Records identify neurons by subnet, UID, hotkey and coldkey.

## Try it

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

### Examples

Get the current state of neurons in subnet 19 (first 50)

```text
https://api.taostats.io/api/neuron/latest/v1?netuid=19&limit=50
```

Look up a specific neuron by UID in subnet 19

```text
https://api.taostats.io/api/neuron/latest/v1?netuid=19&uid=0
```

Rank neurons in subnet 19 by incentive, highest first

```text
https://api.taostats.io/api/neuron/latest/v1?netuid=19&order=incentive_desc&limit=10
```

### Code samples

**cURL**

```bash
curl -H "Authorization: <YOUR_API_KEY>" \
  "https://api.taostats.io/api/neuron/latest/v1?netuid=19&limit=50"
```

**JavaScript**

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

**Python**

```python
import requests

response = requests.get(
    "https://api.taostats.io/api/neuron/latest/v1?netuid=19&limit=50",
    headers={"Authorization": "<YOUR_API_KEY>"},
)
data = response.json()
```

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `netuid` | query | `integer (int32)` |  | Subnet ID |
| `uid` | query | `integer (int32)` |  | Neuron ID |
| `hotkey` | query | `string` |  | SS58 or hex format |
| `coldkey` | query | `string` |  | SS58 or hex format |
| `is_immune` | query | `boolean` |  | Start of block range (inclusive) Is immune |
| `in_danger` | query | `boolean` |  | Is in danger |
| `has_dividends` | query | `boolean` |  | Has dividends |
| `has_incentive` | query | `boolean` |  | Has incentive |
| `page` | query | `integer (int32)` |  |  |
| `limit` | query | `integer (int32)` |  |  |
| `order` | query | `string` |  | One of `netuid_asc`, `netuid_desc`, `uid_asc`, `uid_desc`, `hotkey_asc`, `hotkey_desc`, `coldkey_asc`, `coldkey_desc`, `emission_asc`, `emission_desc`, `dividends_asc`, `dividends_desc`, `incentive_asc`, `incentive_desc`. |

## Responses

### `200` — Neuron retrieved successfully

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `data` | `array` | Yes |  |
| `data[].active` | `boolean` | Yes |  |
| `data[].axon` | `string, nullable` |  |  |
| `data[].block_number` | `integer (int32)` | Yes |  |
| `data[].coldkey` | `object` | Yes |  |
| `data[].coldkey.hex` | `string` | Yes | The hex format of the hot key |
| `data[].coldkey.ss58` | `string` | Yes | The SS58 format of the hot key |
| `data[].consensus` | `string` | Yes |  |
| `data[].dividends` | `string` | Yes |  |
| `data[].emission` | `string` | 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[].in_danger` | `boolean` | Yes |  |
| `data[].incentive` | `string` | Yes |  |
| `data[].is_immune` | `boolean` | Yes |  |
| `data[].mech_incentive` | `array` | Yes |  |
| `data[].mech_incentive[]` | `string` | Yes |  |
| `data[].miner_rank` | `integer (int32), nullable` |  |  |
| `data[].name` | `string, nullable` |  |  |
| `data[].netuid` | `integer (int32)` | Yes |  |
| `data[].pruning_score` | `string` | Yes |  |
| `data[].registration_block` | `integer (int32)` | Yes |  |
| `data[].stake_weight` | `string, nullable` |  |  |
| `data[].timestamp` | `string (date-time)` | Yes |  |
| `data[].trust` | `string` | Yes |  |
| `data[].uid` | `integer (int32)` | Yes |  |
| `data[].validator_permit` | `boolean` | Yes |  |
| `data[].validator_rank` | `integer (int32), nullable` |  |  |
| `data[].validator_trust` | `string` | 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` | Neuron 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).
