v1
latestOpenAPI 3.0.32026-07-2613529376.3 KBGet deposit/withdraw history
The endpoint retrieves the history of deposits and withdraws.
Deposit status codes:
- Successful - 3, 7
- Canceled - 4, 9
- Unconfirmed by user - 5
- AML frozen - 21
- Uncredited - 22
- Pending - 15
Successful (3, 7) is a final state. A credited deposit does not later transition to AML frozen (21) or Uncredited (22); those checks happen before crediting.
Travel Rule Deposit check status codes:
- Awaiting verification - 27: The transaction has been frozen due to the lack of data required under the Travel Rule. The user is required to provide this data manually through the exchange interface.
- Confirmation in progress - 28: The Travel Rule data provided by the user is currently being verified by WhiteBIT.
⚠️ Due to regulatory requirements in Turkey and EU, the system places every inbound crypto deposit on hold (frozen) until confirming the transaction's origin. The sender must provide certain details if the transaction is from another Virtual Asset Service Provider (VASP) or verify the address if from a self-hosted wallet. The system credits deposited funds to the account only after successful verification.
Withdraw status codes:
- Pending - 1, 2, 6, 10–17 (withdrawal in progress).
- Successful - 3, 7
- Canceled - 4
- Unconfirmed by user - 5
- AML frozen - 21
- Partially successful - 18
Request body
Example request
{
"transactionMethod": 1,
"ticker": "BTC",
"address": "3ApEASLcrQtZpg1TsssFgYF5V5YQJAKvuE",
"memo": "48565488244493",
"addresses": [
"3ApEASLcrQtZpg1TsssFgYF5V5YQJAKvuE"
],
"unique_id": "24529041",
"limit": 100,
"status": [
3,
7
],
"request": "{{request}}",
"nonce": 1594297865000
}Response
All validations succeeded and creating transaction is started
Example response
{
"records": [
{
"address": "3ApEASLcrQtZpg1TsssFgYF5V5YQJAKvuE",
"createdAt": 1593437922,
"currency": "Bitcoin",
"ticker": "BTC",
"method": 1,
"amount": "0.0006",
"fee": "0",
"status": 15,
"transactionHash": "3b49d7b8cf7a4d3c1234567890abcdef",
"transaction_id": "5e112b38-9652-11ed-a1eb-0242ac120002",
"confirmations": {
"actual": 3,
"required": 6
}
}
]
}