Skip to main content
GET
GET /api/currencies/commissions

Description

Returns the catalogue of default commissions configured on the exchange — broken down by currency, currency pair, blockchain adapter, and commission type (deposit, withdrawal, trade fee). For the logged-in user’s effective commissions (which may be lower based on tier or VIP status), use the authenticated trading API endpoint GET /api/currencies/user/commissions.

Parameters

This endpoint takes no query parameters.

Response

Array of commission objects.
string (UUID)
required
Unique commission record ID.
string | null
Currency the commission applies to (e.g. BTC). null for commissions tied only to a pair.
string | null
Pair the commission applies to (e.g. ETH_BTC). null for commissions tied only to a currency or adapter.
string | null
Blockchain or fiat adapter (e.g. btc, bsc, erc20). null if not adapter-specific.
decimal
required
Commission as a fraction (e.g. 0.001 = 0.1%).
decimal
required
Minimum absolute commission amount in commissionCurrencyCode.
string | null
Currency the minimum is measured in.
string
required
Numeric string code identifying the commission type. See commissionType.valueKey for the human-readable type.
object
required
Embedded commission type object.
string
Internal hash for deduplication (e.g. 1_BTC_btc).

Example request

Example response