# multisig (/docs/query/multisig)

**Category:** Accounts & keys

## Parameters [#parameters]

| Parameter      | Type   | Description                                            |
| -------------- | ------ | ------------------------------------------------------ |
| `account_ss58` | string | Multisig account the pending operation belongs to.     |
| `call_hash`    | string | Hash of the multisig call, as 0x-prefixed or bare hex. |

## CLI [#cli]

```bash
btcli query multisig --account <ss58|name> --call-hash <string> --json
```

## Python [#python]

```python
import bittensor as sub

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