Fee Tier
Tiers
GET
https://api.liquid.com/user/fee_tier
Get a user's current tier & traded volume.
Fee Types
GET
https://api.liquid.com/user/fees?fee_type={fee_type}
View different kinds of fee a user has to pay.
Query Parameters
fee_type
string
Specify trade_fee
, trade_fee_commission
, withdrawal_fee
, bank_fee
.
Check Estimated Order Fees
POST
https://api.liquid.com/fees/estimate
View the estimated fees and discount.
Request Body
for_action
string
Specify "for_action": "create_order"
.
trading_type
string
Within "for_params":{}
supported values are:
"trading_type": "spot"
"trading_type": "margin"
"trading_type": "cfd"
"trading_type": "perpetual"
side
string
Within "for_params": {}
supported values are:
"side": "buy"
"side": "sell"
.
quantity
string
Within "for_params": {}
supported values are:
"quantity": "2"
as an example.
price
string
Within "for_params": {}
supported values are:
"price": "10000"
as an example.
order_type
string
Within "for_params": {}
supported values are:
"order_type": "limit"
"order_type": "market"
"order_type": "spot"
If "market"
is specified, then "price"
becomes irrelevant, fees will be calculated by best bid/ask.
product_id
string
Within "for_params": {}
supported values are:
"product_id": "123456"
as an example.
funding_currency
string
Within "for_params": {}
supported values are:
"funding_currency": "USD"
as an example.
Defaults to USD
if not specified.
Withdrawal Fees
POST
https://api.liquid.com/fees/estimate
View the withdrawal fees for fiat or crypto.
Request Body
for_action
string
Specify "for_action": "withdraw"
.
currency
string
Within "for_params": {}
supported values are:
"currency" "USD"
as an example.
amount
string
Within "for_params": {}
supported values are:
"amount": "10000"
as an example.
bank_account_id
string
Required when currency is a fiat.
Within "for_params": {}
supported values are:
"bank_account_id": "1"
as an example.
Last updated