v1
latestOpenAPI 3.0.32026-07-2613529376.3 KBFees
Get fees
Returns an array of objects containing deposit/withdrawal fees for the corresponding currencies. Zero value in amount fields means that the setting is disabled.
The endpoint takes no input beyond the signed request envelope and returns the full per-currency fee schedule on success. It can return only the common authentication errors.
<Warning> Rate limit: 1000 requests/10 sec. </Warning> <Note> The API does not cache the response. </Note>post/api/v4/main-account/fee
Request body
Example request
{
"request": "{{request}}",
"nonce": 1594297865000
}Response
Successful response
Example response
[
{
"ticker": "BTC",
"name": "Bitcoin",
"providers": [],
"deposit": {
"max_amount": "0",
"min_amount": "0.0004",
"fixed": "0.0002",
"flex": {
"percent": "1.5",
"min_fee": "0.15",
"max_fee": "150"
}
},
"withdraw": {
"max_amount": "0",
"min_amount": "0.0004",
"fixed": "0.0002",
"flex": {
"percent": "1.5",
"min_fee": "0.15",
"max_fee": "150"
}
},
"is_depositable": true,
"is_withdrawal": true,
"is_api_withdrawal": true,
"is_api_depositable": true
}
]