Skip to main content

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

ParameterTypeRequiredComments
startTimeStringNoRecord 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.
endTimeStringNoRecord 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.
limitStringNoNumber of items per page
default 100, maximum 100.
cursorStringNoCursor ID.
statusStringNoStatus
pendingConfirming
failFailed
successSuccessful
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

ParameterTypeComments
>uidStringSub-account UID
>txIdStringDeposit/withdraw/transfer ID
>coinStringCoin name
>typeStringDeposit/withdraw type:
depositdeposit record
withdrawalwithdrawal record
>subTypeStringSub-type:
onchainon-chain deposit or regular withdrawal;
internal internal transfer;
fastfast deposit/withdraw (on-chain + internal address)
>amountStringDeposit/withdraw amount
>statusStringStatus
pendingConfirming
failFailed
successSuccessful
>tsStringRecord update time
Unix timestamp in milliseconds
cursorStringCursor ID

How was your Reading Experience with us?