Shows balances list of the network.
## Request Structure
`JSON object:`
```JSON
{
"method": "ledger",
"subcommand": ["list","balance"],
"arguments": {
"net": "network_name"
},
"id": "1"
}
```
`Parameters:`
**`net`** - 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]]
### Curl Example
`Request:`
```powershell
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "ledger",
"subcommand": ["list","balance"],
"arguments": {
"net": "riemann"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
[
{
"limit": "unlimit"
},
{
"Ledger balance key": "o9z3wUTSTicckJuowN1RsFVq11mLCYP7nyy73uWyV2sdS3JcVAijFVvRzM1fJsdC9AAR3pXddqghL7TB9CkYmhAcRNe9Pz58DApAMdrr tKEL",
"token_ticker": "tKEL",
"balance": "10000000000000000000"
},
{
"Ledger balance key": "o9z3wUTSTicckJuozh1b27XDR7fHZDwbdDvj8mrhFxWiEh9mmq78JGASsoQ9Av21jidWWkU4uV1JrHY311m5w7DGVLjEPa27kXYz13Sc DAG",
"token_ticker": "DAG",
"balance": "100000000000000000000000000000000000"
},
{
"Ledger balance key": "o9z3wUTSTicckJuovmaxs84v37HCQ3xSHHhqivFW3rqncZdgiaSc6av9fVubqWeNprPWYDH2pf5g6G62gu7g3DgZ3Fajo1XmQrF8d1FB tKEL",
"token_ticker": "tKEL",
"balance": "9999998999999999999999889999698999968999898345500000000000000"
}
# this output was cut to make it readable
]
],
"id": 1
}
```