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>' \
  --data '
{
  "request": "{{request}}",
  "nonce": "{{nonce}}"
}
'
[
  {
    "ticker": "ETH",
    "name": "Ethereum",
    "can_deposit": "1",
    "can_withdraw": "1",
    "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

API key authentication using signed requests

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
string

Deposit status (currency availability)

Example:

"1"

can_withdraw
string

Withdrawal status (currency availability)

Example:

"1"

deposit
object

Deposit fees and limits

withdraw
object

Withdrawal fees and limits