Get Agent Customer Trade Volume List
- Rate limit: 10/sec/UID
Description
- This API response includes the trading volume for both spot and futures
- 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.
- Data update frequency: 10 minutes
HTTP Request
- POST /api/broker/v1/agent/customerTradeVolumnList
Request Example
curl -X POST "https://api.bitget.com/api/broker/v1/agent/customerTradeVolumnList" \
-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": [
{
"uid": "435435345",
"volumn": "34234.4",
"time": "1679991960110"
},
{
"uid": "435435345",
"volumn": "34234.4",
"time": "1679991960110"
}
]
}
Response Parameters
Parameter | Type | Description |
---|---|---|
uid | String | UID |
volumn | String | Trade volume |
time | String | Timestamp(ms) |