Withdraw assets
REQUEST wss://ws.bitvavo.com/v2 privateWithdrawAssets
Request to withdraw assets to a wallet or bank account.
Authentication required. To send messages, you need to authenticate connection.
2FA and address confirmation by email are disabled for withdrawals using the API.
Rate limit weight points: 1
Request
- Schema
- Example (body)
Body
Set value to privateWithdrawAssets.
privateWithdrawAssetsYour identifier for the request.
1The asset you want to withdraw.
BTCThe quantity of the asset to withdraw.
1.5The address where to withdraw assets.
Make sure to check the address. Funds can not be recovered after being withdrawn to the wrong address.
BitcoinAddressThe unique identifier of the transaction of a digital asset. It is sometimes called note, memo, or tag.
Should be specified when withdrawing straight to another exchange or merchants that require a paymentId.
10002653Indicates if a fee is added in addition to the requested amount. If false, the fee is part of the requested amount and subtracted from the withdrawal.
falseDeprecated Do not use or set to false to avoid errors.
false{
"action": "privateWithdrawAssets",
"requestId": 1,
"symbol": "BTC",
"amount": "1.5",
"address": "BitcoinAddress",
"paymentId": "10002653",
"addWithdrawalFee": false,
"internal": false
}
Response
- Schema
- Example (body)
Schema
The action performed.
privateWithdrawAssetsYour identifier for the request.
1response object
Indicates if the withdrawal request was successful.
trueThe asset that was withdrawn.
BTCThe total amount deducted from your balance.
1.5{
"action": "privateWithdrawAssets",
"requestId": 1,
"response": {
"success": true,
"symbol": "BTC",
"amount": "1.5"
}
}