Skip to main content

Get Transferable Coin

Query the transferable coin list between each account type

HTTP Request

GET /v5/asset/transfer/query-transfer-coin-list

Request Parameters

ParameterRequiredTypeComments
fromAccountTypetruestringFrom account type
toAccountTypetruestringTo account type

Response Parameters

ParameterTypeComments
listarrayA list of coins (as strings)

Request Example

GET /v5/asset/transfer/query-transfer-coin-list?fromAccountType=UNIFIED&toAccountType=CONTRACT HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1672144322595
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
"BTC",
"ETH"
]
},
"retExtInfo": {},
"time": 1672144322954
}