Get All Broker Subaccount Deposit Withdrawal
Description
HTTP Request
- GET /api/v3/broker/all-sub-deposit-withdrawal
- Rate limit: 20/sec/UID
- Only the master account with a user type of ND Broker can call this API endpoint.
Request
curl "https://api.bitget.com/api/v3/broker/all-sub-deposit-withdrawal" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parameters
| Parameter | Type | Required | Comments |
|---|---|---|---|
| startTime | String | No | Record start time Unix timestamp in milliseconds. If both startTime and endTime are empty, the default query time range is yesterday 00:00–23:59 (UTC+0). The time range between startTime and endTime cannot exceed 7 days. |
| endTime | String | No | Record end time Unix timestamp in milliseconds. If both startTime and endTime are empty, the default query time range is yesterday 00:00–23:59 (UTC+0). The time range between startTime and endTime cannot exceed 7 days. |
| limit | String | No | Number of items per page default 100, maximum 100. |
| cursor | String | No | Cursor ID. |
| status | String | No | StatuspendingConfirmingfailFailedsuccessSuccessful |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1767151164765,
"data": {
"list": [
{
"uid": "12345678910",
"txId": "1390096439417995264",
"type": "withdrawal",
"subType": "internal",
"coin": "USDT",
"amount": "10.000000000",
"status": "fail",
"ts": "1767150805032"
}
],
"endId": "1390096439417995264"
}
}
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| >uid | String | Sub-account UID |
| >txId | String | Deposit/withdraw/transfer ID |
| >coin | String | Coin name |
| >type | String | Deposit/withdraw type: depositdeposit recordwithdrawalwithdrawal record |
| >subType | String | Sub-type:onchainon-chain deposit or regular withdrawal;internal internal transfer; fastfast deposit/withdraw (on-chain + internal address) |
| >amount | String | Deposit/withdraw amount |
| >status | String | StatuspendingConfirmingfailFailedsuccessSuccessful |
| >ts | String | Record update time Unix timestamp in milliseconds |
| cursor | String | Cursor ID |