Get Coin Information
Query Coin Information
HTTP Request
GET /asset/v3/private/coin-info/query
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| coin | false | string | coin name |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| rows | array | Object |
| > name | string | Name |
| > coin | string | Coin name |
| > remainAmount | string | Current maximum withdrawal amount |
| > chains | array | Object |
| >> chainType | string | chain type |
| >> confirmation | string | deposit confirmation number |
| >> withdrawFee | string | withdraw fee
|
| >> depositMin | string | minimum deposit amount |
| >> withdrawMin | string | minimum withdrawal amount |
| >> chain | string | chain name |
| >> chainDeposit | string | The chain status of deposit. 0:suspend; 1:normal |
| >> chainWithdraw | string | The chain status of deposit. 0:suspend; 1:normal |
| >> minAccuracy | string | The precision of withdraw or deposit |
| >> withdrawPercentageFee | string | The 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
}