Skip to main content

Overview​

The Query Withdrawal Records API allows users to retrieve withdrawal records for the account within a specified time range. The request must include parameters such as time type, start time, and end time. The API returns detailed information for each withdrawal record.

Query Header Parameters​

View full Request Header Parameters.

cURL -X POST /opc/v1/withdrawal/find-withdrawal-page
'Content-Type:application/json',
'Opccount-No:995149',
'Va-Code:9435762187450928365',
'Sign:ckQHqFTsawqHScEhxuovywiXTJMio9F0a62qdh/mIONvwWXzfdNFM4cl/2UN490VER64wmw18wOWsgHH/mKL7L+uu5jRQcLkYbwE5CfQEj6g2jHewa70b2zStZPes4DRrgRwLzK+vqwzdP0jifrRYbrB6qVjS8gD4RyGort/Ju1mfaVjJNgPlUWehDJPWPz5MAU/dRpB6ChX7IwjJm4cV/jUqZvOJMDqMov8H5kMyi7g0Jx7LVHIqx9O3Cjn+k+FASpJNNOnv7m5JjvdJkJYXgMC3pGK+uBc+hfHnc20piuz7KxDeQDtaAY9IXCWkPx8BcQaru1HMQgXmBicS85YkQ==',
'Timestamp:1694482115'

Query Details​

View full Request Parameters.

  1. The interval between startDate and endDate cannot exceed one year. Format: yyyy-MM-dd HH:mm:ss.
  2. withdrawalCurrency supports the following currencies: AUD, HKD, CHF, SGD, JPY, EUR, GBP, USD, CAD, NZD, ZAR, CNY.
-d '{
"pageNum": "1",
"pageSize": "10",
"startTime": "2025-05-01 12:00:00",
"endTime": "2025-10-01 12:00:00",
"status": "1",
"withdrawalCurrency": "[USD,CNY]",
}'

Response​

{
"msg": "SUCCESS",
"code": "000",
"data": {
"total": 2,
"current": 1,
"pages": 1,
"withdrawalListVOList": [
{
"bankAccount": "88888",
"rateTime": "2025-01-22 17:07:26",
"withdrawalFeeDetailList": [

],
"bankName": "qqqqqqqqq",
"withdrawalStatus": 2,
"withdrawalStatusStr": "",
"withdrawalCurrency": "USD",
"chargeActualFee": "0.00",
"billAmount": "58,799.95",
"createTime": "2025-01-22 17:07:26",
"withdrawalAmount": "58,799.95",
"rate": "1",
"billCurrency": "USD",
"id": "108077",
"withdrawalFeeDetailVOList": [

],
"returnAmount": "58,799.95"
},
{
"bankAccount": "88888",
"rateTime": "2025-01-21 15:01:01",
"withdrawalFeeDetailList": [

],
"bankName": "Bank Name",
"withdrawalStatus": 2,
"withdrawalStatusStr": "Failed",
"withdrawalCurrency": "USD",
"chargeActualFee": "0.00",
"billAmount": "58,799.95",
"createTime": "2025-01-21 15:01:02",
"withdrawalAmount": "58,799.95",
"rate": "1",
"billCurrency": "USD",
"id": "108069",
"withdrawalFeeDetailVOList": [

],
"returnAmount": "58,799.95"
}
],
"pageSize": 2,
"rowList": [

]
}
}