# alpha-price (/docs/query/alpha-price)

**Category:** Prices & swaps

## Parameters [#parameters]

| Parameter | Type    | Description                       |
| --------- | ------- | --------------------------------- |
| `netuid`  | integer | Subnet whose alpha price to read. |

## CLI [#cli]

```bash
btcli query alpha-price --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.prices.alpha_price(netuid=1)
```

Or dispatch by name, as an agent would:

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