# root-claim-type (/docs/query/root-claim-type)

**Category:** Staking

## Parameters [#parameters]

| Parameter      | Type   | Description                               |
| -------------- | ------ | ----------------------------------------- |
| `coldkey_ss58` | string | Coldkey whose root-claim setting to read. |

## CLI [#cli]

```bash
btcli query root-claim-type --coldkey <ss58|name> --json
```

## Python [#python]

```python
import bittensor as sub

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