Get Deposit History
GET
/open-api/v1/wallet/deposit/historyThis method allows you to get the deposit history of the requested walleId, coinSymbol and network.
API Key permission group : Enable Enquiry
请求参数
Query Params
walletId
integer
required
Wallet id
Example:
1325589336357780500
network
string
optional
Network symbol, all networks if not specified
Example:
ETH
coinSymbol
string
optional
Coin symbol, all symbols if not specified
Example:
USDT
startTime
integer
required
Start time (timestamp in milliseconds)
Example:
1640995200000
endTime
integer
required
End time (timestamp in milliseconds)
Example:
1640995200000
pageLimit
integer
optional
Page limit, min: 1, max: 500
Example:
25
pageNo
integer
optional
Page number, min: 1
Example:
1
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
示例代码
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 状态码: 200
内容格式: JSONapplication/json
Data Schema
data
object | null
optional
response data, maybe null
data
$ref(#/definitions/351860)[]
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
{
"data": {
"data": [
{
"orderViewId": "10369165164303552512",
"txId": "0x1c5b79cfe30b978b053b7bc26f4716378667d49c7edf6c46ae421d256e29c970",
"transferType": 10,
"direction": 10,
"fromAddress": "0xf637e2d5dc3c33655a906d97f6c79d1e33bcfc34",
"toAddress": "0xc8dAe5eb08fe1981D212cFc3744b237e72a99878",
"network": "BSC",
"coinSymbol": "BNB",
"amount": "1.00000000000000000000",
"feeSymbol": "BNB",
"feeAmount": "0",
"status": 40,
"confirmedBlockCount": 15,
"unlockConfirm": 15,
"maxConfirmBlock": 15,
"memo": null,
"txTime": 1713146204000,
"walletId": 327282886560800800,
"requestId": null
}
],
"totalPage": 1,
"pageNo": 1,
"pageLimit": 25
},
"code": "000000",
"message": "Success"
}
Last modified: 4 个月前