Asset List
This endpoint returns a list of currency details.
Http Request
GET
/api/spot/instruments/asset/list
Request Frequency Restriction:
- 5times / 1second
Postman
pay attention to replace "restful_base_endpoint"
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
currency | string | NO | Crypto currency, such as BTC. |
Response fields description
Name | Type | Description |
---|---|---|
currency | string | Crypto currency, such as BTC. |
full_name | string | Crypto currency full name, such as Bitcoin |
chains | array | As follows: |
{
"chain":"BTC-BRC20(BRC20)", # Block chain name
"precision":6, # Currency precision
"fee":"0.0001", # Withdraw fee
"is_withdraw_enabled":false, # Withdrawable or not
"is_deposit_enabled":false, # Deposit or not
"deposit_min_confirm":20, # Minimum confirmation of blocks
"withdraw_limit_min":"0.0002" # Minimum withdraw amount in each request
}
Response
{
"code":200,
"message":null,
"data":[
{
"currency":"BTC",
"full_name":"Bitcoin",
"chains":[
{
"chain":"BTC-BRC20(BRC20)",
"precision":6,
"fee":"0.0001",
"is_withdraw_enabled":false,
"is_deposit_enabled":false,
"deposit_min_confirm":20,
"withdraw_limit_min":"0.0002"
},
{
"chain":"Bitcoin(Bitcoin)",
"precision":8,
"fee":"0.01",
"is_withdraw_enabled":true,
"is_deposit_enabled":true,
"deposit_min_confirm":3,
"withdraw_limit_min":"0.01"
}
]
}
]
}