Lists network orders using different filters. ## Request Structure `JSON object:` ```JSON { "method": "net_srv", "subcommand": ["order","find"], "arguments": { "net": "network_name", "srv_uid": "service_uid", "direction": "sell | buy", "price_unit": "price Unit", "price_token": "token_ticker", "price_min": "price_minimum", "price_max": "price_maximum" }, "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]]**`srv_uid`** - `UID` of the service `optional` **`direction`** - direction of token exchange: `sell` - from, `buy` - to `optional` **`price_unit`** - preferable unit of service (`SEC` for the seconds, `B` for `bytes`) `optional` **`price_token`** - ticker of the token `optional` **`price_min`** - filtration by minimum order price `optional` **`price_max`** - filtration by maximum order price `optional` ### Curl Example `Request:` ```powershell curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "net_srv", "subcommand": ["order","find"], "arguments": { "net": "riemann", "srv_uid": "0x0000000000000001", "direction": "sell", "price_token": "BNB" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "count": 1, "orders": [ { "order": "0xD03838DB5FF5C08CA3093FDD62B1E97D636D7C1B636D1918D63ED5BED4AD47E6", "version": 3, "direction": "SERV_DIR_SELL", "created": "Thu, 31 Oct 2024 10:52:19 +0000", "timestamp": 1730371939, "srv_uid": "0x0000000000000001", "price coins": "0.00000000001", "price datoshi": "10000000", "price token": "BNB", "units": 1, "price unit": "SECOND", "node_addr": "DAA5::3DC0::E0A6::3BE5", "node_location": "Europe - Russia", "ext_size": 9, "pkey": "0xF8B2EEB7987BEF9AE32DF4790174E2EDAE2E71A8144DA5FD076942CD039A1053" } ] } ], "id": 1 } ```