Withdrawal
Withdraw in crypto to any specified address. You can send Cryptocurrency from your Fiat currency balance by using the 'convert_to' parameter.
Private key
Private secret key
If you want to auto convert for example EUR to BTC, specify this param as BTC or any other currency supported (see list of exchangeable pairs API method).
Cryptocurrency address where you want to send funds.
If it's XRP, the Tag/Memo field may be an essential part of addressing a wallet. Always specify the Tag that was provided to you by the recipient. If you send funds with missing or incorrect Tag/Memo field, the funds may be lost.
Amount of funds to withdraw.
Amount of funds to send in the transaction in the convert_to currency.
Unique foreign ID in your system. Must not contain personal data, such as the user's name or email address.
The persistent ID of the end user. Must not contain personal data, such as the user's name or email address.
POST /api/v2/withdrawal/crypto HTTP/1.1
Host: app.cryptoprocessing.com
X-Processing-Key: text
X-Processing-Signature: text
Content-Type: application/json
Accept: */*
Content-Length: 160
{
"currency": "string",
"convert_to": "string",
"address": "string",
"tag": "string",
"amount": 0,
"amount_to": 0,
"foreign_id": "string",
"end_user_reference": "end_user_ref"
}
{
"data": {
"id": 678388,
"foreign_id": "postman_auto_test_1665492104773",
"type": "withdrawal_exchange",
"status": "processing",
"amount": "25.00000000",
"sender_amount": "25.00000000",
"sender_currency": "EUR",
"receiver_currency": "BTC"
}
}
Was this helpful?