Guides
Guides

Open Positions

Get detailed info about your currently open positions.

Request

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

Response

{
    "success": true,
    "data": [
        {
            "created_at": "2025-10-01T06:27:17Z",
            "updated_at": "2025-10-01T06:31:15Z",
            "stoploss": {
                "price": "4100",
                "order_id": "01999e77-8eab-79aa-8db3-8cc0624c7d0e",
                "order_type": "SHORT"
            },
            "takeprofit": {
                "price": "5000",
                "order_id": "01999e77-8eab-79ad-b3f0-22ee1e8e81d6",
                "order_type": "SHORT"
            },
            "entry_price": "4133.41",
            "quantity": "0.02",
            "leverage": "50",
            "liquidation_price": "4071.1",
            "pnl": "-0.0362",
            "order_type": "LONG",
            "status": "OPEN",
            "id": "01999e74-27a6-76d5-880b-4cab5eac78f1",
            "asset_uuid": "01903bc9-973a-7106-99e2-08287b632806",
            "symbol": "ETHUSDT"
        }
    ]
}

Parameters

ParameterDescription
idPosition ID (UUID)
created_atTimestamp when the position was created
updated_atTimestamp when the position was last updated
stoplossStop loss object containing price, order_id, and order_type (can be null if not set)
takeprofitTake profit object containing price, order_id, and order_type (can be null if not set)
entry_pricePrice at which the position was opened
quantityPosition quantity
leverageLeverage used for the position
liquidation_priceLiquidation price for the position
pnlUnrealised profit and loss for the position
order_typePosition type: LONG or SHORT
statusPosition status (e.g., OPEN)
asset_uuidUUID of the asset
symbolTrading symbol (e.g., "ETHUSDT")

Examples

No open positions

{
    "success": true,
    "data": null
}