Guides
Guides

Open orders

View all active (open) orders in your account.

Request

curl -X GET "https://trade.mudrex.com/fapi/v1/futures/orders?limit=2" \
  -H "X-Authentication: your-secret-key"

Parameters

ParameterTypeRequiredDescription
limitnumberNoMaximum number of records to return (default: 20)

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"
        },
        {
            "created_at": "2025-10-08T11:41:01Z",
            "updated_at": "2025-10-08T11:41:01Z",
            "reason": null,
            "actual_amount": 0,
            "desired_amount": 0,
            "quantity": 0,
            "filled_quantity": 0,
            "price": 30000,
            "filled_price": 0,
            "leverage": 0,
            "liquidation_price": 0,
            "order_type": "TAKEPROFIT",
            "trigger_type": "MARKET",
            "status": "CREATED",
            "id": "0199c39f-e866-7d6e-b5d9-850852495106",
            "asset_uuid": "018f7643-129c-7ca6-bb89-3be0e5ee94ae",
            "symbol": "ETHUSDT"
        }
    ]
}

Parameters

ParameterDescription
idOrder ID (UUID). This ID is used for updating or deleting open orders/positions
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)
asset_uuidUUID of the asset
symbolTrading symbol (e.g., "ETHUSDT")

Examples

No open orders

{
    "success": true,
    "data": []
}