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>' \
  --header 'X-TXC-PAYLOAD: <api-key>' \
  --header 'X-TXC-SIGNATURE: <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

The public WhiteBIT API key.

X-TXC-PAYLOAD
string
header
required

Base64-encoded JSON request body.

X-TXC-SIGNATURE
string
header
required

HMAC-SHA512 signature of the payload, hex-encoded. Computed as hex(HMAC-SHA512(payload, api_secret)).

Query Parameters

market
string

Optional. Currently ignored by the API — all market fees are returned regardless of the value provided. Retained for backward compatibility. 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"