Skip to main content

Get Allowed Deposit Coin Info

Query allowed deposit coin information. To find out paired chain of coin, please refer coin info api.

tip

This is an endpoint that does not need authentication

HTTP Request

GET /v5/asset/deposit/query-allowed-list

Request Parameters

ParameterRequiredTypeComments
coinfalsestringCoin. coin and chain must be paired if passed
chainfalsestringChain. coin and chain must be paired if passed
limitfalseintegerLimit for data size per page. [1, 35]. Default: 10
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set

Response Parameters

ParameterTypeComments
configListarrayObject
> coinstringCoin
> chainstringChain
> coinShowNamestringCoin name
> chainTypestringChain type
> blockConfirmNumberintegerDeposit confirmation number
> minDepositAmountstringMinimum deposit amount
nextPageCursorstringRefer to the cursor request parameter

Request Example

GET /v5/asset/deposit/query-allowed-list?coin=ETH&chain=ETH HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1672191495968
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"configList": [
{
"coin": "ETH",
"chain": "ETH",
"coinShowName": "ETH",
"chainType": "ETH",
"blockConfirmNumber": 10000,
"minDepositAmount": "0.01"
}
],
"nextPageCursor": "eyJwYWdlIjoyLCJsaW1pdCI6MTB9"
},
"retExtInfo": {},
"time": 1672191496219
}