Skip to main content

Get Internal Transfer List

Query Internal Transfer List

info

When both startTime & endTime are not passed, API returns 30 days data by default

HTTP Request

GET /asset/v3/private/transfer/inter-transfer/list/query

Request Parameters

ParameterRequiredTypeComments
transferIdtruestringUUID, which is unique across the platform
cointruestringCurrency
statusfalsestringTransfer status
startTimefalseintegerThe start timestamp (ms) Note: the query logic is actually effective based on second level
endTimefalseintegerThe end timestamp (ms) Note: the query logic is actually effective based on second level
limitfalseintegerLimit of data size
cursorfalsestringCursor, used for pagination

Response Parameters

ParameterTypeComments
listarrayObject
> transferIdstringUUID, which is unique across the platform
> coinstringCurrency
> amountstringTransfer amount
> fromAccountTypestringFrom account type
> toAccountTypestringTo account type
> timestampstringCreated timestamp (ms)
> statusstringTransfer status
nextPageCursorstringCursor, used for pagination

Request Example

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

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"transferId": "22b168ef-1917-4bbe-a8bd-4ea729ec5887",
"coin": "USDT",
"amount": "1",
"fromAccountType": "SPOT",
"toAccountType": "UNIFIED",
"timestamp": "1668749670000",
"status": "SUCCESS"
},
{
"transferId": "selfTransfer_4420a136-5610-44d3-97bb-a3d0551869a9",
"coin": "USDT",
"amount": "1",
"fromAccountType": "UNIFIED",
"toAccountType": "SPOT",
"timestamp": "1668570868000",
"status": "SUCCESS"
}
],
"nextPageCursor": "eyJtaW5JRCI6NTYxMzUxLCJtYXhJRCI6MTU2Mzg4OX0="
},
"retExtInfo": {},
"time": 1670926842908
}