Skip to main content
POST
/
api
/
v4
/
market
/
fee
Query Market Fee
curl --request POST \
  --url https://whitebit.com/api/v4/market/fee \
  --header 'X-TXC-APIKEY: <api-key>'
{
  "error": null,
  "taker": "0.1",
  "maker": "0.1",
  "futures_taker": "0.0002",
  "futures_maker": "0.0001"
}

Authorizations

X-TXC-APIKEY
string
header
required

API Key authentication for private endpoints.

Required headers:

  • X-TXC-APIKEY: API key
  • X-TXC-PAYLOAD: Base64 encoded JSON payload
  • X-TXC-SIGNATURE: HMAC SHA512 signature

Query Parameters

market
string
required

Market to query.

If the request includes the market parameter, the system returns fees for the specified market only.

When fee values are identical across markets, the response contains identical values regardless of the specified market.

Example: BTC_USDT

Example:

"BTC_USDT"

Response

Successful response

error
string | null
Example:

null

taker
string

Taker fee percentage

Example:

"0.1"

maker
string

Maker fee percentage

Example:

"0.1"

futures_taker
string

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

Example:

"0.0002"

futures_maker
string

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

Example:

"0.0001"