Shows current order status. ## Request Structure `JSON object:` ```JSON { "method": "srv_xchange", "subcommand": ["order","status"], "arguments": { "net": "network_name", "order": "order_hash" }, "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]] **`order`** - hash of the exchange order ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "srv_xchange", "subcommand": ["order","status"], "arguments": { "net": "riemann", "order": "0x68D7559147BF9D228A68FF53A3F2B4735377834ACF5DE6FC1095D48B1ECBF00D" }, "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" } ], "id": 1 } ```