# List company orders Endpoint: GET /orders Version: 1.0.0 Security: apiKeyAuth ## Query parameters: - `status` (string) Enum: "created", "in_progress", "success", "failed", "expired_no_taker", "expired_by_system", "disputed" - `limit` (integer) - `offset` (integer) ## Response 200 fields (application/json): - `orders` (array, required) - `orders.id` (string, required) - `orders.amountUsdt` (number, required) - `orders.amountRub` (number, required) - `orders.status` (string, required) Enum: "created", "in_progress", "success", "failed", "expired_no_taker", "expired_by_system", "disputed" - `orders.paymentUntil` (string, required) - `orders.merchantName` (string,null) - `orders.externalOrderId` (string,null) - `orders.completedAt` (string,null) - `orders.failureReason` (string,null) - `orders.createdAt` (string, required) - `total` (integer, required) ## Response 401 fields (application/json): - `statusCode` (integer) Example: 400 - `message` (any) - `error` (string) Example: "Bad Request"