Skip to main content
GET
/
api
/
currencies
/
commissions
GET /api/currencies/commissions
curl --request GET \
  --url https://public-api.binibit.com/api/currencies/commissions
{
  "commissionId": {},
  "currencyCode": {},
  "currencyPairCode": {},
  "currencyAdapterCode": {},
  "percent": 123,
  "minimum": 123,
  "commissionCurrencyCode": {},
  "commissionTypeCode": "<string>",
  "commissionType": {
    "commissionType.code": "<string>",
    "commissionType.value": "<string>",
    "commissionType.valueKey": "<string>"
  },
  "hashCode": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.binibit.com/llms.txt

Use this file to discover all available pages before exploring further.

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

Example request

curl https://public-api.binibit.com/api/currencies/commissions

Example response

[
  {
    "commissionId": "019bc366-913b-7be0-90f6-bd715bb09f90",
    "currencyCode": "BTC",
    "currencyPairCode": null,
    "currencyAdapterCode": "btc",
    "percent": 0.0,
    "minimum": 0.0,
    "commissionCurrencyCode": null,
    "commissionTypeCode": "1",
    "commissionType": {
      "code": "1",
      "value": "Пополнение",
      "valueKey": "Refill"
    },
    "hashCode": "1_BTC_btc"
  },
  {
    "commissionId": "019c8bff-7b9a-730d-a615-2e12c73469a6",
    "currencyCode": "USDT",
    "currencyPairCode": null,
    "currencyAdapterCode": "bsc",
    "percent": 0.0,
    "minimum": 0.0,
    "commissionCurrencyCode": null,
    "commissionTypeCode": "1",
    "commissionType": {
      "code": "1",
      "value": "Пополнение",
      "valueKey": "Refill"
    },
    "hashCode": "1_USDT_bsc"
  }
]