v1.0.0 (2026-08-15 18:56)
Get Wallet Action Log
Retrieve the wallet action log of the current member, including transaction history such as transfers, deductions, deposits, and exchanges. The API supports filtering by transaction type, currency, time range, and provides pagination.
Interface Description
- Interface path:
/client/member/wallet-log - Request method:
GET - Authentication: Bearer Token (must pass valid
Authorization: Bearer <token>in the Header)
Request Headers
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| Authorization | Yes | String | Bearer Token, obtained through the Member Login interface |
Request Parameters
Use URL Query String to send request parameters.
| Field | Type | Required | Description |
|---|---|---|---|
| page | number | Yes | Current page number, e.g., 1 |
| pageSize | number | Yes | Number of records per page, e.g., 10 |
| status | string | No | Log status filter (optional) |
/client/member/wallet-log?page=1&pageSize=10
Response Example
json
{
"code": 0,
"data": {
"list": [
{
"id": "60a7c9b8f1d2e3b4a5c6d7e8",
"type": "Adjustment",
"currency": "USD",
"amount": 100.5,
"before_amt": 1500.0,
"after_amt": 1600.5,
"remark": "Client Self Exchange",
"created_at": "2023-10-15T10:30:00Z"
}
],
"total": 1,
"page": 1,
"pageSize": 10
},
"msg": "Success"
}Response Parameters Description
| Field Name | Type | Description |
|---|---|---|
| code | number | Status code, 0 indicates success |
| data | object | Object containing pagination information and the data list |
| data.list | array | List of wallet action records |
| data.total | number | Total number of records matching the criteria |
| data.page | number | Current page number |
| data.pageSize | number | Page size |
| data.list[].type | string | Transaction type |
| data.list[].currency | string | Currency involved |
| data.list[].amount | number | Amount changed (positive for increase, negative for decrease) |
| data.list[].before_amt | number | Balance before transaction |
| data.list[].after_amt | number | Balance after transaction |
| data.list[].remark | string | Remark/Description |
| data.list[].created_at | string | Record creation time (ISO 8601 format) |
| msg | string | Response message prompt |