Skip to main content
Get a list of currencies
curl --request POST \
  --url https://app.alphapo.net/api/v2/currencies/list \
  --header 'Content-Type: application/json' \
  --header 'X-processing-key: <api-key>' \
  --header 'X-processing-signature: <api-key>' \
  --data '
{
  "visible": true
}
'
{
  "data": [
    {
      "id": 1,
      "type": "crypto",
      "currency": "BTC",
      "minimum_amount": "0.00010000",
      "deposit_fee_percent": "0.000000",
      "withdrawal_fee_percent": "0.025000"
    }
  ]
}

Authorizations

X-processing-key
string
header
required

Your API key.

X-processing-signature
string
header
required

The request body, signed with HMAC-SHA512 with your secret key. You can find the secret key in your account.

Body

application/json
visible
boolean

Whether the endpoint should return supported (true) or unsupported (false) currencies.

Response

OK

data
object[]