Skip to main content

Get Deposit Spec

Query deposit spec.

Information
  • It is a public endpoints, no authentication needed.
  • Coin and chain must be paired in the input parameter. Otherwise, it is regarded as an unconditional query.

HTTP Request

GET /asset/v3/public/deposit/allowed-deposit-list/query

Request Parameters

ParameterRequiredTypeComments
coinfalsestringDeposit Coin. Coin and chain must be paired. Otherwise, it is regarded as an unconditional query
chainfalsestringDeposit Chain Name. Coin and chain must be paired. Otherwise, it is regarded as an unconditional query
cursorfalsestringcursor information: used for pagination
limitfalseintegerNumber of items per page, [1, 50]. Default value: 50

Response Parameters

ParameterTypeComments
configListarrayObject
> coinstringdeposit coin
> chainstringchain name
> coinShowNamestringCoin show name
> chainTypestringchain type
> blockConfirmNumberintegerdeposit confirmation number
> minDepositAmountstringMinimum Deposit Amount
nextPageCursorstringcursor information: used for pagination. Default value: ""

Request Example

GET /asset/v3/public/deposit/allowed-deposit-list/query?coin=BTC&chain=BTC HTTP/1.1
Host: api-testnet.bybit.com

Response Example

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