Guides
Guides

Fees

Endpoints to retrieve your futures trading and funcding fee history with pagination support using limit and offset parameters.

Retrieve your futures trading and funding fee history for one currency, with pagination via limit and offset. Fee amounts are in the position's currency; INR records include gst_amount.

Request

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

Parameters

ParameterTypeRequiredDescription
trade_currencystringNoUSDT or INR. Defaults to USDT. One currency per call.
limitnumberNoMaximum number of records to return (default: 20).
offsetnumberNoNumber of records to skip (default: 0).

Response

Status: 200 OK

{
    "success": true,
    "data": [
        {
            "id": "019c0555-aaa1-70dd-a15b-398b28faaf75",
            "symbol": "SOMIUSDT",
            "fee_amount": "3.51",
            "fee_perc": "0.05",
            "fee_type": "TRANSACTION",
            "transaction_amount": "7037.79",
            "trade_currency": "INR",
            "order_type": "SHORT",
            "trigger_type": "MARKET",
            "gst_amount": "0.63340185"
        },
        {
            "symbol": "SOMIUSDT",
            "fee_amount": "-3.18",
            "fee_type": "FUNDING",
            "transaction_amount": "7110.6",
            "trade_currency": "INR"
        }
    ]
}

Response fields

FieldDescription
symbolTrading symbol (e.g. "SOMIUSDT").
fee_amountFee amount charged, in trade_currency. Negative on FUNDING records means a funding credit.
fee_percFee percentage.
fee_typeType of fee: TRANSACTION or FUNDING.
transaction_amountTransaction amount on which the fee was calculated, in trade_currency.
trade_currencyCurrency the fee was charged in: USDT or INR (additive).
order_typeOrder side associated with the fee (e.g. SHORT).
trigger_typeTrigger type (e.g. MARKET).
gst_amountGST charged on the fee (additive, INR records).