Displays the current `status`, network `fee` or net `ID`. ## Request Structure `JSON object:` ```JSON { "method": "net", "subcommand": ["get","status | fee | id"], "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]] `Subcommands:` **`status`** - get network status **`fee`** - get all network fees **`id`** - get network ID ### Curl Example `Request:` ```powershell curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "net", "subcommand": ["get","fee"], "arguments": { "net": "Backbone" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "fees": { "network": { "coins": "0.002", "balance": "2000000000000000", "ticker": "CELL", "addr": "Rj7J7MiX2bWy8sNyX38bB86KTFUnSn7sdKDsTFa2RJyQTDWFaebrj6BucT7Wa5CSq77zwRAwevbiKy1sv1RBGTonM83D3xPDwoyGasZ7" }, "validators": { "min": { "balance": "1", "coin": "0.000000000000000001" }, "max": { "balance": "100000000000000000", "coin": "0.1" }, "average": { "balance": "20455792734113301", "coin": "0.020455792734113301" }, "median": { "balance": "50000000000000000", "coin": "0.05" }, "token": "CELL" }, "xchange": "service has not announced a commission fee" } } ], "id": 1 } ```