Skip to main content
POST
/
currencies
/
list
Get a list of currencies
curl --request POST \
  --url https://app.cryptoprocessing.com/api/v2/currencies/list \
  --header 'Content-Type: application/json' \
  --header 'X-Processing-Key: <api-key>' \
  --header 'X-Processing-Signature: <x-processing-signature>' \
  --data '{}'
{
  "data": [
    {
      "id": 1,
      "type": "crypto",
      "currency": "BTC",
      "minimum_amount": "0.00020000",
      "deposit_fee_percent": "0.000700",
      "withdrawal_fee_percent": "0.010000",
      "precision": 8
    },
    {
      "id": 5,
      "type": "crypto",
      "currency": "ETH",
      "minimum_amount": "0.00500000",
      "deposit_fee_percent": "0.010000",
      "withdrawal_fee_percent": "0.000000",
      "precision": 8
    },
    {
      "id": 87,
      "type": "crypto",
      "currency": "USDC",
      "minimum_amount": "5.00000000",
      "deposit_fee_percent": "0.010000",
      "withdrawal_fee_percent": "0.000000",
      "precision": 8
    }
  ]
}
The list of supported currencies in the sandbox environment is different from the list in the production environment.

Authorizations

X-Processing-Key
string
header
required

Your API key.

Headers

X-Processing-Signature
string
required

Hex-encoded HMAC-SHA512 signature of the request body, generated using your secret key.

Body

application/json

The Content-Type: application/json header must be specified even though the request body has no fields.

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

Response

OK

data
object[]
Last modified on April 28, 2026