Skip to main content

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

ParameterTypeRequiredDescription
startTimeStringNoStart time (ms)
endTimeStringNoEnd time (ms)
pageNoStringNoPage number
pageSizeStringNoPage size, 100 default, Max 1000
uidStringNoUID
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 163123213132,
"data": [
{
"orderId": "3423423",
"uid": "234342343",
"depositTime": "11234342343",
"depositCoin": "USDT",
"depositAmount": "500"
}
]
}

Response Parameters

ParameterTypeDescription
uidStringUID
orderIdStringDeposit Order ID
depositTimeStringDeposit Time (ms)
depositCoinStringDeposit Coin
depositAmountStringDeposit Amount

How was your Reading Experience with us?