# subnet-identity (/docs/query/subnet-identity)

**Category:** Subnets

## Parameters [#parameters]

| Parameter | Type    | Description                    |
| --------- | ------- | ------------------------------ |
| `netuid`  | integer | Subnet whose identity to read. |

## CLI [#cli]

```bash
btcli query subnet-identity --netuid <integer> --json
```

## Python [#python]

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.read("subnet_identity", netuid=1)
```
