Get Withdrawal History (V2)
GET
/open-api/v2/wallet/withdrawal/historyThis method allows you to get the withdrawal of the requested wallet ID, coinSymbol and network.
- Amount field will include withdrawal fee if the fee is paid in same coin symbol.
API Key permission group : Enable Enquiry
Request
Query Params
walletId
integer
required
Wallet id
Example:
1325589336357780500
coinSymbol
string
optional
Coin symbol
Example:
USDT
endTime
integer
required
End time (timestamp in milliseconds)
Example:
1640995200000
network
string
optional
Network symbol
Example:
ETH
pageLimit
integer
required
Page limit, min: 1, max: 500
Example:
25
pageNo
integer
required
Page number, min: 1
Example:
1
startTime
integer
required
Start time(timestamp in milliseconds)
Example:
1640995200000
status
integer
optional
Status :
10: Pending
20: Processing
30: Send success
40: Confirmed
99: Failed
Example:
10
timestamp
integer
required
Current Timestamp in millisecond
Example:
1640995200000
Header Params
open-apikey
string
required
OpenAPI key string
signature
string
required
Signature of the request
Request samples
Responses
The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object | null
optional
response data, maybe null
data
array[object (TransactionV2) {19}]
required
totalPage
integer
required
pageNo
integer
required
pageLimit
integer
required
code
string
required
'000000' indicates success, while any others indicate failure.
message
string
required
When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.
Example
Success
{
"data": {
"data": [
{
"orderViewId": "24073629165041914861440002",
"txId": "0x662e2e367c79100b8d7599e69680d7fc71bf704a6341387fb36c4eddc1a1e1e9",
"transferType": 10,
"direction": 20,
"fromAddress": "0xc8dAe5eb08fe1981D212cFc3744b237e72a99878",
"toAddress": "0xb0EdeFFa2f9894076c7265cC094FCA032070AD8c",
"network": "BSC",
"coinSymbol": "BNB",
"amount": "0.001000000000000000",
"feeSymbol": "BNB",
"feeAmount": "0.000255000000000000",
"status": 10,
"confirmedBlockCount": null,
"unlockConfirm": null,
"maxConfirmBlock": null,
"memo": "",
"txTime": "1714056193000",
"walletStr": "327282886560800768",
"requestId": null
},
{
"orderViewId": "24073618131431468371680002",
"txId": "0xadf891f6e193d453233ab192bca1534343ccb7f81e049e3f76b8c11f1ebe57e4",
"transferType": 10,
"direction": 20,
"fromAddress": "0xc8dAe5eb08fe1981D212cFc3744b237e72a99878",
"toAddress": "0x255F420f4bd20b884cc91f6eF0DF1D41e438e00F",
"network": "BSC",
"coinSymbol": "BNB",
"amount": "0.010000000000000000",
"feeSymbol": "BNB",
"feeAmount": "0.000415548000000000",
"status": 20,
"confirmedBlockCount": null,
"unlockConfirm": null,
"maxConfirmBlock": null,
"memo": "",
"txTime": "1713413181000",
"walletStr": "327282886560800768",
"requestId": null
},
{
"orderViewId": "24073677963331456516640001",
"txId": "0x6763dac1d57d45ff99c03a38a0786921adc2c70663833656d26af2ca7db01a15",
"transferType": 10,
"direction": 20,
"fromAddress": "0xc8dAe5eb08fe1981D212cFc3744b237e72a99878",
"toAddress": "0x30AE6d576df172328220eAFDb574E053B9AddB79",
"network": "BSC",
"coinSymbol": "BNB",
"amount": "0.500000000000000000",
"feeSymbol": "BNB",
"feeAmount": "0.000563958000000000",
"status": 20,
"confirmedBlockCount": null,
"unlockConfirm": null,
"maxConfirmBlock": null,
"memo": "",
"txTime": "1713336977000",
"walletStr": "327282886560800768",
"requestId": null
}
],
"totalPage": 1,
"pageNo": 1,
"pageLimit": 25
},
"code": "000000",
"message": "Success"
}
Last modified: 6 months ago