Skip to main content

Get Convert history

Those confirmed quotes no matter status are showns by this API.

info

Only display the conversion history created through open API.

HTTP Request

GET /v5/asset/exchange/query-convert-history

Request Parameters

ParameterRequiredTypeComments
accountTypefalsestringWallet type
  • Supports passing multiple types, separated by comma e.g., eb_convert_funding,eb_convert_uta
  • Return all wallet types data if not passed
  • indexfalseintegerPage number
  • started from 1
  • 1st page by default
  • limitfalseintegerPage size
  • 20 records by default
  • up to 100 records, return 100 when exceeds 100
  • Response Parameters

    ParameterTypeComments
    listarray<object>Array of quotes
    > accountTypestringWallet type
    > exchangeTxIdstringExchange tx ID, same as quote tx ID
    > userIdstringUser ID
    > fromCoinstringFrom coin
    > fromCoinTypestringFrom coin type. crypto
    > toCoinstringTo coin
    > toCoinTypestringTo coin type. crypto
    > fromAmountstringFrom coin amount (amount to sell)
    > toAmountstringTo coin amount (amount to buy according to exchange rate)
    > exchangeStatusstringExchange status
  • init
  • processing
  • success
  • failure
  • > extInfoobject
    >> paramTypestringThis field is published when you send it in the Request a Quote
    >> paramValuestringThis field is published when you send it in the Request a Quote
    > convertRatestringExchange rate
    > createdAtstringQuote created time

    Request Example

    GET /v5/asset/exchange/query-convert-history?accountType=eb_convert_uta,eb_convert_funding HTTP/1.1
    Host: api-testnet.bybit.com
    X-BAPI-SIGN: XXXXXX
    X-BAPI-API-KEY: XXXXXX
    X-BAPI-TIMESTAMP: 1720074159814
    X-BAPI-RECV-WINDOW: 5000

    Response Example

    {
    "retCode": 0,
    "retMsg": "ok",
    "result": {
    "list": [
    {
    "accountType": "eb_convert_funding",
    "exchangeTxId": "10100108106409343501030232064",
    "userId": "XXXXX",
    "fromCoin": "ETH",
    "fromCoinType": "crypto",
    "fromAmount": "0.1",
    "toCoin": "BTC",
    "toCoinType": "crypto",
    "toAmount": "0.00534882723991",
    "exchangeStatus": "success",
    "extInfo": {
    "paramType": "opFrom",
    "paramValue": "broker-id-001"
    },
    "convertRate": "0.0534882723991",
    "createdAt": "1720071899995"
    },
    {
    "accountType": "eb_convert_uta",
    "exchangeTxId": "23070eb_convert_uta408933875189391360",
    "userId": "XXXXX",
    "fromCoin": "BTC",
    "fromCoinType": "crypto",
    "fromAmount": "0.1",
    "toCoin": "ETH",
    "toCoinType": "crypto",
    "toAmount": "1.773938248611074",
    "exchangeStatus": "success",
    "extInfo": {},
    "convertRate": "17.73938248611074",
    "createdAt": "1719974243256"
    }
    ]
    },
    "retExtInfo": {},
    "time": 1720074457715
    }