Lists active delegated keys and their parameters.
## Request Structure
`JSON object:`
```JSON
{
"method": "srv_stake",
"subcommand": ["list","keys"],
"arguments": {
"net": "network_name",
"cert | pkey": "cert_name | pkey_hash"
},
"id": "1"
}
```
`Parameters:`
**`net (network_name)`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]]
**`cert | pkey`** - name of the delegated certificate | hash of the public key `optional`
### Curl Example
With public key hash:
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "srv_stake",
"subcommand": ["list","keys"],
"arguments": {
"net": "riemann",
"pkey": "0xD719E3DE39D92998B7CFE7092AA16B53B619B6B093DA9D36B676402CE7AF24DE"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
[
{
"pkey_hash": "0xD719E3DE39D92998B7CFE7092AA16B53B619B6B093DA9D36B676402CE7AF24DE",
"stake_value": "2.0",
"effective_value": "2.0",
"related_weight": "1.52555301296720061",
"tx_hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"node_addr": "6074::5C74::C320::A0F5",
"sovereign_addr": "null",
"sovereign_tax": "0.0",
"active": "true"
},
{
"inactive_keys": 0,
"total_weight_coins": "131.1",
"total_weight_str": "131100000000000000000",
"total_effective_weight_coins": "131.1",
"total_effective_weight": "131100000000000000000",
"key_delegating_min_value": "2.0",
"key_delegating_min_value_ticker": "mtKEL",
"each_validator_max_related_weight": "100"
}
]
],
"id": 1
}
```