# delegated (/docs/query/delegated)

Each `stake` is denominated in the subnet's own currency: subnet alpha, or
TAO when netuid is 0.

**Category:** Delegation

## Parameters [#parameters]

| Parameter      | Type   | Description                        |
| -------------- | ------ | ---------------------------------- |
| `coldkey_ss58` | string | Coldkey whose nominations to list. |

## CLI [#cli]

```bash
btcli query delegated --coldkey <ss58|name> --json
```

## Python [#python]

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.read("delegated", coldkey_ss58="5F...")
```
