Shows minimum quantity of validators required for [[ESBOCS Consensus]] work in the network.
## Request Structure
`JSON object:`
```JSON
{
"method": "esbocs",
"subcommand": ["min_validators_count", "show"],
"arguments": {
"net": "network_name",
"chain": "chain_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]]
**`chain`** - name of the chain `optional`
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "esbocs",
"subcommand": ["min_validators_count","show"],
"arguments": {
"net": "riemann"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"Minimum validators count": 2
}
],
"id": 1
}
```