Guides
Guides

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_currency to 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

ParameterTypeRequiredDescription
trade_currencystringNoUSDT 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

FieldDescription
balanceInvestable balance in the futures wallet, in trade_currency.
locked_amountBalance locked as margin, in trade_currency.
first_time_userFirst-time futures user flag for this currency.