Funds (futures)
Fetch your available balance and margin usage from the Futures wallet.
Fetch your available balance and margin usage from the Futures wallet. Pass
trade_currencyto choose the currency; omitted defaults to USDT.
Request
# USDT (default)
curl -X GET "https://trade.mudrex.com/fapi/v1/futures/funds" \
-H "X-Authentication: your-secret-key"# INR
curl -X GET "https://trade.mudrex.com/fapi/v1/futures/funds?trade_currency=INR" \
-H "X-Authentication: your-secret-key"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
trade_currency | string | No | USDT or INR. Defaults to USDT when omitted. |
Response
Status: 200 OK
USDT:
{
"success": true,
"data": {
"balance": "12.6787",
"locked_amount": "1.6979",
"first_time_user": false
}
}INR (?trade_currency=INR):
{
"success": true,
"data": {
"balance": "114.9329",
"locked_amount": "0",
"first_time_user": false
}
}After opening a position, margin moves from balance to locked_amount (INR example):
{
"success": true,
"data": {
"balance": "18.1993",
"locked_amount": "96.4497",
"first_time_user": false
}
}Response fields
| Field | Description |
|---|---|
balance | Investable balance in the futures wallet, in trade_currency. |
locked_amount | Balance locked as margin, in trade_currency. |
first_time_user | First-time futures user flag for this currency. |
