Skip to main content

Get Internal Deposit Records (off-chain)

Query deposit records within the Bybit platform. These transactions are not on the blockchain.

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 /v5/asset/deposit/query-internal-record

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
> taxStatusstringThis field is used for tax purposes by Bybit EU (Austria) users
> taxStatusstringThis field is used for tax purposes by Bybit EU (Austria) users
  • 0: No reporting required
  • 1: Reporting pending
  • 2: Reporting completed
  • nextPageCursorstringcursor information: used for pagination. Default value: ""

    Request Example

    GET /v5/asset/deposit/query-internal-record HTTP/1.1
    Host: api-testnet.bybit.com
    X-BAPI-SIGN: XXXXX
    X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
    X-BAPI-TIMESTAMP: 1682099024473
    X-BAPI-RECV-WINDOW: 50000

    Response Example

    {
    "retCode": 0,
    "retMsg": "success",
    "result": {
    "rows": [
    {
    "id": "1103",
    "amount": "0.1",
    "type": 1,
    "coin": "ETH",
    "address": "xxxx***@gmail.com",
    "status": 2,
    "createdTime": "1705393280",
    "txID": "77c37e5c-d9fa-41e5-bd13-c9b59d95"
    }
    ],
    "nextPageCursor": "eyJtaW5JRCI6MTEwMywibWF4SUQiOjExMDN9"
    },
    "retExtInfo": {},
    "time": 1705395632689
    }