Skip to main content

Get Master-Sub Transfer List

Query subaccount transfer list

caution

Can use master api key to query only

HTTP Request

GET /asset/v3/private/transfer/sub-member-transfer/list/query

Request Parameters

ParameterRequiredTypeComments
transferIdfalsestringUUID, which is unique across the platform
coinfalsestringCurrency type
statusfalsestringTransfer status
startTimefalseintegerThe start timestamp (ms)
endTimefalseintegerThe end timestamp (ms)
limitfalseintegerLimit of data size
cursorfalsestringCursor, used for pagination

Response Parameters

ParameterTypeComments
listarrayObject
> transferIdstringUUID, which is unique across the platform
> coinstringCurrency
> amountstringTransfer amount
> memberIdintegerMaster account UID
> subMemberIdintegerSubaccount UID
> timestampstringCreated timestamp (ms)
> statusstringTransfer status
> typestringDetermines the direction of transfer.
  • IN transfer from main account to subaccount
  • OUT transfer from subaccount to main account
nextPageCursorstringCursor, used for pagination

Request Example

GET /asset/v3/private/transfer/sub-member-transfer/list/query?coin=USDT HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: xxxxxxxxxxxxxxx
X-BAPI-API-KEY: xxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1670927635525
X-BAPI-RECV-WINDOW: 50000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"transferId": "2811a2ca-b42c-4cda-a21f-3df0a1f2516f",
"coin": "USDT",
"amount": "5",
"memberId": xxxxxxx,
"subMemberId": xxxxxxx,
"timestamp": "1670925916000",
"status": "SUCCESS",
"type": "IN"
},
{
"transferId": "11ff9144-2d5d-4233-913d-4595c9ad2170",
"coin": "USDT",
"amount": "100",
"memberId": xxxxxxx,
"subMemberId": xxxxxxx,
"timestamp": "1658732947000",
"status": "SUCCESS",
"type": "OUT"
}
],
"nextPageCursor": "eyJtaW5JRCI6MzU2MTA0LCJtYXhJRCI6MTcyMDk2OH0="
},
"retExtInfo": {},
"time": 1670927635641
}