Skip to main content

Get Internal Deposit Records (across Bybit)

Query deposit records through Bybit platform

Rules
  • The maximum difference between the start time and the end time is 30 days.
  • Support to get deposit records by Master or Sub Member Api Key
  • HTTP Request

    GET /asset/v3/private/deposit/internal-deposit-record/query

    Request Parameters

    ParameterRequiredTypeComments
    txIDfalsestringInternal transfer transaction ID
    startTimefalseintegerStart time (ms). Default value: 30 days before the current time
    endTimefalseintegerEnd time (ms). Default value: current time
    coinfalsestringCoin name: for example, BTC. Default value: all
    cursorfalsestringCursor, used for pagination
    limitfalseintegerNumber of items per page, [1, 50]. Default value: 50

    Response Parameters

    ParameterTypeComments
    rowsarrayObject
    > idstringID
    > typeinteger1: Internal deposit
    > coinstringDeposit coin
    > amountstringDeposit amount
    > statusinteger
    • 1=Processing
    • 2=Success
    • 3=deposit failed
    > addressstringEmail address or phone number
    > createdTimestringDeposit created timestamp
    > txIDstringInternal transfer transaction ID
    nextPageCursorstringcursor 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
    }