Transactions statistics. Time format is `<Year>-<Month>-<Day>_<Hours>:<Minutes>:<seconds>` or just `<seconds>` ## Request Structure `JSON object:` ```JSON { "method": "net", "subcommand": ["stats","tx"], "arguments": { "net": "network_name", "from": "from_time", "to": "to_time", "prev_sec": "seconds" }, "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]] **`from`** - from `<Year>-<Month>-<Day>_<Hours>:<Minutes>:<seconds>` time `optional` **`to`** - to `<Year>-<Month>-<Day>_<Hours>:<Minutes>:<seconds>` time `optional` **`prev_sec`** - shows tx statistics only for the specified previous seconds `optional` ### Curl Example `Request:` ```powershell curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "net", "subcommand": ["stats","tx"], "arguments": { "net": "Backbone" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "transaction_statistics": { "from": "2025-04-24_16:48:34", "to": "2025-04-25_16:48:34", "transaction_per_day": "1.000", "total": 1 } } ], "id": 1 } ```