Lists [[Orders#Exchange order (xchange-order)|exchange orders]] within specified network. ## Request Structure `JSON object:` ```JSON { "method": "srv_xchange", "subcommand": ["orders"], "arguments": { "net": "network_name", "status": "opened | closed | all", "token_from": "token_ticker", "token_to": "token_ticker" }, "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]] **`status`** - filtration by selected order status: `opened` / `closed` / `all` `optional` **`token_from`** - filtration by ticker of token is being sold `optional` **`token_to`** - filtration by ticker of token is being bought `optional` ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "srv_xchange", "subcommand": ["orders"], "arguments": { "net": "riemann", "status": "opened", "token_to": "CRINGE" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "order_hash": "0x68D7559147BF9D228A68FF53A3F2B4735377834ACF5DE6FC1095D48B1ECBF00D", "ts_created": "Mon, 12 May 2025 07:38:00 +0000", "status": "OPENED", "proposed_coins": "5.0", "proposed_datoshi": "5000000000000000000", "amount_coins": "5.0", "amount_datoshi": "5000000000000000000", "filled_percent": 0, "token_buy": "CRINGE", "token_sell": "tKEL", "rate": "2.0", "net": "riemann", "owner_addr": "o9z3wUTSTicckJuoz2KebPSeZuMAfFQiPobvhwmy9dzC2RefQmy7EH7a74qZFXZE3g8LFf284mLR152wGPHbAAifMk55f6haWGmPkrW6" }, { "ORDERS": [ { "limit": 1000 } ], "number of transactions": "Total 1 orders.\n\r" } ], "id": 1 } ```