Guides
Guides

Fees

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

Request

curl -X GET "https://trade.mudrex.com/fapi/v1/futures/fee/history?limit=2" \
  -H "X-Authentication: your-secret-key"

Parameters

ParameterTypeRequiredDescription
limitnumberNoMaximum number of records to return (default: 20)
offsetnumberNoNumber of records to skip (default: 0)

Response

{
    "success": true,
    "data": [
        {
            "symbol": "ETHUSDT",
            "fee_amount": "0.0206648",
            "fee_perc": "0.05",
            "fee_type": "TRANSACTION",
            "created_at": "2025-10-01T06:31:00Z",
            "transaction_amount": "41.3296"
        },
        {
            "symbol": "ETHUSDT",
            "fee_amount": "0.0206693",
            "fee_perc": "0.05",
            "fee_type": "TRANSACTION",
            "created_at": "2025-10-01T06:27:17Z",
            "transaction_amount": "41.3386"
        }
    ]
}

Parameters

ParameterDescription
symbolTrading symbol (e.g., "ETHUSDT")
fee_amountFee amount charged
fee_percFee percentage
fee_typeType of fee: TRANSACTION or FUNDING
created_atTimestamp when the fee was charged
transaction_amountTransaction amount on which the fee was calculated