Skip to main content

Get Coin Information

Query Coin Information

HTTP Request

GET /asset/v3/private/coin-info/query

Request Parameters

ParameterRequiredTypeComments
coinfalsestringcoin name

Response Parameters

ParameterTypeComments
rowsarrayObject
> namestringName
> coinstringCoin name
> remainAmountstringCurrent maximum withdrawal amount
> chainsarrayObject
>> chainTypestringchain type
>> confirmationstringdeposit confirmation number
>> withdrawFeestringwithdraw fee
  • If withdraw fee is empty, It means that this coin does not support withdrawal
  • If withdraw fee is zero, the fee might be calculated by percentage, we will add a new field later
>> depositMinstringminimum deposit amount
>> withdrawMinstringminimum withdrawal amount
>> chainstringchain name
>> chainDepositstringThe chain status of deposit. 0:suspend; 1:normal
>> chainWithdrawstringThe chain status of deposit. 0:suspend; 1:normal
>> minAccuracystringThe precision of withdraw or deposit
>> withdrawPercentageFeestringThe withdraw fee percentage. It is a real figure, e.g., 0.022 means 2.2%

Request Example

GET /asset/v3/private/coin-info/query?coin=ETH HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-API-KEY: xxxxxxxxxxx
X-BAPI-TIMESTAMP: 1671172180432
X-BAPI-RECV-WINDOW: 50000
X-BAPI-SIGN: xxxxxxxxxxx

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
}