Lists actual token declarations in the network.
## Request Structure
`JSON object:`
```JSON
{
"method": "token",
"subcommand": ["list"],
"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": "token",
"subcommand": ["list"],
"arguments": {
"net": "riemann"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"TOKENS": [
{
"CELL": {
"current state": {
"-->Token name": "CELL",
"type": "CF20",
"flags": "NONE",
"description": "The token description is not set",
"Supply current": "0",
"Supply total": "0",
"Decimals": "18",
"Auth signs valid": 4,
"Auth signs total": 8,
"Signatures public keys": [
{
"line": 0,
"hash": "0xBF56C63E8C615FD805AA6BD354E9FFAF5C068CEC76B47F375682EE81636ADC73",
"pkey_type": "DAP_PKEY_TYPE_SIGN_DILITHIUM",
"bytes": 1196
},
# this output was cut to make it readable
],
"Total emissions": 26410
}
]
}
}
],
"updates": []
}
},
{}
],
"tokens": 15
}
],
"id": 1
}
```