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
}
]
}Returns a list of available currencies, minimum deposit amounts, and deposit and withdrawal fees.
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
}
]
}Hex-encoded HMAC-SHA512 signature of the request body, generated using your secret key.
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.
OK
Show child attributes