# hotkey-identities (/docs/query/hotkey-identities)

**Category:** Identity & commitments

## Parameters [#parameters]

| Parameter      | Type  | Description                        |
| -------------- | ----- | ---------------------------------- |
| `hotkey_ss58s` | array | Hotkeys to resolve identities for. |

## CLI [#cli]

```bash
btcli query hotkey-identities --hotkey-ss58s <array> --json
```

## Python [#python]

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.read("hotkey_identities", hotkey_ss58s=[...])
```
