Get Internal Deposit Records (across Bybit)
Query deposit records through Bybit platform
Rules
HTTP Request
GET /asset/v3/private/deposit/internal-deposit-record/query
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| txID | false | string | Internal transfer transaction ID |
| startTime | false | integer | Start time (ms). Default value: 30 days before the current time |
| endTime | false | integer | End time (ms). Default value: current time |
| coin | false | string | Coin name: for example, BTC. Default value: all |
| cursor | false | string | Cursor, used for pagination |
| limit | false | integer | Number of items per page, [1, 50]. Default value: 50 |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| rows | array | Object |
| > id | string | ID |
| > type | integer | 1: Internal deposit |
| > coin | string | Deposit coin |
| > amount | string | Deposit amount |
| > status | integer |
|
| > address | string | Email address or phone number |
| > createdTime | string | Deposit created timestamp |
| > txID | string | Internal transfer transaction ID |
| nextPageCursor | string | cursor information: used for pagination. Default value: "" |
Request Example
GET /asset/v3/private/deposit/internal-deposit-record/query HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1705395811647
X-BAPI-RECV-WINDOW: 50000
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"rows": [
{
"id": "1103",
"amount": "0.1",
"type": 1,
"coin": "ETH",
"address": "xxxxx***@gmail.com",
"status": 2,
"createdTime": "1705393280",
"txID": "77c37e5c-d9fa-41e5-bd13-c9b59d95"
}
],
"nextPageCursor": "eyJtaW5JRCI6MTEwMywibWF4SUQiOjExMDN9"
},
"retExtInfo": {},
"time": 1705395814405
}