Skip to main content

Get Coin Info

Query coin information, including chain information, withdraw and deposit status.

HTTP Request

GET /v5/asset/coin/query-info

Request Parameters

ParameterRequiredTypeComments
coinfalsestringCoin

Response Parameters

ParameterTypeComments
rowsarrayObject
> nameintegerCoin name
> coinstringCoin
> remainAmountstringRemaining amount
> chainsarrayObject
>> chainstringChain
>> chainTypestringChain type
>> confirmationstringThe number of confirmation for deposit
>> withdrawFeestringwithdraw fee. If withdraw fee is empty, It means that this coin does not support withdrawal
>> depositMinstringMin. deposit
>> withdrawMinstringMin. withdraw
>> minAccuracystringThe precision of withdraw or deposit
>> chainDepositstringThe chain status of deposit. 0: suspend. 1: normal
>> chainWithdrawstringThe chain status of withdraw. 0: suspend. 1: normal
>> withdrawPercentageFeestringThe withdraw fee percentage. It is a real figure, e.g., 0.022 means 2.2%

Request Example

GET /v5/asset/coin/query-info?coin=ETH HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1672194580887
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"rows": [
{
"name": "ETH",
"coin": "ETH",
"remainAmount": "1020000",
"chains": [
{
"chainType": "ETH",
"confirmation": "10000",
"withdrawFee": "0.005",
"depositMin": "0.01",
"withdrawMin": "0.02",
"chain": "ETH",
"chainDeposit": "1",
"chainWithdraw": "1",
"minAccuracy": "8",
"withdrawPercentageFee": "0.022"
},
{
"chainType": "Arbitrum One",
"confirmation": "10",
"withdrawFee": "0.01",
"depositMin": "0.001",
"withdrawMin": "0.1",
"chain": "ARBI",
"chainDeposit": "1",
"chainWithdraw": "1",
"minAccuracy": "8",
"withdrawPercentageFee": "0"
}
]
}
]
},
"retExtInfo": {},
"time": 1677478088215
}