# max-weight-limit (/docs/query/max-weight-limit)

**Category:** Hyperparameters

## Parameters [#parameters]

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

## CLI [#cli]

```bash
btcli query max-weight-limit --netuid <integer> --json
```

## Python [#python]

```python
import bittensor as sub

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