v1

latestOpenAPI 3.0.32026-07-2613529376.3 KB
Market Fee

Query Market Fees

Returns the account's default spot and futures maker and taker fees, plus any custom per-market overrides.

The maker and taker fields represent default spot trading fees. The futures_maker and futures_taker fields represent default futures trading fees. The custom_fee object lists per-market overrides, keyed by market name.

The system calculates the effective futures fee as the lower value between the user-specific custom fee and the market-specific fee.

When the market fee is lower than the assigned custom fee, the system returns the market fee.

Example: If the custom futures taker fee equals 0.026 and the market fee equals 0.02, the response returns 0.02.

post/api/v4/market/fee

Query parameters

marketstring
Example:BTC_USDT

Optional. Currently ignored by the API — all market fees are returned regardless of the value provided. Retained for backward compatibility. Example: BTC_USDT

Response

Successful response

errorstring nullable
takerstring

Taker fee percentage

makerstring

Maker fee percentage

futures_takerstring

Default effective futures taker fee rate. The system returns the lower value between the custom fee (if assigned) and the default market fee.

futures_makerstring

Default effective futures maker fee rate. The system returns the lower value between the custom fee (if assigned) and the default market fee.

custom_feeobject

Per-market fee overrides, keyed by market name. Each value contains the market's custom taker and maker rates.

Example response

{
  "taker": "0.1",
  "maker": "0.1",
  "futures_taker": "0.0002",
  "futures_maker": "0.0001",
  "custom_fee": {
    "BTC_PERP": {
      "taker": "0.055",
      "maker": "0.01"
    },
    "ETH_PERP": {
      "taker": "0.055",
      "maker": "0.01"
    }
  }
}