# 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]

Typed namespace method (autocomplete, signature help):

```python
import bittensor as sub

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

Or dispatch by name, as an agent would:

```python
result = await client.read("hotkey_identities", hotkey_ss58s=[...])
```
