Get withdrawal history
REQUEST wss://ws.bitvavo.com/v2 privateGetWithdrawalHistory
Returns all past withdrawals for your account.
Authentication required. To send messages, you need to authenticate connection.
Rate limit weight points: 5
Request
- Schema
- Example (body)
Body
Set value to privateGetWithdrawalHistory.
privateGetWithdrawalHistoryYour identifier for the request.
1The asset for which you want to retrieve past withdrawals. If not specified, all withdrawals are returned.
BTCThe maximum number of withdrawals to return, from latest to earliest.
Possible values: >= 1 and <= 1000
500The Unix timestamp in milliseconds starting from which to return withdrawals.
1622548800000The Unix timestamp in milliseconds up to which to return withdrawals.
1622635200000{
"action": "privateGetWithdrawalHistory",
"requestId": 1,
"symbol": "BTC",
"limit": 500,
"start": 1622548800000,
"end": 1622635200000
}
Response
- Schema
- Example (body)
Schema
The action performed.
privateGetWithdrawalHistoryYour identifier for the request.
1response object
The Unix timestamp in milliseconds when the withdrawal was made.
1542967486256The asset that was withdrawn.
BTCThe quantity of the asset that was withdrawn.
0.99994The address where the withdrawal was made.
BitcoinAddressThe unique identifier of the withdrawal. It is sometimes called note, memo, or tag. Not returned if not specified in the request.
10002653The unique identifier of the transaction on the blockchain.
927b3ea50c5bb52c6854152d305dfa1e27fc01d10464cf10825d96d69d235eb3The status of the withdrawal.
Possible values: [awaiting_processing, awaiting_email_confirmation, awaiting_bitvavo_inspection, approved, sending, in_mempool, processed, completed, canceled]
{
"action": "privateGetWithdrawalHistory",
"requestId": 1,
"response": {
"timestamp": 1542967486256,
"symbol": "BTC",
"amount": "0.99994",
"address": "BitcoinAddress",
"paymentId": "10002653",
"txId": "927b3ea50c5bb52c6854152d305dfa1e27fc01d10464cf10825d96d69d235eb3",
"fee": "0.00006",
"status": "awaiting_processing"
}
}