# weights-rate-limit (/docs/query/weights-rate-limit)

**Category:** Hyperparameters

## Parameters [#parameters]

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

## CLI [#cli]

```bash
btcli query weights-rate-limit --netuid <integer> --json
```

## Python [#python]

```python
import bittensor as sub

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