Get Internal Transfer List
Query Internal Transfer List
HTTP Request
GET /asset/v3/private/transfer/inter-transfer/list/query
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| transferId | true | string | UUID, which is unique across the platform |
| coin | true | string | Currency |
| status | false | string | Transfer status |
| startTime | false | integer | The start timestamp (ms) Note: the query logic is actually effective based on second level |
| endTime | false | integer | The end timestamp (ms) Note: the query logic is actually effective based on second level |
| limit | false | integer | Limit of data size |
| cursor | false | string | Cursor, used for pagination |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| list | array | Object |
| > transferId | string | UUID, which is unique across the platform |
| > coin | string | Currency |
| > amount | string | Transfer amount |
| > fromAccountType | string | From account type |
| > toAccountType | string | To account type |
| > timestamp | string | Created timestamp (ms) |
| > status | string | Transfer status |
| nextPageCursor | string | Cursor, 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
}