Lists balancer records.
## Request Structure
`JSON object:`
```JSON
{
"method": "node",
"subcommand": ["balancer"],
"arguments": {
"net": "network_name"
},
"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]]
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "node",
"subcommand": ["balancer"],
"arguments": {
"net": "riemann"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 0,
"result": "Balancer link list for total 12 records:\n-----------------------------------------------------------------\n|\t\tNode addr\t|\tHost addr\t\t|\n--Send in balancer http response---------------------------------\n|\t9596::EBE5::9B33::30FE\t|\t178.128.255.95 :80\t|\n|\tCC88::3F68::5313::1577\t|\t216.238.98.65 :8079\t|\n|\tFE4E::4EEC::007D::07E9\t|\t95.179.231.80 :8079\t|\n|\t1053::715F::A778::3C20\t|\t138.68.111.134 :8079\t|\n|\t6FFD::785E::D0C8::6F50\t|\t70.34.255.10 :8079\t|\n|\t6074::5C74::C320::A0F5\t|\t164.90.205.254 :8079\t|\n--Not send in http balancer response-----------------------------\n|\t8E67::8E5E::166A::A6F0\t|\t198.199.111.10 :8079\t|\n|\tDBBA::AED3::2C72::87A7\t|\t64.226.102.206 :8079\t|\n|\t7989::C276::2259::DE4F\t|\t209.250.235.175 :8079\t|\n|\t4A34::01E2::FE8C::C0B4\t|\t147.45.133.79 :8079\t|\n|\tE61D::7120::D2C4::5D01\t|\t192.168.50.73 :8079\t|\n|\tBCA3::B097::DCDC::CB2B\t|\t161.35.50.90 :8079\t|\n-----------------------------------------------------------------\n",
"id": 1
}
```