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

**Category:** Subnets

## Parameters [#parameters]

| Parameter | Type    | Description      |
| --------- | ------- | ---------------- |
| `netuid`  | integer | Subnet to query. |

## CLI [#cli]

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

## Python [#python]

Typed namespace method (autocomplete, signature help):

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.subnets.subnet_hyperparameters(netuid=1)
```

Or dispatch by name, as an agent would:

```python
result = await client.read("subnet_hyperparameters", netuid=1)
```
