Guides
Guides

Open Positions

Get detailed info about your currently open positions.

Get detailed info about your currently open positions, for one currency. trade_currency defaults to USDT when omitted; the response never mixes currencies, and each position carries a trade_currency tag.

Request

# USDT (default)
curl -X GET "https://trade.mudrex.com/fapi/v1/futures/positions" \
  -H "X-Authentication: your-secret-key"
# INR
curl -X GET "https://trade.mudrex.com/fapi/v1/futures/positions?trade_currency=INR" \
  -H "X-Authentication: your-secret-key"

Parameters

ParameterTypeRequiredDescription
trade_currencystringNoUSDT or INR. Defaults to USDT. One currency per call.

Response

Status: 200 OK

USDT (default):

{
    "success": true,
    "data": [
        {
            "entry_price": "0.02645",
            "quantity": "1512",
            "leverage": "2",
            "symbol": "FHEUSDT",
            "trade_currency": "USDT",
            "status": "OPEN"
        }
    ]
}

INR (?trade_currency=INR):

{
    "success": true,
    "data": [
        {
            "created_at": "2026-06-15T17:26:39Z",
            "entry_price": "0.11442",
            "quantity": "43.8",
            "leverage": "5",
            "liquidation_price": "0.09293",
            "initial_margin": "96.44",
            "maintenance_margin": "7.44",
            "entry_hedge_rate": "96",
            "order_type": "LONG",
            "status": "OPEN",
            "id": "019ecc52-2f95-7ab5-8682-c3a0f43ccda6",
            "symbol": "SOMIUSDT",
            "trade_currency": "INR",
            "stoploss": {
                "price": "0.1",
                "order_id": "019ecc5a-ea31-7e08-b6d4-428bc921126a",
                "order_type": "SHORT"
            },
            "takeprofit": {
                "price": "0.13",
                "order_id": "019ecc5a-ea31-7e0b-a5bc-7288863af056",
                "order_type": "SHORT"
            }
        }
    ]
}

Response fields (additive for INR)

FieldDescription
trade_currencyCurrency of the position: USDT or INR.
entry_hedge_rateINR/USDT rate captured at position entry (INR positions).

initial_margin and maintenance_margin are in the position's currency. entry_price, liquidation_price, and the stoploss/takeprofit price values remain USDT; quantity is the base asset.

Notes

  • Backward compatibility: omitting trade_currency returns USDT positions only, each tagged trade_currency: "USDT". The INR position is returned only when trade_currency=INR is passed.
  • No open positions returns {"success": true, "data": null}.