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
| 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). |
offset | number | No | Number 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
| Field | Description |
|---|---|
symbol | Trading symbol (e.g. "SOMIUSDT"). |
fee_amount | Fee amount charged, in trade_currency. Negative on FUNDING records means a funding credit. |
fee_perc | Fee percentage. |
fee_type | Type of fee: TRANSACTION or FUNDING. |
transaction_amount | Transaction amount on which the fee was calculated, in trade_currency. |
trade_currency | Currency the fee was charged in: USDT or INR (additive). |
order_type | Order side associated with the fee (e.g. SHORT). |
trigger_type | Trigger type (e.g. MARKET). |
gst_amount | GST charged on the fee (additive, INR records). |
