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, uppercase only

Response Parameters

ParameterTypeComments
rowsarrayObject
> nameintegerCoin name
> coinstringCoin
> remainAmountstringMaximum withdraw amount per transaction
> 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%
>> contractAddressstringContract address. "" means no contract address

Request Example

GET /v5/asset/coin/query-info?coin=MNT 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": "success",
"result": {
"rows": [
{
"name": "MNT",
"coin": "MNT",
"remainAmount": "10000000",
"chains": [
{
"chainType": "Ethereum",
"confirmation": "6",
"withdrawFee": "3",
"depositMin": "0",
"withdrawMin": "3",
"chain": "ETH",
"chainDeposit": "1",
"chainWithdraw": "1",
"minAccuracy": "8",
"withdrawPercentageFee": "0",
"contractAddress": "0x3c3a81e81dc49a522a592e7622a7e711c06bf354"
},
{
"chainType": "Mantle Network",
"confirmation": "100",
"withdrawFee": "0",
"depositMin": "0",
"withdrawMin": "10",
"chain": "MANTLE",
"chainDeposit": "1",
"chainWithdraw": "1",
"minAccuracy": "8",
"withdrawPercentageFee": "0",
"contractAddress": ""
}
]
}
]
},
"retExtInfo": {},
"time": 1736395486989
}