# mechanism-emission-split (/docs/query/mechanism-emission-split)

Returns the raw on-chain per-mechanism share values, in mechanism order; an
empty list means no explicit split is set.

**Category:** Subnets

## Parameters [#parameters]

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

## CLI [#cli]

```bash
btcli query mechanism-emission-split --netuid <integer> --json
```

## Python [#python]

```python
import bittensor as sub

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