Withdrawal
Withdraw in crypto to any specified address. You can send cryptocurrency from your Fiat currency balance by using the 'convert_to' parameter.
The end_user_reference
parameter is used to group, track and analyse transactions associated with a specific customer. To prevent transactions from getting delayed or cancelled, always make sure to include the correct ID. The ID must not contain any personal or identifying customer data.
Note: Cryptoprocessing is required to collect sender and recipient data in compliance with the MiCA regulations. For more details, see About user data collection. The sender_data
and the end_user_reference
you provide must be associated with the same customer.
Private key
Private secret key
Cryptocurrency address where you want to send funds.
If you are withdrawing XRP, a tag/memo is required. If you withdraw XRP without including a tag/memo, the funds may be lost.
Amount to withdraw.
convert_to
), use this parameter. You can only specify either amount_to
or amount
.Unique ID of the withdrawal request.
sender_data
object.natural
) or a legal entity (legal
).natural
) or a legal entity (legal
). For internal transfers, set this to self
.OK
The foreign id has already been taken
Bad key header
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: 161
{
"currency": "BTC",
"address": "string",
"tag": null,
"amount": 0,
"foreign_id": "string",
"end_user_reference": "string",
"sender_type": "legal",
"sender_data": {
"legal_name": "Example GmbH",
"country_of_registration": "DEU"
},
"receiver_type": "natural",
"receiver_data": {
"first_name": "Friedrich",
"last_name": "Müller",
"date_of_birth": "1995-08-17"
}
}
{
"data": {
"id": 678388,
"foreign_id": "user_2317",
"type": "withdrawal_exchange",
"end_user_reference": 2318,
"status": "processing",
"amount": "25.00000000",
"sender_amount": "25.00000000",
"sender_currency": "EUR",
"receiver_currency": "BTC"
}
}
Was this helpful?