# associated-evm-key (/docs/query/associated-evm-key)

**Category:** Neurons & registration

## Parameters [#parameters]

| Parameter | Type    | Description                         |
| --------- | ------- | ----------------------------------- |
| `netuid`  | integer | Subnet the neuron is registered on. |
| `uid`     | integer | UID of the neuron on that subnet.   |

## CLI [#cli]

```bash
btcli query associated-evm-key --netuid <integer> --uid <integer> --json
```

## Python [#python]

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.read("associated_evm_key", netuid=1, uid=1)
```
