---
title: "Get a list of currencies"
method: POST
path: "/currencies/list"
tags: ["Currencies"]
---

# Get a list of currencies

`POST /currencies/list`

Get a list of available currencies, minimum deposit amounts, and deposit and withdrawal fees.

## Headers

- `X-Processing-Signature` string, required

## Request body

- object — This endpoint does not accept any request parameters, but you must still send an empty JSON object (`{}`) in the request body.

## Response `200`

OK

- object
  - `data` object[]
    - `id` integer — Currency ID.
    - `type` 'crypto' | 'fiat' — Currency type (crypto or fiat).
    - `currency` string — Currency code.
    - `minimum_amount` string — The minimum deposit amount for this currency.
    - `minimum_withdrawal_amount` string — The minimum withdrawal amount for this currency.
    - `deposit_confirmations` integer — The number of confirmations required before a deposit is credited. For some cryptocurrencies, smaller amount deposits may require less confirmations than returned by the API before the funds are credited. See [Confirmations and limits](/confirmations-and-limits) for the number of confirmations required in such cases.
    - `deposit_fee_percent` string — The fee that is charged for deposits in this currency, in percentage of the deposit amount.
    - `withdrawal_fee_percent` string — The fee that is charged for withdrawals in this currency, in percentage of the withdrawal amount.
    - `precision` integer — The number of decimal places.

## Other responses

- `400` — Bad Request The request body is not valid JSON, or the Content-Type header is not set to `application/json`.
- `403` — Forbidden

---

[API](https://skmtc.dev/cryptoprocessing/apis/merchant-backend-v2.md) · [All operations](https://skmtc.dev/cryptoprocessing/apis/merchant-backend-v2/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cryptoprocessing/merchant-backend-v2/revisions/623a41f26c6b/schema)
