Get deposit history
REQUEST wss://ws.bitvavo.com/v2 privateGetDepositHistory
Returns all past deposits 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 privateGetDepositHistory.
privateGetDepositHistoryYour identifier for the request.
1The asset you want to deposit.
BTCThe maximum number of deposits to return, from latest to earliest.
Possible values: >= 1 and <= 1000
500The Unix timestamp in milliseconds starting from which to return deposits.
1751541801000The Unix timestamp in milliseconds up to which to return deposits.
1751548920000{
"action": "privateGetDepositHistory",
"requestId": 1,
"symbol": "BTC",
"limit": 500,
"start": 1751541801000,
"end": 1751548920000
}
Response
- Digital asset
- Fiat
- Schema
- Example (body)
Schema
The action performed.
privateGetDepositHistoryYour identifier for the request.
1response object
The Unix timestamp in milliseconds when the deposit was made.
1706609321000The asset you deposited on Bitvavo.
BTCThe quantity of the asset you deposited on Bitvavo.
0.99994The address where you deposited assets.
14qViLJfdGaP4EeHnDyJbEGQysnCpwk3gdThe unique identifier of the deposit. Returned if specified in the request.
10002653The unique identifier of the transaction on the blockchain.
927b3ea50c5bb52c6854152d305dfa1e27fc01d10464cf10825d96d69d235eb3{
"action": "privateGetDepositHistory",
"requestId": 1,
"response": {
"timestamp": 1706609321000,
"symbol": "BTC",
"amount": "0.99994",
"address": "14qViLJfdGaP4EeHnDyJbEGQysnCpwk3gd",
"paymentId": "10002653",
"txId": "927b3ea50c5bb52c6854152d305dfa1e27fc01d10464cf10825d96d69d235eb3",
"fee": "0.000063"
}
}
- Schema
- Example (body)
Schema
The action performed.
privateGetDepositHistoryYour identifier for the request.
1response object
The Unix timestamp in milliseconds when the deposit was made.
1706609321000The currency you deposited on Bitvavo.
EURThe quantity of the asset you deposited on Bitvavo.
500The state of the deposit. Can be completed or canceled.
completedThe bank account from which the deposit was made.
NL89BANK0123456789{
"action": "privateGetDepositHistory",
"requestId": 1,
"response": {
"timestamp": 1706609321000,
"symbol": "EUR",
"amount": "500",
"fee": "0",
"status": "completed",
"address": "NL89BANK0123456789"
}
}