Open orders
View all active (open) orders in your account.
View all active (open) orders in your account, for one currency. trade_currency defaults to USDT when omitted; the response never mixes currencies, and each order carries a trade_currency tag.
Request
# USDT (default)
curl -X GET "https://trade.mudrex.com/fapi/v1/futures/orders?limit=2" \
-H "X-Authentication: your-secret-key"# INR
curl -X GET "https://trade.mudrex.com/fapi/v1/futures/orders?trade_currency=INR" \
-H "X-Authentication: your-secret-key"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
trade_currency | string | No | USDT or INR. Defaults to USDT. One currency per call. |
limit | number | No | Maximum number of records to return (default: 20). |
Response
Status: 200 OK (INR — SL/TP orders attached to an open position)
{
"success": true,
"data": [
{
"created_at": "2026-06-15T17:36:11Z",
"updated_at": "2026-06-15T17:36:11Z",
"price": 0.1,
"hedge_rate": 96,
"order_type": "STOPLOSS",
"trigger_type": "MARKET",
"trade_currency": "INR",
"status": "CREATED",
"id": "019ecc5a-ea31-7e08-b6d4-428bc921126a",
"symbol": "SOMIUSDT",
"future_position_uuid": "019ecc52-2f95-7ab5-8682-c3a0f43ccda6"
},
{
"price": 0.13,
"order_type": "TAKEPROFIT",
"trigger_type": "MARKET",
"trade_currency": "INR",
"status": "CREATED",
"id": "019ecc5a-ea31-7e0b-a5bc-7288863af056",
"symbol": "SOMIUSDT"
}
]
}Response fields (additive for INR)
| Field | Description |
|---|---|
trade_currency | Currency of the order: USDT or INR. |
hedge_rate | INR/USDT conversion rate (INR orders). |
future_position_uuid | UUID of the position a risk order belongs to. |
Existing fields (
actual_amount,desired_amount,quantity,filled_quantity,price,leverage,liquidation_price,asset_uuid, …) are unchanged. Prices remain USDT; quantity is the base asset.
Notes
- Backward compatibility: an old client that omits
trade_currencyreceives USDT orders only, each taggedtrade_currency: "USDT". INR orders are returned only whentrade_currency=INRis passed. - No open orders returns
{"success": true, "data": []}.
