# Get order by order_id **GET /trading/accounts/{account_id}/orders/{order_id}** ## Servers - Production: https://api.example.com/v1 (Production) - Sandbox: https://sandbox.api.example.com/v1 (Sandbox) ## Authentication methods - Api key auth ## Parameters ### Headers - **PRE-ACCESS-KEY** (string) Broker access key identifier. - **PRE-ACCESS-SIGNATURE** (string) Keyed BLAKE2b-256 signature (hex lowercase, 64 characters). - **PRE-ACCESS-TIMESTAMP** (string(date-time)) RFC3339 timestamp with milliseconds (e.g., 2025-10-30T06:00:34.075Z). Must be within clock_skew_tolerance (default 5m) of server time. ### Path parameters - **account_id** (string) Broker-supplied account identifier; length 1..128; charset [A-Za-z0-9._~-]. - **order_id** (string(uuid)) ## Responses ### 200 Order view #### Body: application/json (object) - **order_id** (string(uuid)) - **client_order_id** (string) - **market_id** (string) - **broker_id** (string) - **account_id** (string) - **side** (string) - **type** (string) - **tif** (string) - **token** (string) - **price** (object) - **qty** (object) - **volume** (object) - **filled_qty** (object) - **filled_volume** (object) - **filled_fee** (object) Total filled fees accumulated on this order (in quote currency units). - **status** (string) - **status_reason** (string) Machine-readable reason code for the current status - **last_update_wall_time_ns** (integer(int64)) - **last_update_engine_seq** (integer(int64)) Monotonic engine sequence number of the last applied change - **last_cmd_id_hex** (string) 32 lowercase hex ### 404 Resource not found #### Body: application/json (object) - **error_code** (string) - **message** (string) - **details** (object) ### 503 Backpressure / temporary unavailability #### Body: application/json (object) - **error_code** (string) - **message** (string) - **details** (object) [Powered by Bump.sh](https://bump.sh)