Get Agent Customer Deposit List
- Rate limit: 10/sec/UID
Description
- The API response includes the user's on-chain deposits and internal transfers
- startTime and endTime should be both set or both left blank
- startTime and endTime should be within 30days
- This API endpoint can only query the data in 90 days. If you need older data, please contact BD to export it manually.
- It will return yesterday's data (00:00-23:59 UTC+8) by default if there is no startTime/endTime set.
- The data is updated in real time
HTTP Request
- POST /api/broker/v1/agent/customerDepositList
Request Example
curl -X POST "https://api.bitget.com/api/broker/v1/agent/customerDepositList" \
  -H "ACCESS-KEY:your apiKey" \
  -H "ACCESS-SIGN:*" \
  -H "ACCESS-PASSPHRASE:*" \
  -H "ACCESS-TIMESTAMP:1659076670000" \
  -H "locale:zh-CN" \
  -H "Content-Type: application/json" \
  -d '{"pageNo": "1","pageSize":"500", "startTime":"1734540617923","endTime": "1735094086646"}'
Request Parameters
| Parameter | Type | Required | Description | 
|---|---|---|---|
| startTime | String | No | Start time (ms) | 
| endTime | String | No | End time (ms) | 
| pageNo | String | No | Page number | 
| pageSize | String | No | Page size, 100 default, Max 1000 | 
| uid | String | No | UID | 
Response Example
{
  "code": "00000",
  "msg": "success",
  "requestTime": 163123213132,
  "data": [
    {
      "orderId": "3423423",
      "uid": "234342343",
      "depositTime": "11234342343",
      "depositCoin": "USDT",
      "depositAmount": "500"
    }
  ]
}
Response Parameters
| Parameter | Type | Description | 
|---|---|---|
| uid | String | UID | 
| orderId | String | Deposit Order ID | 
| depositTime | String | Deposit Time (ms) | 
| depositCoin | String | Deposit Coin | 
| depositAmount | String | Deposit Amount |