# stake-value-for-coldkey (/docs/query/stake-value-for-coldkey)

**Category:** Staking

## Parameters [#parameters]

| Parameter      | Type   | Description                   |
| -------------- | ------ | ----------------------------- |
| `coldkey_ss58` | string | Coldkey whose stake to value. |

## CLI [#cli]

```bash
btcli query stake-value-for-coldkey --coldkey <ss58|name> --json
```

## Python [#python]

```python
import bittensor as sub

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