# subnet-emission-enabled (/docs/query/subnet-emission-enabled)

**Category:** Hyperparameters

## Parameters [#parameters]

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

## CLI [#cli]

```bash
btcli query subnet-emission-enabled --netuid <integer> --json
```

## Python [#python]

Namespace method (autocomplete, signature help):

```python
import bittensor as bt

sub = bt.Subtensor()
result = sub.hyperparameters.subnet_emission_enabled(netuid=1)
```

Or dispatch by name, as an agent would:

```python
result = sub.read("subnet_emission_enabled", netuid=1)
```

Async is the same surface awaited: `async with bt.Subtensor() as client:`.
