Skip to main content
POST
/
api
/
v4
/
main-account
/
fee
Get fees
curl --request POST \
  --url https://whitebit.com/api/v4/main-account/fee \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --header 'X-TXC-PAYLOAD: <api-key>' \
  --header 'X-TXC-SIGNATURE: <api-key>' \
  --data '
{
  "request": "{{request}}",
  "nonce": "{{nonce}}"
}
'
[
  {
    "ticker": "ETH",
    "name": "Ethereum",
    "can_deposit": true,
    "can_withdraw": true,
    "deposit": {
      "minFlex": "0",
      "maxFlex": "0",
      "percentFlex": "0",
      "fixed": "0",
      "minAmount": "0.01",
      "maxAmount": "0"
    },
    "withdraw": {
      "minFlex": "0",
      "maxFlex": "0",
      "percentFlex": "0",
      "fixed": "0.0004",
      "minAmount": "0.01",
      "maxAmount": "0"
    }
  }
]

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)).

Body

application/json
request
string
required

Request signature

Example:

"{{request}}"

nonce
string
required

Unique request identifier

Example:

"{{nonce}}"

Response

200 - application/json

Successful response

ticker
string

Currency ticker

Example:

"ETH"

name
string

Currency name

Example:

"Ethereum"

can_deposit
boolean

Deposit status (currency availability)

Example:

true

can_withdraw
boolean

Withdrawal status (currency availability)

Example:

true

deposit
object

Deposit fees and limits

withdraw
object

Withdrawal fees and limits