Get fees [Public]

Returns deposit and withdrawal fees by default.

This is a public route, no need for authorization.

Method name:/v4/public/fees
Request type:GET

📘

Fee information for merchants:

/v4/public/fees returns the default fees. If you have a merchant account, please use preRequest endpoints to get the current fees for your account:

Exemplary request

const url = "https://api.kuna.io";
const path = "/v4/public/fees";
const options = {
  headers: {
    accept: "application/json",
  },
};

fetch(url + path, options)
  .then((response) => response.json())
  .then((showResponse) => console.log(showResponse.data));
import requests

url = "https://api.kuna.io"
path = "/v4/public/fees"
headers = {
    "accept": "application/json"
}

request = requests.get(url + path, headers=headers)
print(request.json())

How to call public endpoints here

Swagger here

Response

[
    {
      // Example for fiat currency
      // Possible options for fiat currency: advcash_wallet, payeer, perfectmoney_account,
      // perfectmoney_transfer, kuna_code, payment_card
      "code": "payment_card",
      "currency": "eur",
      "category": "eur",          // Fiat currency symbol
      "deposit_fees": [           // Percentage or absolute value for the deposit
        {
          "type": "fixed",
          "asset": {
            "amount": "0.5",
            "currency": "eur",
            "to_usd": "0.00"
          }
        },
        {
          "type": "percent",
          "amount": "3.5"
        }
      ],
      "withdraw_fees": [           // Percentage or absolute value to withdraw
        {
          "type": "fixed",
          "asset": {
            "amount": "0.5",
            "currency": "eur",
            "to_usd": "0.00"
          }
        },
        {
          "type": "percent",
          "amount": "1.5"
        }
      ],
      "min_deposit": {
        "amount": 10,
        "currency": "eur",
        "to_usd": 0
      },
      "min_withdraw": {
        "amount": 10,
        "currency": "eur",
        "to_usd": 0
      }
    },
    {
      // Example for cryptocurrency
      "code": "bch",                // Cryptocurrency symbol
      "currency": "bch",
      "category": "coin",           // сoin always appears in the category for cryptocurrency assets
      "deposit_fees": [],           // No commission is charged for deposits of cryptocurrency assets
      "withdraw_fees": [            // Вescription of withdrawal fees
        {
          "type": "fixed",
          "asset": {
            "amount": "0.003",      // Amount of fee
            "currency": "bch",      // Cryptocurrency in which the fee is charged
            "to_usd": "0.00"        // Exchange rate 
          }
        }
      ],
      "min_deposit": {              // Minimum deposit amount
        "amount": 0.001,
        "currency": "bch",
        "to_usd": 0
      },
      "min_withdraw": {             // Minimum withdrawal amount
        "amount": 0.05,
        "currency": "bch",
        "to_usd": 0
      }
    }
]