Guides
Guides

Order by id

Retrieve detailed information about a particular order.

Request

curl -X GET "https://trade.mudrex.com/fapi/v1/futures/orders/{order_id}" \
  -H "X-Authentication: your-secret-key"

Parameters

ParameterTypeRequiredDescription
order_idstringYesThe unique identifier of the order (path parameter)

Response

{
    "success": true,
    "data": {
        "created_at": "2025-10-08T11:41:01Z",
        "updated_at": "2025-10-08T11:41:01Z",
        "reason": {
            "message": "OK"
        },
        "actual_amount": 222.8,
        "desired_amount": 0,
        "quantity": 0.05,
        "filled_quantity": 0,
        "price": 4456,
        "filled_price": 0,
        "leverage": 80.9,
        "liquidation_price": 0,
        "order_type": "LONG",
        "trigger_type": "LIMIT",
        "status": "CREATED",
        "id": "0199c39f-e866-7d6b-947e-ed2f09c90b8e",
        "asset_uuid": "018f7643-129c-7ca6-bb89-3be0e5ee94ae",
        "symbol": "ETHUSDT"
    }
}

Parameters

ParameterDescription
idOrder ID (UUID)
created_atTimestamp when the order was created
updated_atTimestamp when the order was last updated
reasonReason object containing message (can be null)
actual_amountActual amount used for the order
desired_amountDesired amount for the order
quantityOrder quantity
filled_quantityQuantity that has been filled
priceOrder price
filled_priceAverage price at which the order has been filled
leverageLeverage used for the order
liquidation_priceLiquidation price for the position
order_typeType of order: LONG, SHORT, or TAKEPROFIT
trigger_typeTrigger type: MARKET or LIMIT
statusOrder status (e.g., CREATED, FILLED)
asset_uuidUUID of the asset
symbolTrading symbol (e.g., "ETHUSDT")

Common errors

Order not found

{
    "success": false,
    "errors": [
        {
            "code": 404,
            "text": "order not found"
        }
    ]
}

Status: 404 Not Found