Skip to main content

Get Transferable Coin List

Transferable coin list

You can confirm transferable coins between different account types under the UID to which the current API key belongs

HTTP Request

GET /asset/v3/private/transfer/transfer-coin/list/query

Request Parameters

ParameterRequiredTypeComments
fromAccountTypetruestringAccount type
toAccountTypetruestringAccount type

Response Parameters

ParameterTypeComments
listarrayThe coins are allowed to transfer between accounts

Request Example

GET /asset/v3/private/transfer/transfer-coin/list/query?fromAccountType=SPOT&toAccountType=CONTRACT HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: xxxxxxxxxxxx
X-BAPI-API-KEY: xxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1671163888641
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
"ETH",
"EOS",
"USDT",
"ADA",
"BIT",
"BTC",
"DAI",
"DOT",
"LTC",
"MANA",
"XRP"
]
},
"retExtInfo": {},
"time": 1671163888818
}