Shows all information about nodes in the network or single node dump.
## Request Structure
`JSON object:`
```JSON
{
"method": "node",
"subcommand": ["dump"],
"arguments": {
"net": "network_name",
"addr | alias": "node address | node alias"
},
"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]]
**`addr | alias`** - node address | node alias `optional`
### Curl Example
Node dump:
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "node",
"subcommand": ["dump"],
"arguments": {
"net": "Backbone",
"addr": "6074::5C74::C320::A0F5"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 0,
"result": "Record timestamp: Wed, 30 Apr 2025 06:58:38 +0000\nRecord version: 2\nNode version: 5.3-360\nNode addr: 6074::5C74::C320::A0F5\nNet: riemann\nRole: NODE_ROLE_MASTER\nEvents count: 595\nAtoms count: 17953\nUplinks count: 2\nDownlinks count: 10\n-----------------------------------------------------------------\n|\tUplinks node addrs\t|\tDownlinks node addrs\t|\n-----------------------------------------------------------------\n|\t7989::C276::2259::DE4F\t|\t8008::16CA::E417::9839\t|\n|\t9DBA::131E::852F::5123\t|\t062D::DAA0::F87C::D861\t|\n|\t\t\t\t|\tD1E4::F837::F42C::BFEF\t|\n|\t\t\t\t|\t5DA8::C171::E316::C923\t|\n|\t\t\t\t|\tA983::7C3F::7FD4::4950\t|\n|\t\t\t\t|\tCC88::3F68::5313::1577\t|\n|\t\t\t\t|\tA2C2::0CD4::38BA::2E8C\t|\n|\t\t\t\t|\t72F9::511B::616A::A46F\t|\n|\t\t\t\t|\tFAD6::D967::1E54::C3F3\t|\n|\t\t\t\t|\t0393::7C39::F6E6::5B36\t|\n-----------------------------------------------------------------\n",
"id": 1
}
```