v1

latestOpenAPI 3.0.32026-07-2613529376.3 KB
Fees

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

requeststring required

Request signature

nonceinteger required

Unique request identifier

Example request

{
  "request": "{{request}}",
  "nonce": 1594297865000
}

Response

Successful response

tickerstring

Asset ticker symbol

namestring

Human-readable asset name

providersstring[]

Payment provider identifiers used as the network parameter value for fiat deposits and withdrawals via the API. See GET /api/v4/public/assets providers field for context.

is_depositableboolean

Indicates whether deposits are enabled for the currency. May be absent from the response; absence should be treated as equivalent to false.

is_withdrawalboolean

Indicates whether withdrawals are enabled for the currency. May be absent from the response; absence should be treated as equivalent to false.

is_api_withdrawalboolean

Whether API withdrawals are enabled

is_api_depositableboolean

Whether API deposits are enabled

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
  }
]